From 87b50e27a5c09ea76fa5a1a7519ab9b9cec39821 Mon Sep 17 00:00:00 2001 From: Alex <100879557+alexle0nte@users.noreply.github.com> Date: Wed, 25 Sep 2024 09:16:09 +0200 Subject: [PATCH 1/5] Update tree-sitter-mozjs --- src/alterator.rs | 2 +- src/checker.rs | 6 +- src/getter.rs | 10 +- src/languages/language_mozjs.rs | 552 +- tree-sitter-mozjs/src/grammar.json | 969 +- tree-sitter-mozjs/src/node-types.json | 262 +- tree-sitter-mozjs/src/parser.c | 113703 ++++++++------- .../src/tree_sitter_javascript_scanner.c | 471 +- 8 files changed, 61223 insertions(+), 54752 deletions(-) diff --git a/src/alterator.rs b/src/alterator.rs index a7b307e22..36b0957c8 100644 --- a/src/alterator.rs +++ b/src/alterator.rs @@ -78,7 +78,7 @@ impl Alterator for KotlinCode {} impl Alterator for MozjsCode { fn alterate(node: &Node, code: &[u8], span: bool, children: Vec) -> AstNode { match Mozjs::from(node.kind_id()) { - Mozjs::String => { + Mozjs::String | Mozjs::String2 => { // TODO: have a thought about template_strings: // they may have children for replacement... let (text, span) = Self::get_text_span(node, code, span, true); diff --git a/src/checker.rs b/src/checker.rs index 08d831cf6..9596544ca 100644 --- a/src/checker.rs +++ b/src/checker.rs @@ -52,7 +52,7 @@ macro_rules! is_js_func { ($parser: ident, $node: ident) => { match $node.kind_id().into() { FunctionDeclaration | MethodDefinition => true, - Function => check_if_func!($parser, $node), + FunctionExpression => check_if_func!($parser, $node), ArrowFunction => check_if_arrow_func!($parser, $node), _ => false, } @@ -63,7 +63,7 @@ macro_rules! is_js_closure { ($parser: ident, $node: ident) => { match $node.kind_id().into() { GeneratorFunction | GeneratorFunctionDeclaration => true, - Function => !check_if_func!($parser, $node), + FunctionExpression => !check_if_func!($parser, $node), ArrowFunction => !check_if_arrow_func!($parser, $node), _ => false, } @@ -376,7 +376,7 @@ impl Checker for MozjsCode { matches!( node.kind_id().into(), Mozjs::Program - | Mozjs::Function + | Mozjs::FunctionExpression | Mozjs::Class | Mozjs::GeneratorFunction | Mozjs::FunctionDeclaration diff --git a/src/getter.rs b/src/getter.rs index 6d4532b1f..96d32cc40 100644 --- a/src/getter.rs +++ b/src/getter.rs @@ -96,7 +96,7 @@ impl Getter for MozjsCode { use Mozjs::*; match node.kind_id().into() { - Function + FunctionExpression | MethodDefinition | GeneratorFunction | FunctionDeclaration @@ -148,10 +148,10 @@ impl Getter for MozjsCode { | GT | PLUSEQ | BANG | BANGEQEQ | EQEQEQ | DASHEQ | STAREQ | SLASHEQ | PERCENTEQ | STARSTAREQ | GTGTEQ | GTGTGTEQ | LTLTEQ | AMPEQ | CARET | CARETEQ | PIPEEQ | Yield | LBRACK | LBRACE | Await | QMARK | QMARKQMARK | New | Let | Var | Const - | Function | Function2 | SEMI => HalsteadType::Operator, - Identifier | Identifier2 | MemberExpression | PropertyIdentifier | String | Number - | True | False | Null | Void | This | Super | Undefined | Set | Get | Typeof - | Instanceof => HalsteadType::Operand, + | Function | FunctionExpression | SEMI => HalsteadType::Operator, + Identifier | Identifier2 | MemberExpression | MemberExpression2 + | PropertyIdentifier | String | String2 | Number | True | False | Null | Void + | This | Super | Undefined | Set | Get | Typeof | Instanceof => HalsteadType::Operand, _ => HalsteadType::Unknown, } } diff --git a/src/languages/language_mozjs.rs b/src/languages/language_mozjs.rs index 630053c93..08f629df8 100644 --- a/src/languages/language_mozjs.rs +++ b/src/languages/language_mozjs.rs @@ -10,34 +10,34 @@ pub enum Mozjs { Export = 3, STAR = 4, Default = 5, - LBRACE = 6, - COMMA = 7, - RBRACE = 8, - As = 9, + As = 6, + LBRACE = 7, + COMMA = 8, + RBRACE = 9, Import2 = 10, From = 11, - Var = 12, - Let = 13, - Const = 14, - Else = 15, - If = 16, - Switch = 17, - For = 18, - LPAREN = 19, - RPAREN = 20, - Await = 21, - In = 22, - Of = 23, - While = 24, - Do = 25, - Try = 26, - With = 27, - Break = 28, - Continue = 29, - Debugger = 30, - Return = 31, - Throw = 32, - SEMI = 33, + With = 12, + Var = 13, + Let = 14, + Const = 15, + Else = 16, + If = 17, + Switch = 18, + For = 19, + LPAREN = 20, + SEMI = 21, + RPAREN = 22, + Await = 23, + In = 24, + Of = 25, + While = 26, + Do = 27, + Try = 28, + Break = 29, + Continue = 30, + Debugger = 31, + Return = 32, + Throw = 33, COLON = 34, Case = 35, Catch = 36, @@ -47,220 +47,233 @@ pub enum Mozjs { LBRACK = 40, RBRACK = 41, GlimmerTemplateContent = 42, - LTtemplateGT = 43, - LTSLASHtemplateGT = 44, - LT = 45, - GT = 46, - SLASH = 47, - JsxText = 48, - Identifier2 = 49, - DOT = 50, - Class2 = 51, - Extends = 52, - Async = 53, - Function2 = 54, - EQGT = 55, - OptionalChain = 56, - New = 57, - PLUSEQ = 58, - DASHEQ = 59, - STAREQ = 60, - SLASHEQ = 61, - PERCENTEQ = 62, - CARETEQ = 63, - AMPEQ = 64, - PIPEEQ = 65, - GTGTEQ = 66, - GTGTGTEQ = 67, - LTLTEQ = 68, - STARSTAREQ = 69, - AMPAMPEQ = 70, - PIPEPIPEEQ = 71, - QMARKQMARKEQ = 72, - DOTDOTDOT = 73, - AMPAMP = 74, - PIPEPIPE = 75, - GTGT = 76, - GTGTGT = 77, - LTLT = 78, - AMP = 79, - CARET = 80, - PIPE = 81, - PLUS = 82, - DASH = 83, - PERCENT = 84, - STARSTAR = 85, - LTEQ = 86, - EQEQ = 87, - EQEQEQ = 88, - BANGEQ = 89, - BANGEQEQ = 90, - GTEQ = 91, - QMARKQMARK = 92, - Instanceof = 93, - BANG = 94, - TILDE = 95, - Typeof = 96, - Void = 97, - Delete = 98, - PLUSPLUS = 99, - DASHDASH = 100, - DQUOTE = 101, - SQUOTE = 102, - StringFragment = 103, - StringFragment2 = 104, - EscapeSequence = 105, - Comment = 106, - BQUOTE = 107, - DOLLARLBRACE = 108, - SLASH2 = 109, - RegexPattern = 110, - RegexFlags = 111, - Number = 112, - PrivatePropertyIdentifier = 113, - Target = 114, - This = 115, - Super = 116, - True = 117, - False = 118, - Null = 119, - Undefined = 120, - AT = 121, - Static = 122, - Get = 123, - Set = 124, - Preproc = 125, - AutomaticSemicolon = 126, - TemplateChars = 127, - QMARK = 128, - Program = 129, - ExportStatement = 130, - ExportClause = 131, - ExportSpecifier = 132, - Declaration = 133, - Import = 134, - ImportStatement = 135, - ImportClause = 136, - FromClause = 137, - NamespaceImport = 138, - NamedImports = 139, - ExpressionStatement = 140, - VariableDeclaration = 141, - LexicalDeclaration = 142, - VariableDeclarator = 143, - StatementBlock = 144, - ElseClause = 145, - IfStatement = 146, - SwitchStatement = 147, - ForStatement = 148, - ForInStatement = 149, - ForHeader = 150, - WhileStatement = 151, - DoStatement = 152, - TryStatement = 153, - WithStatement = 154, - BreakStatement = 155, - ContinueStatement = 156, - DebuggerStatement = 157, - ReturnStatement = 158, - ThrowStatement = 159, - EmptyStatement = 160, - LabeledStatement = 161, - SwitchBody = 162, - SwitchCase = 163, - SwitchDefault = 164, - CatchClause = 165, - FinallyClause = 166, - ParenthesizedExpression = 167, - Expression = 168, - PrimaryExpression = 169, - YieldExpression = 170, - Object = 171, - ObjectPattern = 172, - AssignmentPattern = 173, - ObjectAssignmentPattern = 174, - Array = 175, - ArrayPattern = 176, - GlimmerTemplate = 177, - GlimmerOpeningTag = 178, - GlimmerClosingTag = 179, - JsxElement = 180, - JsxFragment = 181, - JsxExpression = 182, - JsxOpeningElement = 183, - NestedIdentifier = 184, - JsxNamespaceName = 185, - JsxClosingElement = 186, - JsxSelfClosingElement = 187, - JsxAttribute = 188, - Class = 189, - ClassDeclaration = 190, - ClassHeritage = 191, - Function = 192, - FunctionDeclaration = 193, - GeneratorFunction = 194, - GeneratorFunctionDeclaration = 195, - ArrowFunction = 196, - CallExpression = 197, - NewExpression = 198, - AwaitExpression = 199, - MemberExpression = 200, - SubscriptExpression = 201, - AssignmentExpression = 202, - AugmentedAssignmentLhs = 203, - AugmentedAssignmentExpression = 204, - Initializer = 205, - DestructuringPattern = 206, - SpreadElement = 207, - TernaryExpression = 208, - BinaryExpression = 209, - UnaryExpression = 210, - UpdateExpression = 211, - SequenceExpression = 212, - String = 213, - TemplateString = 214, - TemplateSubstitution = 215, - Regex = 216, - MetaProperty = 217, - Arguments = 218, - Decorator = 219, - MemberExpression2 = 220, - CallExpression2 = 221, - ClassBody = 222, - FieldDefinition = 223, - FormalParameters = 224, - Pattern = 225, - RestPattern = 226, - MethodDefinition = 227, - Pair = 228, - PairPattern = 229, - PropertyName = 230, - ComputedPropertyName = 231, - ProgramRepeat1 = 232, - ExportStatementRepeat1 = 233, - ExportClauseRepeat1 = 234, - NamedImportsRepeat1 = 235, - VariableDeclarationRepeat1 = 236, - SwitchBodyRepeat1 = 237, - ObjectRepeat1 = 238, - ObjectPatternRepeat1 = 239, - ArrayRepeat1 = 240, - ArrayPatternRepeat1 = 241, - GlimmerTemplateRepeat1 = 242, - JsxElementRepeat1 = 243, - JsxOpeningElementRepeat1 = 244, - StringRepeat1 = 245, - StringRepeat2 = 246, - TemplateStringRepeat1 = 247, - ClassBodyRepeat1 = 248, - FormalParametersRepeat1 = 249, - ImportSpecifier = 250, - NamespaceExport = 251, - PropertyIdentifier = 252, - ShorthandPropertyIdentifier = 253, - ShorthandPropertyIdentifierPattern = 254, - StatementIdentifier = 255, - Error = 256, + GlimmerOpeningTag = 43, + GlimmerClosingTag = 44, + HtmlCharacterReference = 45, + LT = 46, + GT = 47, + Identifier2 = 48, + DOT = 49, + LTSLASH = 50, + SLASHGT = 51, + DQUOTE = 52, + SQUOTE = 53, + StringFragment = 54, + StringFragment2 = 55, + Class2 = 56, + Extends = 57, + Async = 58, + Function = 59, + EQGT = 60, + OptionalChain = 61, + New = 62, + PLUSEQ = 63, + DASHEQ = 64, + STAREQ = 65, + SLASHEQ = 66, + PERCENTEQ = 67, + CARETEQ = 68, + AMPEQ = 69, + PIPEEQ = 70, + GTGTEQ = 71, + GTGTGTEQ = 72, + LTLTEQ = 73, + STARSTAREQ = 74, + AMPAMPEQ = 75, + PIPEPIPEEQ = 76, + QMARKQMARKEQ = 77, + DOTDOTDOT = 78, + AMPAMP = 79, + PIPEPIPE = 80, + GTGT = 81, + GTGTGT = 82, + LTLT = 83, + AMP = 84, + CARET = 85, + PIPE = 86, + PLUS = 87, + DASH = 88, + SLASH = 89, + PERCENT = 90, + STARSTAR = 91, + LTEQ = 92, + EQEQ = 93, + EQEQEQ = 94, + BANGEQ = 95, + BANGEQEQ = 96, + GTEQ = 97, + QMARKQMARK = 98, + Instanceof = 99, + BANG = 100, + TILDE = 101, + Typeof = 102, + Void = 103, + Delete = 104, + PLUSPLUS = 105, + DASHDASH = 106, + StringFragment3 = 107, + StringFragment4 = 108, + EscapeSequence = 109, + Comment = 110, + BQUOTE = 111, + DOLLARLBRACE = 112, + SLASH2 = 113, + RegexPattern = 114, + RegexFlags = 115, + Number = 116, + PrivatePropertyIdentifier = 117, + Target = 118, + Meta = 119, + This = 120, + Super = 121, + True = 122, + False = 123, + Null = 124, + Undefined = 125, + AT = 126, + Static = 127, + Staticget = 128, + Get = 129, + Set = 130, + Preproc = 131, + AutomaticSemicolon = 132, + StringFragment5 = 133, + QMARK = 134, + HtmlComment = 135, + JsxText = 136, + Program = 137, + ExportStatement = 138, + NamespaceExport = 139, + ExportClause = 140, + ExportSpecifier = 141, + ModuleExportName = 142, + Declaration = 143, + Import = 144, + ImportStatement = 145, + ImportClause = 146, + FromClause = 147, + NamespaceImport = 148, + NamedImports = 149, + ImportSpecifier = 150, + ImportAttribute = 151, + Statement = 152, + ExpressionStatement = 153, + VariableDeclaration = 154, + LexicalDeclaration = 155, + VariableDeclarator = 156, + StatementBlock = 157, + ElseClause = 158, + IfStatement = 159, + SwitchStatement = 160, + ForStatement = 161, + ForInStatement = 162, + ForHeader = 163, + WhileStatement = 164, + DoStatement = 165, + TryStatement = 166, + WithStatement = 167, + BreakStatement = 168, + ContinueStatement = 169, + DebuggerStatement = 170, + ReturnStatement = 171, + ThrowStatement = 172, + EmptyStatement = 173, + LabeledStatement = 174, + SwitchBody = 175, + SwitchCase = 176, + SwitchDefault = 177, + CatchClause = 178, + FinallyClause = 179, + ParenthesizedExpression = 180, + Expression = 181, + PrimaryExpression = 182, + YieldExpression = 183, + Object = 184, + ObjectPattern = 185, + AssignmentPattern = 186, + ObjectAssignmentPattern = 187, + Array = 188, + ArrayPattern = 189, + GlimmerTemplate = 190, + JsxElement = 191, + JsxExpression = 192, + JsxOpeningElement = 193, + MemberExpression = 194, + JsxNamespaceName = 195, + JsxClosingElement = 196, + JsxSelfClosingElement = 197, + JsxAttribute = 198, + String = 199, + Class = 200, + ClassDeclaration = 201, + ClassHeritage = 202, + FunctionExpression = 203, + FunctionDeclaration = 204, + GeneratorFunction = 205, + GeneratorFunctionDeclaration = 206, + ArrowFunction = 207, + CallExpression = 208, + NewExpression = 209, + AwaitExpression = 210, + MemberExpression2 = 211, + SubscriptExpression = 212, + AssignmentExpression = 213, + AugmentedAssignmentLhs = 214, + AugmentedAssignmentExpression = 215, + Initializer = 216, + DestructuringPattern = 217, + SpreadElement = 218, + TernaryExpression = 219, + BinaryExpression = 220, + UnaryExpression = 221, + UpdateExpression = 222, + SequenceExpression = 223, + String2 = 224, + TemplateString = 225, + TemplateSubstitution = 226, + Regex = 227, + MetaProperty = 228, + Arguments = 229, + Decorator = 230, + MemberExpression3 = 231, + CallExpression2 = 232, + ClassBody = 233, + FieldDefinition = 234, + FormalParameters = 235, + ClassStaticBlock = 236, + Pattern = 237, + RestPattern = 238, + MethodDefinition = 239, + Pair = 240, + PairPattern = 241, + PropertyName = 242, + ComputedPropertyName = 243, + ProgramRepeat1 = 244, + ExportStatementRepeat1 = 245, + ExportClauseRepeat1 = 246, + NamedImportsRepeat1 = 247, + VariableDeclarationRepeat1 = 248, + SwitchBodyRepeat1 = 249, + ObjectRepeat1 = 250, + ObjectPatternRepeat1 = 251, + ArrayRepeat1 = 252, + ArrayPatternRepeat1 = 253, + GlimmerTemplateRepeat1 = 254, + JsxElementRepeat1 = 255, + JsxOpeningElementRepeat1 = 256, + JsxStringRepeat1 = 257, + JsxStringRepeat2 = 258, + SequenceExpressionRepeat1 = 259, + StringRepeat1 = 260, + StringRepeat2 = 261, + TemplateStringRepeat1 = 262, + ClassBodyRepeat1 = 263, + FormalParametersRepeat1 = 264, + PropertyIdentifier = 265, + ShorthandPropertyIdentifier = 266, + ShorthandPropertyIdentifierPattern = 267, + StatementIdentifier = 268, + Error = 269, } impl From for &'static str { @@ -273,12 +286,13 @@ impl From for &'static str { Mozjs::Export => "export", Mozjs::STAR => "*", Mozjs::Default => "default", + Mozjs::As => "as", Mozjs::LBRACE => "{", Mozjs::COMMA => ",", Mozjs::RBRACE => "}", - Mozjs::As => "as", Mozjs::Import2 => "import", Mozjs::From => "from", + Mozjs::With => "with", Mozjs::Var => "var", Mozjs::Let => "let", Mozjs::Const => "const", @@ -287,6 +301,7 @@ impl From for &'static str { Mozjs::Switch => "switch", Mozjs::For => "for", Mozjs::LPAREN => "(", + Mozjs::SEMI => ";", Mozjs::RPAREN => ")", Mozjs::Await => "await", Mozjs::In => "in", @@ -294,13 +309,11 @@ impl From for &'static str { Mozjs::While => "while", Mozjs::Do => "do", Mozjs::Try => "try", - Mozjs::With => "with", Mozjs::Break => "break", Mozjs::Continue => "continue", Mozjs::Debugger => "debugger", Mozjs::Return => "return", Mozjs::Throw => "throw", - Mozjs::SEMI => ";", Mozjs::COLON => ":", Mozjs::Case => "case", Mozjs::Catch => "catch", @@ -310,18 +323,23 @@ impl From for &'static str { Mozjs::LBRACK => "[", Mozjs::RBRACK => "]", Mozjs::GlimmerTemplateContent => "_glimmer_template_content", - Mozjs::LTtemplateGT => "", + Mozjs::GlimmerOpeningTag => "glimmer_opening_tag", + Mozjs::GlimmerClosingTag => "glimmer_closing_tag", + Mozjs::HtmlCharacterReference => "html_character_reference", Mozjs::LT => "<", Mozjs::GT => ">", - Mozjs::SLASH => "/", - Mozjs::JsxText => "jsx_text", Mozjs::Identifier2 => "identifier", Mozjs::DOT => ".", + Mozjs::LTSLASH => " "/>", + Mozjs::DQUOTE => "\"", + Mozjs::SQUOTE => "'", + Mozjs::StringFragment => "string_fragment", + Mozjs::StringFragment2 => "string_fragment", Mozjs::Class2 => "class", Mozjs::Extends => "extends", Mozjs::Async => "async", - Mozjs::Function2 => "function", + Mozjs::Function => "function", Mozjs::EQGT => "=>", Mozjs::OptionalChain => "optional_chain", Mozjs::New => "new", @@ -351,6 +369,7 @@ impl From for &'static str { Mozjs::PIPE => "|", Mozjs::PLUS => "+", Mozjs::DASH => "-", + Mozjs::SLASH => "/", Mozjs::PERCENT => "%", Mozjs::STARSTAR => "**", Mozjs::LTEQ => "<=", @@ -368,10 +387,8 @@ impl From for &'static str { Mozjs::Delete => "delete", Mozjs::PLUSPLUS => "++", Mozjs::DASHDASH => "--", - Mozjs::DQUOTE => "\"", - Mozjs::SQUOTE => "'", - Mozjs::StringFragment => "string_fragment", - Mozjs::StringFragment2 => "string_fragment", + Mozjs::StringFragment3 => "string_fragment", + Mozjs::StringFragment4 => "string_fragment", Mozjs::EscapeSequence => "escape_sequence", Mozjs::Comment => "comment", Mozjs::BQUOTE => "`", @@ -382,6 +399,7 @@ impl From for &'static str { Mozjs::Number => "number", Mozjs::PrivatePropertyIdentifier => "private_property_identifier", Mozjs::Target => "target", + Mozjs::Meta => "meta", Mozjs::This => "this", Mozjs::Super => "super", Mozjs::True => "true", @@ -390,16 +408,21 @@ impl From for &'static str { Mozjs::Undefined => "undefined", Mozjs::AT => "@", Mozjs::Static => "static", + Mozjs::Staticget => "static get", Mozjs::Get => "get", Mozjs::Set => "set", Mozjs::Preproc => "preproc", Mozjs::AutomaticSemicolon => "_automatic_semicolon", - Mozjs::TemplateChars => "_template_chars", + Mozjs::StringFragment5 => "string_fragment", Mozjs::QMARK => "?", + Mozjs::HtmlComment => "html_comment", + Mozjs::JsxText => "jsx_text", Mozjs::Program => "program", Mozjs::ExportStatement => "export_statement", + Mozjs::NamespaceExport => "namespace_export", Mozjs::ExportClause => "export_clause", Mozjs::ExportSpecifier => "export_specifier", + Mozjs::ModuleExportName => "_module_export_name", Mozjs::Declaration => "declaration", Mozjs::Import => "import", Mozjs::ImportStatement => "import_statement", @@ -407,6 +430,9 @@ impl From for &'static str { Mozjs::FromClause => "_from_clause", Mozjs::NamespaceImport => "namespace_import", Mozjs::NamedImports => "named_imports", + Mozjs::ImportSpecifier => "import_specifier", + Mozjs::ImportAttribute => "import_attribute", + Mozjs::Statement => "statement", Mozjs::ExpressionStatement => "expression_statement", Mozjs::VariableDeclaration => "variable_declaration", Mozjs::LexicalDeclaration => "lexical_declaration", @@ -445,21 +471,19 @@ impl From for &'static str { Mozjs::Array => "array", Mozjs::ArrayPattern => "array_pattern", Mozjs::GlimmerTemplate => "glimmer_template", - Mozjs::GlimmerOpeningTag => "glimmer_opening_tag", - Mozjs::GlimmerClosingTag => "glimmer_closing_tag", Mozjs::JsxElement => "jsx_element", - Mozjs::JsxFragment => "jsx_fragment", Mozjs::JsxExpression => "jsx_expression", Mozjs::JsxOpeningElement => "jsx_opening_element", - Mozjs::NestedIdentifier => "nested_identifier", + Mozjs::MemberExpression => "member_expression", Mozjs::JsxNamespaceName => "jsx_namespace_name", Mozjs::JsxClosingElement => "jsx_closing_element", Mozjs::JsxSelfClosingElement => "jsx_self_closing_element", Mozjs::JsxAttribute => "jsx_attribute", + Mozjs::String => "string", Mozjs::Class => "class", Mozjs::ClassDeclaration => "class_declaration", Mozjs::ClassHeritage => "class_heritage", - Mozjs::Function => "function", + Mozjs::FunctionExpression => "function_expression", Mozjs::FunctionDeclaration => "function_declaration", Mozjs::GeneratorFunction => "generator_function", Mozjs::GeneratorFunctionDeclaration => "generator_function_declaration", @@ -467,7 +491,7 @@ impl From for &'static str { Mozjs::CallExpression => "call_expression", Mozjs::NewExpression => "new_expression", Mozjs::AwaitExpression => "await_expression", - Mozjs::MemberExpression => "member_expression", + Mozjs::MemberExpression2 => "member_expression", Mozjs::SubscriptExpression => "subscript_expression", Mozjs::AssignmentExpression => "assignment_expression", Mozjs::AugmentedAssignmentLhs => "_augmented_assignment_lhs", @@ -480,18 +504,19 @@ impl From for &'static str { Mozjs::UnaryExpression => "unary_expression", Mozjs::UpdateExpression => "update_expression", Mozjs::SequenceExpression => "sequence_expression", - Mozjs::String => "string", + Mozjs::String2 => "string", Mozjs::TemplateString => "template_string", Mozjs::TemplateSubstitution => "template_substitution", Mozjs::Regex => "regex", Mozjs::MetaProperty => "meta_property", Mozjs::Arguments => "arguments", Mozjs::Decorator => "decorator", - Mozjs::MemberExpression2 => "member_expression", + Mozjs::MemberExpression3 => "member_expression", Mozjs::CallExpression2 => "call_expression", Mozjs::ClassBody => "class_body", Mozjs::FieldDefinition => "field_definition", Mozjs::FormalParameters => "formal_parameters", + Mozjs::ClassStaticBlock => "class_static_block", Mozjs::Pattern => "pattern", Mozjs::RestPattern => "rest_pattern", Mozjs::MethodDefinition => "method_definition", @@ -512,13 +537,14 @@ impl From for &'static str { Mozjs::GlimmerTemplateRepeat1 => "glimmer_template_repeat1", Mozjs::JsxElementRepeat1 => "jsx_element_repeat1", Mozjs::JsxOpeningElementRepeat1 => "jsx_opening_element_repeat1", + Mozjs::JsxStringRepeat1 => "_jsx_string_repeat1", + Mozjs::JsxStringRepeat2 => "_jsx_string_repeat2", + Mozjs::SequenceExpressionRepeat1 => "sequence_expression_repeat1", Mozjs::StringRepeat1 => "string_repeat1", Mozjs::StringRepeat2 => "string_repeat2", Mozjs::TemplateStringRepeat1 => "template_string_repeat1", Mozjs::ClassBodyRepeat1 => "class_body_repeat1", Mozjs::FormalParametersRepeat1 => "formal_parameters_repeat1", - Mozjs::ImportSpecifier => "import_specifier", - Mozjs::NamespaceExport => "namespace_export", Mozjs::PropertyIdentifier => "property_identifier", Mozjs::ShorthandPropertyIdentifier => "shorthand_property_identifier", Mozjs::ShorthandPropertyIdentifierPattern => "shorthand_property_identifier_pattern", diff --git a/tree-sitter-mozjs/src/grammar.json b/tree-sitter-mozjs/src/grammar.json index 1b4f41306..6f54abda1 100644 --- a/tree-sitter-mozjs/src/grammar.json +++ b/tree-sitter-mozjs/src/grammar.json @@ -53,32 +53,19 @@ { "type": "SYMBOL", "name": "_from_clause" - }, - { - "type": "SYMBOL", - "name": "_semicolon" } ] }, { "type": "SEQ", "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "namespace_import_export" - }, - "named": true, - "value": "namespace_export" - }, { "type": "SYMBOL", - "name": "_from_clause" + "name": "namespace_export" }, { "type": "SYMBOL", - "name": "_semicolon" + "name": "_from_clause" } ] }, @@ -92,27 +79,18 @@ { "type": "SYMBOL", "name": "_from_clause" - }, - { - "type": "SYMBOL", - "name": "_semicolon" } ] }, { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "export_clause" - }, - { - "type": "SYMBOL", - "name": "_semicolon" - } - ] + "type": "SYMBOL", + "name": "export_clause" } ] + }, + { + "type": "SYMBOL", + "name": "_semicolon" } ] }, @@ -190,6 +168,23 @@ } ] }, + "namespace_export": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "SYMBOL", + "name": "_module_export_name" + } + ] + }, "export_clause": { "type": "SEQ", "members": [ @@ -204,13 +199,8 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_import_export_specifier" - }, - "named": true, - "value": "export_specifier" + "type": "SYMBOL", + "name": "export_specifier" }, { "type": "REPEAT", @@ -222,13 +212,8 @@ "value": "," }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_import_export_specifier" - }, - "named": true, - "value": "export_specifier" + "type": "SYMBOL", + "name": "export_specifier" } ] } @@ -258,7 +243,7 @@ } ] }, - "_import_export_specifier": { + "export_specifier": { "type": "SEQ", "members": [ { @@ -266,7 +251,7 @@ "name": "name", "content": { "type": "SYMBOL", - "name": "identifier" + "name": "_module_export_name" } }, { @@ -284,7 +269,7 @@ "name": "alias", "content": { "type": "SYMBOL", - "name": "identifier" + "name": "_module_export_name" } } ] @@ -296,6 +281,19 @@ } ] }, + "_module_export_name": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "string" + } + ] + }, "declaration": { "type": "CHOICE", "members": [ @@ -361,6 +359,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "import_attribute" + }, + { + "type": "BLANK" + } + ] + }, { "type": "SYMBOL", "name": "_semicolon" @@ -371,13 +381,8 @@ "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "namespace_import_export" - }, - "named": true, - "value": "namespace_import" + "type": "SYMBOL", + "name": "namespace_import" }, { "type": "SYMBOL", @@ -404,13 +409,8 @@ "type": "CHOICE", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "namespace_import_export" - }, - "named": true, - "value": "namespace_import" + "type": "SYMBOL", + "name": "namespace_import" }, { "type": "SYMBOL", @@ -446,7 +446,7 @@ } ] }, - "namespace_import_export": { + "namespace_import": { "type": "SEQ", "members": [ { @@ -477,13 +477,8 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_import_export_specifier" - }, - "named": true, - "value": "import_specifier" + "type": "SYMBOL", + "name": "import_specifier" }, { "type": "REPEAT", @@ -495,13 +490,8 @@ "value": "," }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_import_export_specifier" - }, - "named": true, - "value": "import_specifier" + "type": "SYMBOL", + "name": "import_specifier" } ] } @@ -531,6 +521,57 @@ } ] }, + "import_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_module_export_name" + } + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + } + ] + }, + "import_attribute": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "with" + }, + { + "type": "SYMBOL", + "name": "object" + } + ] + }, "statement": { "type": "CHOICE", "members": [ @@ -892,29 +933,51 @@ "value": "(" }, { - "type": "FIELD", - "name": "initializer", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "lexical_declaration" - }, - { - "type": "SYMBOL", - "name": "variable_declaration" - }, - { - "type": "SYMBOL", - "name": "expression_statement" - }, - { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lexical_declaration" + }, + { + "type": "SYMBOL", + "name": "variable_declaration" + } + ] + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "initializer", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } + }, + { + "type": "STRING", + "value": ";" + } + ] + }, + { + "type": "FIELD", + "name": "initializer", + "content": { "type": "SYMBOL", "name": "empty_statement" } - ] - } + } + ] }, { "type": "FIELD", @@ -923,8 +986,17 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "expression_statement" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "STRING", + "value": ";" + } + ] }, { "type": "SYMBOL", @@ -1101,6 +1173,18 @@ } ] } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] } ] } @@ -1163,37 +1247,49 @@ ] }, "do_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "do" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "statement" - } - }, - { - "type": "STRING", - "value": "while" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "parenthesized_expression" + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_semicolon" + }, + { + "type": "BLANK" + } + ] } - }, - { - "type": "SYMBOL", - "name": "_semicolon" - } - ] + ] + } }, "try_statement": { "type": "SEQ", @@ -1641,10 +1737,6 @@ "type": "SYMBOL", "name": "_jsx_element" }, - { - "type": "SYMBOL", - "name": "jsx_fragment" - }, { "type": "SYMBOL", "name": "assignment_expression" @@ -1747,10 +1839,6 @@ "type": "SYMBOL", "name": "null" }, - { - "type": "SYMBOL", - "name": "import" - }, { "type": "SYMBOL", "name": "object" @@ -1761,7 +1849,7 @@ }, { "type": "SYMBOL", - "name": "function" + "name": "function_expression" }, { "type": "SYMBOL", @@ -2380,22 +2468,12 @@ "value": ".{1,}" }, "glimmer_opening_tag": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "" }, "_jsx_element": { "type": "CHOICE", @@ -2438,41 +2516,9 @@ } ] }, - "jsx_fragment": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_jsx_child" - } - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": ">" - } - ] - }, - "jsx_text": { + "html_character_reference": { "type": "PATTERN", - "value": "[^{}<>]+" + "value": "&(#([xX][0-9a-fA-F]{1,6}|[0-9]{1,5})|[A-Za-z]{1,30});" }, "jsx_expression": { "type": "SEQ", @@ -2521,11 +2567,11 @@ }, { "type": "SYMBOL", - "name": "_jsx_element" + "name": "html_character_reference" }, { "type": "SYMBOL", - "name": "jsx_fragment" + "name": "_jsx_element" }, { "type": "SYMBOL", @@ -2544,23 +2590,36 @@ "value": "<" }, { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_jsx_element_name" - } - }, - { - "type": "REPEAT", - "content": { - "type": "FIELD", - "name": "attribute", - "content": { - "type": "SYMBOL", - "name": "_jsx_attribute" + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_jsx_element_name" + } + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "_jsx_attribute" + } + } + } + ] + }, + { + "type": "BLANK" } - } + ] }, { "type": "STRING", @@ -2598,25 +2657,43 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "nested_identifier" - } - ] + "type": "FIELD", + "name": "object", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" + } + ] + } }, { "type": "STRING", "value": "." }, { - "type": "SYMBOL", - "name": "identifier" + "type": "FIELD", + "name": "property", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "identifier" + }, + "named": true, + "value": "property_identifier" + } } ] } @@ -2646,8 +2723,13 @@ "name": "_jsx_identifier" }, { - "type": "SYMBOL", - "name": "nested_identifier" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "nested_identifier" + }, + "named": true, + "value": "member_expression" }, { "type": "SYMBOL", @@ -2660,19 +2742,23 @@ "members": [ { "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "/" + "value": "" + "value": "/>" } ] }, @@ -2775,14 +2857,114 @@ } ] } - ] + ] + }, + "_jsx_string": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_double_jsx_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "html_character_reference" + } + ] + } + }, + { + "type": "STRING", + "value": "\"" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "unescaped_single_jsx_string_fragment" + }, + "named": true, + "value": "string_fragment" + }, + { + "type": "SYMBOL", + "name": "html_character_reference" + } + ] + } + }, + { + "type": "STRING", + "value": "'" + } + ] + } + ] + }, + "unescaped_double_jsx_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "([^\"&]|&[^#A-Za-z])+" + } + } + }, + "unescaped_single_jsx_string_fragment": { + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "([^'&]|&[^#A-Za-z])+" + } + } }, "_jsx_attribute_value": { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "string" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_jsx_string" + }, + "named": true, + "value": "string" }, { "type": "SYMBOL", @@ -2791,10 +2973,6 @@ { "type": "SYMBOL", "name": "_jsx_element" - }, - { - "type": "SYMBOL", - "name": "jsx_fragment" } ] }, @@ -2935,7 +3113,7 @@ } ] }, - "function": { + "function_expression": { "type": "PREC", "value": "literal", "content": { @@ -3270,8 +3448,17 @@ "type": "FIELD", "name": "function", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "import" + } + ] } }, { @@ -3415,6 +3602,10 @@ { "type": "SYMBOL", "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "import" } ] } @@ -4605,8 +4796,17 @@ "type": "FIELD", "name": "left", "content": { - "type": "SYMBOL", - "name": "expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "private_property_identifier" + } + ] } }, { @@ -4754,38 +4954,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", @@ -4867,7 +5062,7 @@ "value": 1, "content": { "type": "PATTERN", - "value": "[^\"\\\\]+" + "value": "[^\"\\\\\\r\\n]+" } } }, @@ -4878,7 +5073,7 @@ "value": 1, "content": { "type": "PATTERN", - "value": "[^'\\\\]+" + "value": "[^'\\\\\\r\\n]+" } } }, @@ -4912,7 +5107,11 @@ }, { "type": "PATTERN", - "value": "u{[0-9a-fA-F]+}" + "value": "u\\{[0-9a-fA-F]+\\}" + }, + { + "type": "PATTERN", + "value": "[\\r?][\\n\\u2028\\u2029]" } ] } @@ -4933,7 +5132,7 @@ }, { "type": "PATTERN", - "value": ".*" + "value": "[^\\r\\n\\u2028\\u2029]*" } ] }, @@ -4970,8 +5169,13 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_template_chars" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_template_chars" + }, + "named": true, + "value": "string_fragment" }, { "type": "SYMBOL", @@ -5025,8 +5229,12 @@ { "type": "IMMEDIATE_TOKEN", "content": { - "type": "STRING", - "value": "/" + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "/" + } } }, { @@ -5472,13 +5680,8 @@ ] }, { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "\\d(_?\\d)*" - } - ] + "type": "PATTERN", + "value": "\\d(_?\\d)*" } ] }, @@ -5633,13 +5836,13 @@ "members": [ { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s\\p{Zs}0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s\\p{Zs}0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" }, { "type": "REPEAT", "content": { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s\\p{Zs}:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s\\p{Zs}:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" } } ] @@ -5656,32 +5859,54 @@ }, { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s\\p{Zs}0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s\\p{Zs}0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" }, { "type": "REPEAT", "content": { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s\\p{Zs}:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s\\p{Zs}:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u2028\\u2029]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" } } ] } }, "meta_property": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "new" - }, - { - "type": "STRING", - "value": "." + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "new" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "target" + } + ] }, { - "type": "STRING", - "value": "target" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "import" + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "meta" + } + ] } ] }, @@ -5966,6 +6191,14 @@ } ] }, + { + "type": "FIELD", + "name": "member", + "content": { + "type": "SYMBOL", + "name": "class_static_block" + } + }, { "type": "FIELD", "name": "template", @@ -5973,6 +6206,10 @@ "type": "SYMBOL", "name": "glimmer_template" } + }, + { + "type": "STRING", + "value": ";" } ] } @@ -6094,6 +6331,35 @@ } ] }, + "class_static_block": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement_block" + } + } + ] + }, "pattern": { "type": "PREC_DYNAMIC", "value": -1, @@ -6146,8 +6412,42 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "static" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "static" + }, + { + "type": "PATTERN", + "value": "\\s+" + }, + { + "type": "STRING", + "value": "get" + }, + { + "type": "PATTERN", + "value": "\\s*\\n" + } + ] + } + }, + "named": false, + "value": "static get" + } + ] }, { "type": "BLANK" @@ -6354,6 +6654,10 @@ { "type": "STRING", "value": "export" + }, + { + "type": "STRING", + "value": "let" } ] }, @@ -6383,9 +6687,13 @@ "type": "SYMBOL", "name": "comment" }, + { + "type": "SYMBOL", + "name": "html_comment" + }, { "type": "PATTERN", - "value": "[\\s\\p{Zs}\\uFEFF\\u2060\\u200B]" + "value": "[\\s\\p{Zs}\\uFEFF\\u2028\\u2029\\u2060\\u200B]" } ], "conflicts": [ @@ -6418,6 +6726,10 @@ "primary_expression", "_for_header" ], + [ + "variable_declarator", + "_for_header" + ], [ "array", "array_pattern" @@ -6445,6 +6757,10 @@ [ "binary_expression", "_initializer" + ], + [ + "class_static_block", + "_property_name" ] ], "precedences": [ @@ -6578,6 +6894,16 @@ "value": "object" } ], + [ + { + "type": "SYMBOL", + "name": "meta_property" + }, + { + "type": "SYMBOL", + "name": "import" + } + ], [ { "type": "SYMBOL", @@ -6597,6 +6923,16 @@ "type": "SYMBOL", "name": "primary_expression" } + ], + [ + { + "type": "SYMBOL", + "name": "lexical_declaration" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } ] ], "externals": [ @@ -6611,12 +6947,31 @@ { "type": "SYMBOL", "name": "_ternary_qmark" + }, + { + "type": "SYMBOL", + "name": "html_comment" + }, + { + "type": "STRING", + "value": "||" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SYMBOL", + "name": "regex_pattern" + }, + { + "type": "SYMBOL", + "name": "jsx_text" } ], "inline": [ "_call_signature", "_formal_parameter", - "statement", "_expressions", "_semicolon", "_identifier", diff --git a/tree-sitter-mozjs/src/node-types.json b/tree-sitter-mozjs/src/node-types.json index 7be3e1090..e5e4cd1a6 100644 --- a/tree-sitter-mozjs/src/node-types.json +++ b/tree-sitter-mozjs/src/node-types.json @@ -53,10 +53,6 @@ "type": "jsx_element", "named": true }, - { - "type": "jsx_fragment", - "named": true - }, { "type": "jsx_self_closing_element", "named": true @@ -146,7 +142,7 @@ "named": true }, { - "type": "function", + "type": "function_expression", "named": true }, { @@ -157,10 +153,6 @@ "type": "identifier", "named": true }, - { - "type": "import", - "named": true - }, { "type": "member_expression", "named": true @@ -612,6 +604,10 @@ { "type": "expression", "named": true + }, + { + "type": "private_property_identifier", + "named": true } ] }, @@ -774,6 +770,10 @@ { "type": "expression", "named": true + }, + { + "type": "import", + "named": true } ] }, @@ -877,6 +877,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "class_static_block", + "named": true + }, { "type": "field_definition", "named": true @@ -960,6 +964,22 @@ ] } }, + { + "type": "class_static_block", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "statement_block", + "named": true + } + ] + } + } + }, { "type": "computed_property_name", "named": true, @@ -1091,6 +1111,10 @@ { "type": "identifier", "named": true + }, + { + "type": "string", + "named": true } ] }, @@ -1101,6 +1125,10 @@ { "type": "identifier", "named": true + }, + { + "type": "string", + "named": true } ] } @@ -1374,15 +1402,23 @@ ] }, "condition": { - "multiple": false, + "multiple": true, "required": true, "types": [ + { + "type": ";", + "named": false + }, { "type": "empty_statement", "named": true }, { - "type": "expression_statement", + "type": "expression", + "named": true + }, + { + "type": "sequence_expression", "named": true } ] @@ -1410,13 +1446,17 @@ "named": true }, { - "type": "expression_statement", + "type": "expression", "named": true }, { "type": "lexical_declaration", "named": true }, + { + "type": "sequence_expression", + "named": true + }, { "type": "variable_declaration", "named": true @@ -1445,7 +1485,7 @@ } }, { - "type": "function", + "type": "function_declaration", "named": true, "fields": { "body": { @@ -1460,7 +1500,7 @@ }, "name": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "identifier", @@ -1481,7 +1521,7 @@ } }, { - "type": "function_declaration", + "type": "function_expression", "named": true, "fields": { "body": { @@ -1496,7 +1536,7 @@ }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -1588,16 +1628,6 @@ } } }, - { - "type": "glimmer_closing_tag", - "named": true, - "fields": {} - }, - { - "type": "glimmer_opening_tag", - "named": true, - "fields": {} - }, { "type": "glimmer_template", "named": true, @@ -1665,6 +1695,21 @@ "named": true, "fields": {} }, + { + "type": "import_attribute", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "object", + "named": true + } + ] + } + }, { "type": "import_clause", "named": true, @@ -1709,6 +1754,10 @@ { "type": "identifier", "named": true + }, + { + "type": "string", + "named": true } ] } @@ -1730,9 +1779,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "import_attribute", + "named": true + }, { "type": "import_clause", "named": true @@ -1756,10 +1809,6 @@ "type": "jsx_expression", "named": true }, - { - "type": "jsx_fragment", - "named": true - }, { "type": "jsx_namespace_name", "named": true @@ -1785,7 +1834,7 @@ "fields": { "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -1796,7 +1845,7 @@ "named": true }, { - "type": "nested_identifier", + "type": "member_expression", "named": true } ] @@ -1833,15 +1882,15 @@ "required": false, "types": [ { - "type": "jsx_element", + "type": "html_character_reference", "named": true }, { - "type": "jsx_expression", + "type": "jsx_element", "named": true }, { - "type": "jsx_fragment", + "type": "jsx_expression", "named": true }, { @@ -1878,37 +1927,6 @@ ] } }, - { - "type": "jsx_fragment", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "jsx_element", - "named": true - }, - { - "type": "jsx_expression", - "named": true - }, - { - "type": "jsx_fragment", - "named": true - }, - { - "type": "jsx_self_closing_element", - "named": true - }, - { - "type": "jsx_text", - "named": true - } - ] - } - }, { "type": "jsx_namespace_name", "named": true, @@ -1944,7 +1962,7 @@ }, "name": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -1955,7 +1973,7 @@ "named": true }, { - "type": "nested_identifier", + "type": "member_expression", "named": true } ] @@ -1993,7 +2011,7 @@ "named": true }, { - "type": "nested_identifier", + "type": "member_expression", "named": true } ] @@ -2067,6 +2085,10 @@ { "type": "expression", "named": true + }, + { + "type": "import", + "named": true } ] }, @@ -2189,40 +2211,25 @@ { "type": "identifier", "named": true - } - ] - } - }, - { - "type": "namespace_import", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "identifier", + "type": "string", "named": true } ] } }, { - "type": "nested_identifier", + "type": "namespace_import", "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { "type": "identifier", "named": true - }, - { - "type": "nested_identifier", - "named": true } ] } @@ -2554,31 +2561,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 + } + ] } }, { @@ -2623,6 +2615,10 @@ "type": "escape_sequence", "named": true }, + { + "type": "html_character_reference", + "named": true + }, { "type": "string_fragment", "named": true @@ -2773,6 +2769,10 @@ "type": "escape_sequence", "named": true }, + { + "type": "string_fragment", + "named": true + }, { "type": "template_substitution", "named": true @@ -3202,6 +3202,10 @@ "type": "/=", "named": false }, + { + "type": "/>", + "named": false + }, { "type": ":", "named": false @@ -3215,7 +3219,7 @@ "named": false }, { - "type": "", + "type": "", - "named": false - }, { "type": "=", "named": false @@ -3406,10 +3406,26 @@ "type": "get", "named": false }, + { + "type": "glimmer_closing_tag", + "named": true + }, + { + "type": "glimmer_opening_tag", + "named": true + }, { "type": "hash_bang_line", "named": true }, + { + "type": "html_character_reference", + "named": true + }, + { + "type": "html_comment", + "named": true + }, { "type": "identifier", "named": true @@ -3438,6 +3454,10 @@ "type": "let", "named": false }, + { + "type": "meta", + "named": false + }, { "type": "new", "named": false @@ -3502,6 +3522,10 @@ "type": "static", "named": false }, + { + "type": "static get", + "named": false + }, { "type": "string_fragment", "named": true diff --git a/tree-sitter-mozjs/src/parser.c b/tree-sitter-mozjs/src/parser.c index aca37402c..df129d7eb 100644 --- a/tree-sitter-mozjs/src/parser.c +++ b/tree-sitter-mozjs/src/parser.c @@ -5,16 +5,24 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1674 -#define LARGE_STATE_COUNT 294 -#define SYMBOL_COUNT 250 -#define ALIAS_COUNT 6 -#define TOKEN_COUNT 129 -#define EXTERNAL_TOKEN_COUNT 3 +#define STATE_COUNT 1751 +#define LARGE_STATE_COUNT 331 +#define SYMBOL_COUNT 265 +#define ALIAS_COUNT 4 +#define TOKEN_COUNT 137 +#define EXTERNAL_TOKEN_COUNT 8 #define FIELD_COUNT 38 -#define MAX_ALIAS_SEQUENCE_LENGTH 7 -#define PRODUCTION_ID_COUNT 110 +#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define PRODUCTION_ID_COUNT 113 enum { sym_identifier = 1, @@ -22,34 +30,34 @@ enum { anon_sym_export = 3, anon_sym_STAR = 4, anon_sym_default = 5, - anon_sym_LBRACE = 6, - anon_sym_COMMA = 7, - anon_sym_RBRACE = 8, - anon_sym_as = 9, + anon_sym_as = 6, + anon_sym_LBRACE = 7, + anon_sym_COMMA = 8, + anon_sym_RBRACE = 9, anon_sym_import = 10, anon_sym_from = 11, - anon_sym_var = 12, - anon_sym_let = 13, - anon_sym_const = 14, - anon_sym_else = 15, - anon_sym_if = 16, - anon_sym_switch = 17, - anon_sym_for = 18, - anon_sym_LPAREN = 19, - anon_sym_RPAREN = 20, - anon_sym_await = 21, - anon_sym_in = 22, - anon_sym_of = 23, - anon_sym_while = 24, - anon_sym_do = 25, - anon_sym_try = 26, - anon_sym_with = 27, - anon_sym_break = 28, - anon_sym_continue = 29, - anon_sym_debugger = 30, - anon_sym_return = 31, - anon_sym_throw = 32, - anon_sym_SEMI = 33, + anon_sym_with = 12, + anon_sym_var = 13, + anon_sym_let = 14, + anon_sym_const = 15, + anon_sym_else = 16, + anon_sym_if = 17, + anon_sym_switch = 18, + anon_sym_for = 19, + anon_sym_LPAREN = 20, + anon_sym_SEMI = 21, + anon_sym_RPAREN = 22, + anon_sym_await = 23, + anon_sym_in = 24, + anon_sym_of = 25, + anon_sym_while = 26, + anon_sym_do = 27, + anon_sym_try = 28, + anon_sym_break = 29, + anon_sym_continue = 30, + anon_sym_debugger = 31, + anon_sym_return = 32, + anon_sym_throw = 33, anon_sym_COLON = 34, anon_sym_case = 35, anon_sym_catch = 36, @@ -59,219 +67,232 @@ enum { anon_sym_LBRACK = 40, anon_sym_RBRACK = 41, sym__glimmer_template_content = 42, - anon_sym_LTtemplate_GT = 43, - anon_sym_LT_SLASHtemplate_GT = 44, - anon_sym_LT = 45, - anon_sym_GT = 46, - anon_sym_SLASH = 47, - sym_jsx_text = 48, - sym_jsx_identifier = 49, - anon_sym_DOT = 50, - anon_sym_class = 51, - anon_sym_extends = 52, - anon_sym_async = 53, - anon_sym_function = 54, - anon_sym_EQ_GT = 55, - sym_optional_chain = 56, - anon_sym_new = 57, - anon_sym_PLUS_EQ = 58, - anon_sym_DASH_EQ = 59, - anon_sym_STAR_EQ = 60, - anon_sym_SLASH_EQ = 61, - anon_sym_PERCENT_EQ = 62, - anon_sym_CARET_EQ = 63, - anon_sym_AMP_EQ = 64, - anon_sym_PIPE_EQ = 65, - anon_sym_GT_GT_EQ = 66, - anon_sym_GT_GT_GT_EQ = 67, - anon_sym_LT_LT_EQ = 68, - anon_sym_STAR_STAR_EQ = 69, - anon_sym_AMP_AMP_EQ = 70, - anon_sym_PIPE_PIPE_EQ = 71, - anon_sym_QMARK_QMARK_EQ = 72, - anon_sym_DOT_DOT_DOT = 73, - anon_sym_AMP_AMP = 74, - anon_sym_PIPE_PIPE = 75, - anon_sym_GT_GT = 76, - anon_sym_GT_GT_GT = 77, - anon_sym_LT_LT = 78, - anon_sym_AMP = 79, - anon_sym_CARET = 80, - anon_sym_PIPE = 81, - anon_sym_PLUS = 82, - anon_sym_DASH = 83, - anon_sym_PERCENT = 84, - anon_sym_STAR_STAR = 85, - anon_sym_LT_EQ = 86, - anon_sym_EQ_EQ = 87, - anon_sym_EQ_EQ_EQ = 88, - anon_sym_BANG_EQ = 89, - anon_sym_BANG_EQ_EQ = 90, - anon_sym_GT_EQ = 91, - anon_sym_QMARK_QMARK = 92, - anon_sym_instanceof = 93, - anon_sym_BANG = 94, - anon_sym_TILDE = 95, - anon_sym_typeof = 96, - anon_sym_void = 97, - anon_sym_delete = 98, - anon_sym_PLUS_PLUS = 99, - anon_sym_DASH_DASH = 100, - anon_sym_DQUOTE = 101, - anon_sym_SQUOTE = 102, - sym_unescaped_double_string_fragment = 103, - sym_unescaped_single_string_fragment = 104, - sym_escape_sequence = 105, - sym_comment = 106, - anon_sym_BQUOTE = 107, - anon_sym_DOLLAR_LBRACE = 108, - anon_sym_SLASH2 = 109, - sym_regex_pattern = 110, - sym_regex_flags = 111, - sym_number = 112, - sym_private_property_identifier = 113, - anon_sym_target = 114, - sym_this = 115, - sym_super = 116, - sym_true = 117, - sym_false = 118, - sym_null = 119, - sym_undefined = 120, - anon_sym_AT = 121, - anon_sym_static = 122, - anon_sym_get = 123, - anon_sym_set = 124, - sym_preproc = 125, - sym__automatic_semicolon = 126, - sym__template_chars = 127, - sym__ternary_qmark = 128, - sym_program = 129, - sym_export_statement = 130, - sym_export_clause = 131, - sym__import_export_specifier = 132, - sym_declaration = 133, - sym_import = 134, - sym_import_statement = 135, - sym_import_clause = 136, - sym__from_clause = 137, - sym_namespace_import_export = 138, - sym_named_imports = 139, - sym_expression_statement = 140, - sym_variable_declaration = 141, - sym_lexical_declaration = 142, - sym_variable_declarator = 143, - sym_statement_block = 144, - sym_else_clause = 145, - sym_if_statement = 146, - sym_switch_statement = 147, - sym_for_statement = 148, - sym_for_in_statement = 149, - sym__for_header = 150, - sym_while_statement = 151, - sym_do_statement = 152, - sym_try_statement = 153, - sym_with_statement = 154, - sym_break_statement = 155, - sym_continue_statement = 156, - sym_debugger_statement = 157, - sym_return_statement = 158, - sym_throw_statement = 159, - sym_empty_statement = 160, - sym_labeled_statement = 161, - sym_switch_body = 162, - sym_switch_case = 163, - sym_switch_default = 164, - sym_catch_clause = 165, - sym_finally_clause = 166, - sym_parenthesized_expression = 167, - sym_expression = 168, - sym_primary_expression = 169, - sym_yield_expression = 170, - sym_object = 171, - sym_object_pattern = 172, - sym_assignment_pattern = 173, - sym_object_assignment_pattern = 174, - sym_array = 175, - sym_array_pattern = 176, - sym_glimmer_template = 177, - sym_glimmer_opening_tag = 178, - sym_glimmer_closing_tag = 179, - sym_jsx_element = 180, - sym_jsx_fragment = 181, - sym_jsx_expression = 182, - sym_jsx_opening_element = 183, - sym_nested_identifier = 184, - sym_jsx_namespace_name = 185, - sym_jsx_closing_element = 186, - sym_jsx_self_closing_element = 187, - sym_jsx_attribute = 188, - sym_class = 189, - sym_class_declaration = 190, - sym_class_heritage = 191, - sym_function = 192, - sym_function_declaration = 193, - sym_generator_function = 194, - sym_generator_function_declaration = 195, - sym_arrow_function = 196, - sym_call_expression = 197, - sym_new_expression = 198, - sym_await_expression = 199, - sym_member_expression = 200, - sym_subscript_expression = 201, - sym_assignment_expression = 202, - sym__augmented_assignment_lhs = 203, - sym_augmented_assignment_expression = 204, - sym__initializer = 205, - sym__destructuring_pattern = 206, - sym_spread_element = 207, - sym_ternary_expression = 208, - sym_binary_expression = 209, - sym_unary_expression = 210, - sym_update_expression = 211, - sym_sequence_expression = 212, - sym_string = 213, - sym_template_string = 214, - sym_template_substitution = 215, - sym_regex = 216, - sym_meta_property = 217, - sym_arguments = 218, - sym_decorator = 219, - sym_decorator_member_expression = 220, - sym_decorator_call_expression = 221, - sym_class_body = 222, - sym_field_definition = 223, - sym_formal_parameters = 224, - sym_pattern = 225, - sym_rest_pattern = 226, - sym_method_definition = 227, - sym_pair = 228, - sym_pair_pattern = 229, - sym__property_name = 230, - sym_computed_property_name = 231, - aux_sym_program_repeat1 = 232, - aux_sym_export_statement_repeat1 = 233, - aux_sym_export_clause_repeat1 = 234, - aux_sym_named_imports_repeat1 = 235, - aux_sym_variable_declaration_repeat1 = 236, - aux_sym_switch_body_repeat1 = 237, - aux_sym_object_repeat1 = 238, - aux_sym_object_pattern_repeat1 = 239, - aux_sym_array_repeat1 = 240, - aux_sym_array_pattern_repeat1 = 241, - aux_sym_glimmer_template_repeat1 = 242, - aux_sym_jsx_element_repeat1 = 243, - aux_sym_jsx_opening_element_repeat1 = 244, - aux_sym_string_repeat1 = 245, - aux_sym_string_repeat2 = 246, - aux_sym_template_string_repeat1 = 247, - aux_sym_class_body_repeat1 = 248, - aux_sym_formal_parameters_repeat1 = 249, - alias_sym_import_specifier = 250, - alias_sym_namespace_export = 251, - alias_sym_property_identifier = 252, - alias_sym_shorthand_property_identifier = 253, - alias_sym_shorthand_property_identifier_pattern = 254, - alias_sym_statement_identifier = 255, + sym_glimmer_opening_tag = 43, + sym_glimmer_closing_tag = 44, + sym_html_character_reference = 45, + anon_sym_LT = 46, + anon_sym_GT = 47, + sym_jsx_identifier = 48, + anon_sym_DOT = 49, + anon_sym_LT_SLASH = 50, + anon_sym_SLASH_GT = 51, + anon_sym_DQUOTE = 52, + anon_sym_SQUOTE = 53, + sym_unescaped_double_jsx_string_fragment = 54, + sym_unescaped_single_jsx_string_fragment = 55, + anon_sym_class = 56, + anon_sym_extends = 57, + anon_sym_async = 58, + anon_sym_function = 59, + anon_sym_EQ_GT = 60, + sym_optional_chain = 61, + anon_sym_new = 62, + anon_sym_PLUS_EQ = 63, + anon_sym_DASH_EQ = 64, + anon_sym_STAR_EQ = 65, + anon_sym_SLASH_EQ = 66, + anon_sym_PERCENT_EQ = 67, + anon_sym_CARET_EQ = 68, + anon_sym_AMP_EQ = 69, + anon_sym_PIPE_EQ = 70, + anon_sym_GT_GT_EQ = 71, + anon_sym_GT_GT_GT_EQ = 72, + anon_sym_LT_LT_EQ = 73, + anon_sym_STAR_STAR_EQ = 74, + anon_sym_AMP_AMP_EQ = 75, + anon_sym_PIPE_PIPE_EQ = 76, + anon_sym_QMARK_QMARK_EQ = 77, + anon_sym_DOT_DOT_DOT = 78, + anon_sym_AMP_AMP = 79, + anon_sym_PIPE_PIPE = 80, + anon_sym_GT_GT = 81, + anon_sym_GT_GT_GT = 82, + anon_sym_LT_LT = 83, + anon_sym_AMP = 84, + anon_sym_CARET = 85, + anon_sym_PIPE = 86, + anon_sym_PLUS = 87, + anon_sym_DASH = 88, + anon_sym_SLASH = 89, + anon_sym_PERCENT = 90, + anon_sym_STAR_STAR = 91, + anon_sym_LT_EQ = 92, + anon_sym_EQ_EQ = 93, + anon_sym_EQ_EQ_EQ = 94, + anon_sym_BANG_EQ = 95, + anon_sym_BANG_EQ_EQ = 96, + anon_sym_GT_EQ = 97, + anon_sym_QMARK_QMARK = 98, + anon_sym_instanceof = 99, + anon_sym_BANG = 100, + anon_sym_TILDE = 101, + anon_sym_typeof = 102, + anon_sym_void = 103, + anon_sym_delete = 104, + anon_sym_PLUS_PLUS = 105, + anon_sym_DASH_DASH = 106, + sym_unescaped_double_string_fragment = 107, + sym_unescaped_single_string_fragment = 108, + sym_escape_sequence = 109, + sym_comment = 110, + anon_sym_BQUOTE = 111, + anon_sym_DOLLAR_LBRACE = 112, + anon_sym_SLASH2 = 113, + sym_regex_pattern = 114, + sym_regex_flags = 115, + sym_number = 116, + sym_private_property_identifier = 117, + anon_sym_target = 118, + anon_sym_meta = 119, + sym_this = 120, + sym_super = 121, + sym_true = 122, + sym_false = 123, + sym_null = 124, + sym_undefined = 125, + anon_sym_AT = 126, + anon_sym_static = 127, + aux_sym_method_definition_token1 = 128, + anon_sym_get = 129, + anon_sym_set = 130, + sym_preproc = 131, + sym__automatic_semicolon = 132, + sym__template_chars = 133, + sym__ternary_qmark = 134, + sym_html_comment = 135, + sym_jsx_text = 136, + sym_program = 137, + sym_export_statement = 138, + sym_namespace_export = 139, + sym_export_clause = 140, + sym_export_specifier = 141, + sym__module_export_name = 142, + sym_declaration = 143, + sym_import = 144, + sym_import_statement = 145, + sym_import_clause = 146, + sym__from_clause = 147, + sym_namespace_import = 148, + sym_named_imports = 149, + sym_import_specifier = 150, + sym_import_attribute = 151, + sym_statement = 152, + sym_expression_statement = 153, + sym_variable_declaration = 154, + sym_lexical_declaration = 155, + sym_variable_declarator = 156, + sym_statement_block = 157, + sym_else_clause = 158, + sym_if_statement = 159, + sym_switch_statement = 160, + sym_for_statement = 161, + sym_for_in_statement = 162, + sym__for_header = 163, + sym_while_statement = 164, + sym_do_statement = 165, + sym_try_statement = 166, + sym_with_statement = 167, + sym_break_statement = 168, + sym_continue_statement = 169, + sym_debugger_statement = 170, + sym_return_statement = 171, + sym_throw_statement = 172, + sym_empty_statement = 173, + sym_labeled_statement = 174, + sym_switch_body = 175, + sym_switch_case = 176, + sym_switch_default = 177, + sym_catch_clause = 178, + sym_finally_clause = 179, + sym_parenthesized_expression = 180, + sym_expression = 181, + sym_primary_expression = 182, + sym_yield_expression = 183, + sym_object = 184, + sym_object_pattern = 185, + sym_assignment_pattern = 186, + sym_object_assignment_pattern = 187, + sym_array = 188, + sym_array_pattern = 189, + sym_glimmer_template = 190, + sym_jsx_element = 191, + sym_jsx_expression = 192, + sym_jsx_opening_element = 193, + sym_nested_identifier = 194, + sym_jsx_namespace_name = 195, + sym_jsx_closing_element = 196, + sym_jsx_self_closing_element = 197, + sym_jsx_attribute = 198, + sym__jsx_string = 199, + sym_class = 200, + sym_class_declaration = 201, + sym_class_heritage = 202, + sym_function_expression = 203, + sym_function_declaration = 204, + sym_generator_function = 205, + sym_generator_function_declaration = 206, + sym_arrow_function = 207, + sym_call_expression = 208, + sym_new_expression = 209, + sym_await_expression = 210, + sym_member_expression = 211, + sym_subscript_expression = 212, + sym_assignment_expression = 213, + sym__augmented_assignment_lhs = 214, + sym_augmented_assignment_expression = 215, + sym__initializer = 216, + sym__destructuring_pattern = 217, + sym_spread_element = 218, + sym_ternary_expression = 219, + sym_binary_expression = 220, + sym_unary_expression = 221, + sym_update_expression = 222, + sym_sequence_expression = 223, + sym_string = 224, + sym_template_string = 225, + sym_template_substitution = 226, + sym_regex = 227, + sym_meta_property = 228, + sym_arguments = 229, + sym_decorator = 230, + sym_decorator_member_expression = 231, + sym_decorator_call_expression = 232, + sym_class_body = 233, + sym_field_definition = 234, + sym_formal_parameters = 235, + sym_class_static_block = 236, + sym_pattern = 237, + sym_rest_pattern = 238, + sym_method_definition = 239, + sym_pair = 240, + sym_pair_pattern = 241, + sym__property_name = 242, + sym_computed_property_name = 243, + aux_sym_program_repeat1 = 244, + aux_sym_export_statement_repeat1 = 245, + aux_sym_export_clause_repeat1 = 246, + aux_sym_named_imports_repeat1 = 247, + aux_sym_variable_declaration_repeat1 = 248, + aux_sym_switch_body_repeat1 = 249, + aux_sym_object_repeat1 = 250, + aux_sym_object_pattern_repeat1 = 251, + aux_sym_array_repeat1 = 252, + aux_sym_array_pattern_repeat1 = 253, + aux_sym_glimmer_template_repeat1 = 254, + aux_sym_jsx_element_repeat1 = 255, + aux_sym_jsx_opening_element_repeat1 = 256, + aux_sym__jsx_string_repeat1 = 257, + aux_sym__jsx_string_repeat2 = 258, + aux_sym_sequence_expression_repeat1 = 259, + aux_sym_string_repeat1 = 260, + aux_sym_string_repeat2 = 261, + aux_sym_template_string_repeat1 = 262, + aux_sym_class_body_repeat1 = 263, + aux_sym_formal_parameters_repeat1 = 264, + alias_sym_property_identifier = 265, + alias_sym_shorthand_property_identifier = 266, + alias_sym_shorthand_property_identifier_pattern = 267, + alias_sym_statement_identifier = 268, }; static const char * const ts_symbol_names[] = { @@ -281,12 +302,13 @@ static const char * const ts_symbol_names[] = { [anon_sym_export] = "export", [anon_sym_STAR] = "*", [anon_sym_default] = "default", + [anon_sym_as] = "as", [anon_sym_LBRACE] = "{", [anon_sym_COMMA] = ",", [anon_sym_RBRACE] = "}", - [anon_sym_as] = "as", [anon_sym_import] = "import", [anon_sym_from] = "from", + [anon_sym_with] = "with", [anon_sym_var] = "var", [anon_sym_let] = "let", [anon_sym_const] = "const", @@ -295,6 +317,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_switch] = "switch", [anon_sym_for] = "for", [anon_sym_LPAREN] = "(", + [anon_sym_SEMI] = ";", [anon_sym_RPAREN] = ")", [anon_sym_await] = "await", [anon_sym_in] = "in", @@ -302,13 +325,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_while] = "while", [anon_sym_do] = "do", [anon_sym_try] = "try", - [anon_sym_with] = "with", [anon_sym_break] = "break", [anon_sym_continue] = "continue", [anon_sym_debugger] = "debugger", [anon_sym_return] = "return", [anon_sym_throw] = "throw", - [anon_sym_SEMI] = ";", [anon_sym_COLON] = ":", [anon_sym_case] = "case", [anon_sym_catch] = "catch", @@ -318,14 +339,19 @@ static const char * const ts_symbol_names[] = { [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", [sym__glimmer_template_content] = "_glimmer_template_content", - [anon_sym_LTtemplate_GT] = "", + [sym_glimmer_opening_tag] = "glimmer_opening_tag", + [sym_glimmer_closing_tag] = "glimmer_closing_tag", + [sym_html_character_reference] = "html_character_reference", [anon_sym_LT] = "<", [anon_sym_GT] = ">", - [anon_sym_SLASH] = "/", - [sym_jsx_text] = "jsx_text", [sym_jsx_identifier] = "identifier", [anon_sym_DOT] = ".", + [anon_sym_LT_SLASH] = "", + [anon_sym_DQUOTE] = "\"", + [anon_sym_SQUOTE] = "'", + [sym_unescaped_double_jsx_string_fragment] = "string_fragment", + [sym_unescaped_single_jsx_string_fragment] = "string_fragment", [anon_sym_class] = "class", [anon_sym_extends] = "extends", [anon_sym_async] = "async", @@ -359,6 +385,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_PIPE] = "|", [anon_sym_PLUS] = "+", [anon_sym_DASH] = "-", + [anon_sym_SLASH] = "/", [anon_sym_PERCENT] = "%", [anon_sym_STAR_STAR] = "**", [anon_sym_LT_EQ] = "<=", @@ -376,8 +403,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_delete] = "delete", [anon_sym_PLUS_PLUS] = "++", [anon_sym_DASH_DASH] = "--", - [anon_sym_DQUOTE] = "\"", - [anon_sym_SQUOTE] = "'", [sym_unescaped_double_string_fragment] = "string_fragment", [sym_unescaped_single_string_fragment] = "string_fragment", [sym_escape_sequence] = "escape_sequence", @@ -390,6 +415,7 @@ static const char * const ts_symbol_names[] = { [sym_number] = "number", [sym_private_property_identifier] = "private_property_identifier", [anon_sym_target] = "target", + [anon_sym_meta] = "meta", [sym_this] = "this", [sym_super] = "super", [sym_true] = "true", @@ -398,23 +424,31 @@ static const char * const ts_symbol_names[] = { [sym_undefined] = "undefined", [anon_sym_AT] = "@", [anon_sym_static] = "static", + [aux_sym_method_definition_token1] = "static get", [anon_sym_get] = "get", [anon_sym_set] = "set", [sym_preproc] = "preproc", [sym__automatic_semicolon] = "_automatic_semicolon", - [sym__template_chars] = "_template_chars", + [sym__template_chars] = "string_fragment", [sym__ternary_qmark] = "\?", + [sym_html_comment] = "html_comment", + [sym_jsx_text] = "jsx_text", [sym_program] = "program", [sym_export_statement] = "export_statement", + [sym_namespace_export] = "namespace_export", [sym_export_clause] = "export_clause", - [sym__import_export_specifier] = "export_specifier", + [sym_export_specifier] = "export_specifier", + [sym__module_export_name] = "_module_export_name", [sym_declaration] = "declaration", [sym_import] = "import", [sym_import_statement] = "import_statement", [sym_import_clause] = "import_clause", [sym__from_clause] = "_from_clause", - [sym_namespace_import_export] = "namespace_import", + [sym_namespace_import] = "namespace_import", [sym_named_imports] = "named_imports", + [sym_import_specifier] = "import_specifier", + [sym_import_attribute] = "import_attribute", + [sym_statement] = "statement", [sym_expression_statement] = "expression_statement", [sym_variable_declaration] = "variable_declaration", [sym_lexical_declaration] = "lexical_declaration", @@ -453,21 +487,19 @@ static const char * const ts_symbol_names[] = { [sym_array] = "array", [sym_array_pattern] = "array_pattern", [sym_glimmer_template] = "glimmer_template", - [sym_glimmer_opening_tag] = "glimmer_opening_tag", - [sym_glimmer_closing_tag] = "glimmer_closing_tag", [sym_jsx_element] = "jsx_element", - [sym_jsx_fragment] = "jsx_fragment", [sym_jsx_expression] = "jsx_expression", [sym_jsx_opening_element] = "jsx_opening_element", - [sym_nested_identifier] = "nested_identifier", + [sym_nested_identifier] = "member_expression", [sym_jsx_namespace_name] = "jsx_namespace_name", [sym_jsx_closing_element] = "jsx_closing_element", [sym_jsx_self_closing_element] = "jsx_self_closing_element", [sym_jsx_attribute] = "jsx_attribute", + [sym__jsx_string] = "string", [sym_class] = "class", [sym_class_declaration] = "class_declaration", [sym_class_heritage] = "class_heritage", - [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", @@ -500,6 +532,7 @@ static const char * const ts_symbol_names[] = { [sym_class_body] = "class_body", [sym_field_definition] = "field_definition", [sym_formal_parameters] = "formal_parameters", + [sym_class_static_block] = "class_static_block", [sym_pattern] = "pattern", [sym_rest_pattern] = "rest_pattern", [sym_method_definition] = "method_definition", @@ -520,13 +553,14 @@ static const char * const ts_symbol_names[] = { [aux_sym_glimmer_template_repeat1] = "glimmer_template_repeat1", [aux_sym_jsx_element_repeat1] = "jsx_element_repeat1", [aux_sym_jsx_opening_element_repeat1] = "jsx_opening_element_repeat1", + [aux_sym__jsx_string_repeat1] = "_jsx_string_repeat1", + [aux_sym__jsx_string_repeat2] = "_jsx_string_repeat2", + [aux_sym_sequence_expression_repeat1] = "sequence_expression_repeat1", [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_string_repeat2] = "string_repeat2", [aux_sym_template_string_repeat1] = "template_string_repeat1", [aux_sym_class_body_repeat1] = "class_body_repeat1", [aux_sym_formal_parameters_repeat1] = "formal_parameters_repeat1", - [alias_sym_import_specifier] = "import_specifier", - [alias_sym_namespace_export] = "namespace_export", [alias_sym_property_identifier] = "property_identifier", [alias_sym_shorthand_property_identifier] = "shorthand_property_identifier", [alias_sym_shorthand_property_identifier_pattern] = "shorthand_property_identifier_pattern", @@ -540,12 +574,13 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_export] = anon_sym_export, [anon_sym_STAR] = anon_sym_STAR, [anon_sym_default] = anon_sym_default, + [anon_sym_as] = anon_sym_as, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_as] = anon_sym_as, [anon_sym_import] = anon_sym_import, [anon_sym_from] = anon_sym_from, + [anon_sym_with] = anon_sym_with, [anon_sym_var] = anon_sym_var, [anon_sym_let] = anon_sym_let, [anon_sym_const] = anon_sym_const, @@ -554,6 +589,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_switch] = anon_sym_switch, [anon_sym_for] = anon_sym_for, [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_await] = anon_sym_await, [anon_sym_in] = anon_sym_in, @@ -561,13 +597,11 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_while] = anon_sym_while, [anon_sym_do] = anon_sym_do, [anon_sym_try] = anon_sym_try, - [anon_sym_with] = anon_sym_with, [anon_sym_break] = anon_sym_break, [anon_sym_continue] = anon_sym_continue, [anon_sym_debugger] = anon_sym_debugger, [anon_sym_return] = anon_sym_return, [anon_sym_throw] = anon_sym_throw, - [anon_sym_SEMI] = anon_sym_SEMI, [anon_sym_COLON] = anon_sym_COLON, [anon_sym_case] = anon_sym_case, [anon_sym_catch] = anon_sym_catch, @@ -577,14 +611,19 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, [sym__glimmer_template_content] = sym__glimmer_template_content, - [anon_sym_LTtemplate_GT] = anon_sym_LTtemplate_GT, - [anon_sym_LT_SLASHtemplate_GT] = anon_sym_LT_SLASHtemplate_GT, + [sym_glimmer_opening_tag] = sym_glimmer_opening_tag, + [sym_glimmer_closing_tag] = sym_glimmer_closing_tag, + [sym_html_character_reference] = sym_html_character_reference, [anon_sym_LT] = anon_sym_LT, [anon_sym_GT] = anon_sym_GT, - [anon_sym_SLASH] = anon_sym_SLASH, - [sym_jsx_text] = sym_jsx_text, [sym_jsx_identifier] = sym_identifier, [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_LT_SLASH] = anon_sym_LT_SLASH, + [anon_sym_SLASH_GT] = anon_sym_SLASH_GT, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [sym_unescaped_double_jsx_string_fragment] = sym__template_chars, + [sym_unescaped_single_jsx_string_fragment] = sym__template_chars, [anon_sym_class] = anon_sym_class, [anon_sym_extends] = anon_sym_extends, [anon_sym_async] = anon_sym_async, @@ -618,6 +657,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PIPE] = anon_sym_PIPE, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PERCENT] = anon_sym_PERCENT, [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, [anon_sym_LT_EQ] = anon_sym_LT_EQ, @@ -635,10 +675,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_delete] = anon_sym_delete, [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, - [sym_unescaped_double_string_fragment] = sym_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, [anon_sym_BQUOTE] = anon_sym_BQUOTE, @@ -649,6 +687,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_number] = sym_number, [sym_private_property_identifier] = sym_private_property_identifier, [anon_sym_target] = anon_sym_target, + [anon_sym_meta] = anon_sym_meta, [sym_this] = sym_this, [sym_super] = sym_super, [sym_true] = sym_true, @@ -657,23 +696,31 @@ static const TSSymbol ts_symbol_map[] = { [sym_undefined] = sym_undefined, [anon_sym_AT] = anon_sym_AT, [anon_sym_static] = anon_sym_static, + [aux_sym_method_definition_token1] = aux_sym_method_definition_token1, [anon_sym_get] = anon_sym_get, [anon_sym_set] = anon_sym_set, [sym_preproc] = sym_preproc, [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_jsx_text] = sym_jsx_text, [sym_program] = sym_program, [sym_export_statement] = sym_export_statement, + [sym_namespace_export] = sym_namespace_export, [sym_export_clause] = sym_export_clause, - [sym__import_export_specifier] = sym__import_export_specifier, + [sym_export_specifier] = sym_export_specifier, + [sym__module_export_name] = sym__module_export_name, [sym_declaration] = sym_declaration, [sym_import] = sym_import, [sym_import_statement] = sym_import_statement, [sym_import_clause] = sym_import_clause, [sym__from_clause] = sym__from_clause, - [sym_namespace_import_export] = sym_namespace_import_export, + [sym_namespace_import] = sym_namespace_import, [sym_named_imports] = sym_named_imports, + [sym_import_specifier] = sym_import_specifier, + [sym_import_attribute] = sym_import_attribute, + [sym_statement] = sym_statement, [sym_expression_statement] = sym_expression_statement, [sym_variable_declaration] = sym_variable_declaration, [sym_lexical_declaration] = sym_lexical_declaration, @@ -712,21 +759,19 @@ static const TSSymbol ts_symbol_map[] = { [sym_array] = sym_array, [sym_array_pattern] = sym_array_pattern, [sym_glimmer_template] = sym_glimmer_template, - [sym_glimmer_opening_tag] = sym_glimmer_opening_tag, - [sym_glimmer_closing_tag] = sym_glimmer_closing_tag, [sym_jsx_element] = sym_jsx_element, - [sym_jsx_fragment] = sym_jsx_fragment, [sym_jsx_expression] = sym_jsx_expression, [sym_jsx_opening_element] = sym_jsx_opening_element, - [sym_nested_identifier] = sym_nested_identifier, + [sym_nested_identifier] = sym_member_expression, [sym_jsx_namespace_name] = sym_jsx_namespace_name, [sym_jsx_closing_element] = sym_jsx_closing_element, [sym_jsx_self_closing_element] = sym_jsx_self_closing_element, [sym_jsx_attribute] = sym_jsx_attribute, + [sym__jsx_string] = sym_string, [sym_class] = sym_class, [sym_class_declaration] = sym_class_declaration, [sym_class_heritage] = sym_class_heritage, - [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, @@ -759,6 +804,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_class_body] = sym_class_body, [sym_field_definition] = sym_field_definition, [sym_formal_parameters] = sym_formal_parameters, + [sym_class_static_block] = sym_class_static_block, [sym_pattern] = sym_pattern, [sym_rest_pattern] = sym_rest_pattern, [sym_method_definition] = sym_method_definition, @@ -779,13 +825,14 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_glimmer_template_repeat1] = aux_sym_glimmer_template_repeat1, [aux_sym_jsx_element_repeat1] = aux_sym_jsx_element_repeat1, [aux_sym_jsx_opening_element_repeat1] = aux_sym_jsx_opening_element_repeat1, + [aux_sym__jsx_string_repeat1] = aux_sym__jsx_string_repeat1, + [aux_sym__jsx_string_repeat2] = aux_sym__jsx_string_repeat2, + [aux_sym_sequence_expression_repeat1] = aux_sym_sequence_expression_repeat1, [aux_sym_string_repeat1] = aux_sym_string_repeat1, [aux_sym_string_repeat2] = aux_sym_string_repeat2, [aux_sym_template_string_repeat1] = aux_sym_template_string_repeat1, [aux_sym_class_body_repeat1] = aux_sym_class_body_repeat1, [aux_sym_formal_parameters_repeat1] = aux_sym_formal_parameters_repeat1, - [alias_sym_import_specifier] = alias_sym_import_specifier, - [alias_sym_namespace_export] = alias_sym_namespace_export, [alias_sym_property_identifier] = alias_sym_property_identifier, [alias_sym_shorthand_property_identifier] = alias_sym_shorthand_property_identifier, [alias_sym_shorthand_property_identifier_pattern] = alias_sym_shorthand_property_identifier_pattern, @@ -817,6 +864,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, [anon_sym_LBRACE] = { .visible = true, .named = false, @@ -829,15 +880,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_as] = { + [anon_sym_import] = { .visible = true, .named = false, }, - [anon_sym_import] = { + [anon_sym_from] = { .visible = true, .named = false, }, - [anon_sym_from] = { + [anon_sym_with] = { .visible = true, .named = false, }, @@ -873,6 +924,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, [anon_sym_RPAREN] = { .visible = true, .named = false, @@ -901,10 +956,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_with] = { - .visible = true, - .named = false, - }, [anon_sym_break] = { .visible = true, .named = false, @@ -925,10 +976,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, [anon_sym_COLON] = { .visible = true, .named = false, @@ -965,13 +1012,17 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [anon_sym_LTtemplate_GT] = { + [sym_glimmer_opening_tag] = { .visible = true, - .named = false, + .named = true, }, - [anon_sym_LT_SLASHtemplate_GT] = { + [sym_glimmer_closing_tag] = { .visible = true, - .named = false, + .named = true, + }, + [sym_html_character_reference] = { + .visible = true, + .named = true, }, [anon_sym_LT] = { .visible = true, @@ -981,22 +1032,38 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { + [sym_jsx_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_DOT] = { .visible = true, .named = false, }, - [sym_jsx_text] = { + [anon_sym_LT_SLASH] = { .visible = true, - .named = true, + .named = false, }, - [sym_jsx_identifier] = { + [anon_sym_SLASH_GT] = { .visible = true, - .named = true, + .named = false, }, - [anon_sym_DOT] = { + [anon_sym_DQUOTE] = { .visible = true, .named = false, }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [sym_unescaped_double_jsx_string_fragment] = { + .visible = true, + .named = true, + }, + [sym_unescaped_single_jsx_string_fragment] = { + .visible = true, + .named = true, + }, [anon_sym_class] = { .visible = true, .named = false, @@ -1129,6 +1196,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, [anon_sym_PERCENT] = { .visible = true, .named = false, @@ -1197,14 +1268,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, [sym_unescaped_double_string_fragment] = { .visible = true, .named = true, @@ -1253,6 +1316,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_meta] = { + .visible = true, + .named = false, + }, [sym_this] = { .visible = true, .named = true, @@ -1285,6 +1352,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_method_definition_token1] = { + .visible = true, + .named = false, + }, [anon_sym_get] = { .visible = true, .named = false, @@ -1302,13 +1373,21 @@ 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_jsx_text] = { + .visible = true, + .named = true, + }, [sym_program] = { .visible = true, .named = true, @@ -1317,14 +1396,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_namespace_export] = { + .visible = true, + .named = true, + }, [sym_export_clause] = { .visible = true, .named = true, }, - [sym__import_export_specifier] = { + [sym_export_specifier] = { .visible = true, .named = true, }, + [sym__module_export_name] = { + .visible = false, + .named = true, + }, [sym_declaration] = { .visible = false, .named = true, @@ -1346,7 +1433,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_namespace_import_export] = { + [sym_namespace_import] = { .visible = true, .named = true, }, @@ -1354,6 +1441,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_import_specifier] = { + .visible = true, + .named = true, + }, + [sym_import_attribute] = { + .visible = true, + .named = true, + }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, [sym_expression_statement] = { .visible = true, .named = true, @@ -1508,22 +1608,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_glimmer_opening_tag] = { - .visible = true, - .named = true, - }, - [sym_glimmer_closing_tag] = { - .visible = true, - .named = true, - }, [sym_jsx_element] = { .visible = true, .named = true, }, - [sym_jsx_fragment] = { - .visible = true, - .named = true, - }, [sym_jsx_expression] = { .visible = true, .named = true, @@ -1552,6 +1640,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__jsx_string] = { + .visible = true, + .named = true, + }, [sym_class] = { .visible = true, .named = true, @@ -1564,7 +1656,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_function] = { + [sym_function_expression] = { .visible = true, .named = true, }, @@ -1696,6 +1788,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_class_static_block] = { + .visible = true, + .named = true, + }, [sym_pattern] = { .visible = false, .named = true, @@ -1777,6 +1873,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__jsx_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__jsx_string_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_sequence_expression_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_string_repeat1] = { .visible = false, .named = false, @@ -1797,14 +1905,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [alias_sym_import_specifier] = { - .visible = true, - .named = true, - }, - [alias_sym_namespace_export] = { - .visible = true, - .named = true, - }, [alias_sym_property_identifier] = { .visible = true, .named = true, @@ -1911,8 +2011,8 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [3] = {.index = 1, .length = 1}, [5] = {.index = 2, .length = 1}, [6] = {.index = 3, .length = 1}, - [7] = {.index = 4, .length = 1}, - [8] = {.index = 5, .length = 2}, + [7] = {.index = 4, .length = 2}, + [8] = {.index = 6, .length = 1}, [9] = {.index = 7, .length = 2}, [10] = {.index = 9, .length = 2}, [11] = {.index = 11, .length = 2}, @@ -1923,32 +2023,32 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [16] = {.index = 20, .length = 2}, [20] = {.index = 22, .length = 1}, [21] = {.index = 23, .length = 2}, - [22] = {.index = 25, .length = 1}, - [23] = {.index = 26, .length = 2}, + [22] = {.index = 25, .length = 2}, + [23] = {.index = 27, .length = 1}, [24] = {.index = 28, .length = 2}, - [25] = {.index = 30, .length = 6}, - [26] = {.index = 36, .length = 2}, + [25] = {.index = 30, .length = 2}, + [26] = {.index = 32, .length = 6}, [27] = {.index = 38, .length = 2}, [28] = {.index = 40, .length = 2}, [29] = {.index = 42, .length = 2}, [30] = {.index = 44, .length = 1}, - [31] = {.index = 45, .length = 1}, - [32] = {.index = 46, .length = 1}, - [33] = {.index = 47, .length = 1}, - [34] = {.index = 48, .length = 1}, - [35] = {.index = 49, .length = 1}, - [36] = {.index = 50, .length = 1}, - [37] = {.index = 51, .length = 2}, - [38] = {.index = 53, .length = 1}, - [39] = {.index = 54, .length = 2}, - [40] = {.index = 56, .length = 2}, - [41] = {.index = 18, .length = 2}, - [42] = {.index = 20, .length = 2}, - [43] = {.index = 58, .length = 3}, - [44] = {.index = 61, .length = 2}, - [45] = {.index = 61, .length = 2}, - [46] = {.index = 63, .length = 3}, - [47] = {.index = 63, .length = 3}, + [31] = {.index = 45, .length = 3}, + [32] = {.index = 48, .length = 1}, + [33] = {.index = 49, .length = 1}, + [34] = {.index = 50, .length = 1}, + [35] = {.index = 51, .length = 1}, + [36] = {.index = 52, .length = 1}, + [37] = {.index = 53, .length = 2}, + [38] = {.index = 55, .length = 1}, + [39] = {.index = 56, .length = 2}, + [40] = {.index = 58, .length = 2}, + [41] = {.index = 60, .length = 1}, + [42] = {.index = 18, .length = 2}, + [43] = {.index = 20, .length = 2}, + [44] = {.index = 61, .length = 3}, + [45] = {.index = 64, .length = 2}, + [46] = {.index = 64, .length = 2}, + [47] = {.index = 66, .length = 3}, [48] = {.index = 66, .length = 3}, [49] = {.index = 69, .length = 3}, [50] = {.index = 72, .length = 2}, @@ -1957,60 +2057,63 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [53] = {.index = 78, .length = 2}, [54] = {.index = 80, .length = 1}, [55] = {.index = 81, .length = 1}, - [56] = {.index = 82, .length = 2}, - [57] = {.index = 80, .length = 1}, - [58] = {.index = 18, .length = 2}, - [59] = {.index = 84, .length = 2}, - [60] = {.index = 86, .length = 3}, - [61] = {.index = 82, .length = 2}, - [62] = {.index = 89, .length = 1}, - [63] = {.index = 90, .length = 3}, - [64] = {.index = 93, .length = 6}, - [65] = {.index = 99, .length = 3}, - [66] = {.index = 102, .length = 2}, - [67] = {.index = 104, .length = 2}, - [68] = {.index = 106, .length = 2}, - [69] = {.index = 108, .length = 1}, - [70] = {.index = 109, .length = 2}, - [71] = {.index = 111, .length = 2}, - [72] = {.index = 113, .length = 2}, - [73] = {.index = 115, .length = 4}, + [56] = {.index = 18, .length = 2}, + [57] = {.index = 82, .length = 2}, + [58] = {.index = 84, .length = 3}, + [59] = {.index = 87, .length = 1}, + [60] = {.index = 88, .length = 3}, + [61] = {.index = 91, .length = 6}, + [62] = {.index = 97, .length = 2}, + [63] = {.index = 99, .length = 3}, + [64] = {.index = 102, .length = 2}, + [65] = {.index = 104, .length = 2}, + [66] = {.index = 106, .length = 1}, + [67] = {.index = 107, .length = 2}, + [68] = {.index = 109, .length = 2}, + [69] = {.index = 111, .length = 2}, + [70] = {.index = 113, .length = 4}, + [71] = {.index = 117, .length = 2}, + [72] = {.index = 119, .length = 2}, + [73] = {.index = 121, .length = 2}, [74] = {.index = 119, .length = 2}, - [75] = {.index = 121, .length = 2}, - [76] = {.index = 123, .length = 2}, - [77] = {.index = 121, .length = 2}, - [78] = {.index = 125, .length = 2}, - [79] = {.index = 127, .length = 3}, - [80] = {.index = 130, .length = 2}, - [81] = {.index = 132, .length = 2}, - [82] = {.index = 134, .length = 3}, - [83] = {.index = 137, .length = 2}, - [84] = {.index = 139, .length = 2}, - [85] = {.index = 141, .length = 4}, - [86] = {.index = 145, .length = 2}, - [87] = {.index = 147, .length = 2}, - [88] = {.index = 149, .length = 2}, - [89] = {.index = 151, .length = 3}, - [90] = {.index = 154, .length = 2}, - [91] = {.index = 156, .length = 3}, - [92] = {.index = 159, .length = 3}, - [93] = {.index = 162, .length = 3}, - [94] = {.index = 165, .length = 1}, - [95] = {.index = 166, .length = 2}, - [96] = {.index = 168, .length = 3}, - [97] = {.index = 171, .length = 4}, - [98] = {.index = 175, .length = 3}, - [99] = {.index = 175, .length = 3}, - [100] = {.index = 178, .length = 3}, - [101] = {.index = 181, .length = 3}, - [102] = {.index = 184, .length = 3}, - [103] = {.index = 187, .length = 4}, - [104] = {.index = 191, .length = 2}, - [105] = {.index = 193, .length = 4}, - [106] = {.index = 197, .length = 4}, - [107] = {.index = 201, .length = 2}, - [108] = {.index = 203, .length = 4}, - [109] = {.index = 207, .length = 5}, + [75] = {.index = 123, .length = 2}, + [76] = {.index = 125, .length = 3}, + [77] = {.index = 128, .length = 2}, + [78] = {.index = 130, .length = 2}, + [79] = {.index = 132, .length = 2}, + [80] = {.index = 134, .length = 3}, + [81] = {.index = 137, .length = 2}, + [82] = {.index = 139, .length = 2}, + [83] = {.index = 141, .length = 4}, + [84] = {.index = 145, .length = 2}, + [85] = {.index = 147, .length = 2}, + [86] = {.index = 149, .length = 3}, + [87] = {.index = 152, .length = 2}, + [88] = {.index = 154, .length = 3}, + [89] = {.index = 157, .length = 3}, + [90] = {.index = 160, .length = 3}, + [91] = {.index = 163, .length = 2}, + [92] = {.index = 165, .length = 3}, + [93] = {.index = 168, .length = 4}, + [94] = {.index = 172, .length = 3}, + [95] = {.index = 172, .length = 3}, + [96] = {.index = 175, .length = 3}, + [97] = {.index = 178, .length = 3}, + [98] = {.index = 181, .length = 3}, + [99] = {.index = 184, .length = 4}, + [100] = {.index = 188, .length = 2}, + [101] = {.index = 190, .length = 4}, + [102] = {.index = 194, .length = 4}, + [103] = {.index = 198, .length = 4}, + [104] = {.index = 202, .length = 3}, + [105] = {.index = 205, .length = 2}, + [106] = {.index = 207, .length = 4}, + [107] = {.index = 211, .length = 5}, + [108] = {.index = 216, .length = 4}, + [109] = {.index = 220, .length = 5}, + [110] = {.index = 225, .length = 4}, + [111] = {.index = 229, .length = 4}, + [112] = {.index = 233, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2023,19 +2126,19 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [3] = {field_body, 1}, [4] = + {field_close_tag, 1}, + {field_open_tag, 0}, + [6] = {field_constructor, 1}, - [5] = + [7] = {field_argument, 1}, {field_operator, 0}, - [7] = - {field_argument, 0}, - {field_operator, 1}, [9] = {field_arguments, 1}, {field_function, 0}, [11] = - {field_close_tag, 1}, - {field_open_tag, 0}, + {field_argument, 0}, + {field_operator, 1}, [13] = {field_decorator, 0, .inherited = true}, {field_decorator, 1, .inherited = true}, @@ -2053,79 +2156,79 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [22] = {field_source, 1}, [23] = + {field_body, 2}, + {field_object, 1}, + [25] = {field_name, 0}, {field_value, 1, .inherited = true}, - [25] = + [27] = {field_kind, 0}, - [26] = + [28] = {field_condition, 1}, {field_consequence, 2}, - [28] = + [30] = {field_body, 2}, {field_value, 1}, - [30] = + [32] = {field_body, 2}, {field_kind, 1, .inherited = true}, {field_left, 1, .inherited = true}, {field_operator, 1, .inherited = true}, {field_right, 1, .inherited = true}, {field_value, 1, .inherited = true}, - [36] = + [38] = {field_body, 2}, {field_condition, 1}, - [38] = + [40] = {field_body, 1}, {field_handler, 2}, - [40] = + [42] = {field_body, 1}, {field_finalizer, 2}, - [42] = - {field_body, 2}, - {field_object, 1}, [44] = {field_label, 1}, [45] = + {field_close_tag, 2}, + {field_content, 1}, + {field_open_tag, 0}, + [48] = {field_name, 1}, - [46] = + [49] = {field_attribute, 0}, - [47] = - {field_pattern, 1}, - [48] = + [50] = {field_template, 0}, - [49] = + [51] = {field_member, 0}, - [50] = + [52] = {field_property, 0}, - [51] = + [53] = {field_body, 2}, {field_name, 1}, - [53] = + [55] = {field_body, 2}, - [54] = + [56] = {field_body, 2}, {field_parameters, 1}, - [56] = + [58] = {field_arguments, 2}, {field_constructor, 1}, - [58] = + [60] = + {field_pattern, 1}, + [61] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [61] = + [64] = {field_object, 0}, {field_property, 2}, - [63] = + [66] = {field_object, 0}, {field_optional_chain, 1}, {field_property, 2}, - [66] = + [69] = {field_arguments, 2}, {field_function, 0}, {field_optional_chain, 1}, - [69] = - {field_close_tag, 2}, - {field_content, 1}, - {field_open_tag, 0}, [72] = {field_close_tag, 2}, {field_open_tag, 0}, @@ -2143,28 +2246,28 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [81] = {field_value, 2}, [82] = - {field_alias, 1, .inherited = true}, - {field_name, 1, .inherited = true}, - [84] = {field_key, 0}, {field_value, 2}, - [86] = + [84] = {field_body, 2}, {field_name, 0}, {field_parameters, 1}, - [89] = + [87] = {field_value, 1}, - [90] = + [88] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [93] = + [91] = {field_body, 3}, {field_kind, 2, .inherited = true}, {field_left, 2, .inherited = true}, {field_operator, 2, .inherited = true}, {field_right, 2, .inherited = true}, {field_value, 2, .inherited = true}, + [97] = + {field_body, 1}, + {field_condition, 3}, [99] = {field_body, 1}, {field_finalizer, 3}, @@ -2176,40 +2279,40 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_attribute, 0, .inherited = true}, {field_attribute, 1, .inherited = true}, [106] = - {field_flags, 3}, - {field_pattern, 1}, - [108] = {field_property, 1}, - [109] = + [107] = {field_property, 0}, {field_value, 1, .inherited = true}, - [111] = + [109] = {field_decorator, 0, .inherited = true}, {field_property, 1}, - [113] = + [111] = {field_member, 1, .inherited = true}, {field_template, 1, .inherited = true}, - [115] = + [113] = {field_member, 0, .inherited = true}, {field_member, 1, .inherited = true}, {field_template, 0, .inherited = true}, {field_template, 1, .inherited = true}, - [119] = + [117] = {field_body, 3}, {field_name, 1}, - [121] = + [119] = {field_body, 3}, {field_parameter, 1}, - [123] = + [121] = {field_body, 3}, {field_parameters, 2}, - [125] = + [123] = {field_body, 3}, {field_parameters, 1}, - [127] = + [125] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, + [128] = + {field_flags, 3}, + {field_pattern, 1}, [130] = {field_index, 2}, {field_object, 0}, @@ -2232,95 +2335,126 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 1}, {field_parameters, 2}, [145] = - {field_body, 1}, - {field_condition, 3}, - [147] = {field_property, 1}, {field_value, 2, .inherited = true}, - [149] = + [147] = {field_decorator, 0, .inherited = true}, {field_property, 2}, - [151] = + [149] = {field_decorator, 0, .inherited = true}, {field_property, 1}, {field_value, 2, .inherited = true}, - [154] = + [152] = {field_body, 4}, {field_parameters, 3}, - [156] = + [154] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [159] = + [157] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [162] = + [160] = {field_index, 3}, {field_object, 0}, {field_optional_chain, 1}, - [165] = - {field_name, 2}, - [166] = + [163] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [168] = + [165] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [171] = + [168] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, {field_parameters, 3}, - [175] = + [172] = {field_left, 1}, {field_operator, 2}, {field_right, 3}, - [178] = + [175] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [181] = + [178] = {field_decorator, 0, .inherited = true}, {field_property, 2}, {field_value, 3, .inherited = true}, - [184] = + [181] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [187] = + [184] = {field_body, 5}, {field_decorator, 0, .inherited = true}, {field_name, 3}, {field_parameters, 4}, - [191] = + [188] = {field_body, 3}, {field_value, 1}, - [193] = + [190] = {field_kind, 1}, {field_left, 2}, {field_operator, 3}, {field_right, 4}, - [197] = + [194] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [201] = + [198] = + {field_body, 6}, + {field_condition, 3}, + {field_condition, 4}, + {field_initializer, 2}, + [202] = + {field_body, 6}, + {field_condition, 4}, + {field_initializer, 2}, + [205] = {field_body, 4}, {field_parameter, 2}, - [203] = + [207] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_parameters, 5}, - [207] = + [211] = {field_kind, 1}, {field_left, 2}, {field_operator, 4}, {field_right, 5}, {field_value, 3, .inherited = true}, + [216] = + {field_kind, 1}, + {field_left, 2}, + {field_operator, 4}, + {field_right, 5}, + [220] = + {field_body, 7}, + {field_condition, 3}, + {field_condition, 4}, + {field_increment, 5}, + {field_initializer, 2}, + [225] = + {field_body, 7}, + {field_condition, 4}, + {field_increment, 5}, + {field_initializer, 2}, + [229] = + {field_body, 7}, + {field_condition, 4}, + {field_condition, 5}, + {field_initializer, 2}, + [233] = + {field_body, 8}, + {field_condition, 4}, + {field_condition, 5}, + {field_increment, 6}, + {field_initializer, 2}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -2352,36 +2486,24 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [30] = { [1] = alias_sym_statement_identifier, }, - [44] = { + [45] = { [2] = alias_sym_property_identifier, }, - [46] = { + [47] = { [2] = alias_sym_property_identifier, }, - [57] = { - [1] = alias_sym_namespace_export, - }, - [58] = { + [56] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [61] = { - [1] = alias_sym_import_specifier, - }, - [75] = { + [72] = { [1] = sym_identifier, }, - [98] = { + [94] = { [1] = sym_identifier, }, }; static const uint16_t ts_non_terminal_alias_map[] = { - sym__import_export_specifier, 2, - sym__import_export_specifier, - alias_sym_import_specifier, - sym_namespace_import_export, 2, - sym_namespace_import_export, - alias_sym_namespace_export, 0, }; @@ -2402,87 +2524,87 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [13] = 13, [14] = 14, [15] = 12, - [16] = 16, + [16] = 12, [17] = 14, [18] = 12, - [19] = 12, - [20] = 14, - [21] = 14, + [19] = 14, + [20] = 20, + [21] = 12, [22] = 14, - [23] = 12, - [24] = 24, - [25] = 12, - [26] = 14, + [23] = 23, + [24] = 14, + [25] = 14, + [26] = 12, [27] = 27, [28] = 28, [29] = 29, - [30] = 27, + [30] = 30, [31] = 31, [32] = 32, [33] = 33, - [34] = 34, + [34] = 27, [35] = 35, [36] = 36, - [37] = 37, - [38] = 28, - [39] = 31, - [40] = 34, - [41] = 37, - [42] = 32, - [43] = 33, - [44] = 29, - [45] = 35, - [46] = 46, - [47] = 46, - [48] = 46, - [49] = 46, - [50] = 46, - [51] = 51, - [52] = 52, - [53] = 52, - [54] = 54, - [55] = 55, - [56] = 52, - [57] = 52, + [37] = 30, + [38] = 38, + [39] = 39, + [40] = 36, + [41] = 41, + [42] = 42, + [43] = 28, + [44] = 38, + [45] = 45, + [46] = 29, + [47] = 47, + [48] = 48, + [49] = 33, + [50] = 42, + [51] = 41, + [52] = 32, + [53] = 39, + [54] = 47, + [55] = 48, + [56] = 31, + [57] = 35, [58] = 58, - [59] = 59, - [60] = 60, - [61] = 61, - [62] = 62, - [63] = 54, + [59] = 58, + [60] = 58, + [61] = 58, + [62] = 58, + [63] = 63, [64] = 64, [65] = 65, - [66] = 52, - [67] = 59, + [66] = 66, + [67] = 67, [68] = 68, - [69] = 68, + [69] = 69, [70] = 70, [71] = 71, [72] = 72, - [73] = 52, + [73] = 73, [74] = 74, [75] = 75, [76] = 76, [77] = 77, [78] = 78, - [79] = 52, - [80] = 80, - [81] = 81, - [82] = 81, - [83] = 83, - [84] = 84, + [79] = 79, + [80] = 78, + [81] = 78, + [82] = 78, + [83] = 78, + [84] = 78, [85] = 85, - [86] = 84, + [86] = 85, [87] = 87, - [88] = 88, + [88] = 87, [89] = 89, - [90] = 89, + [90] = 90, [91] = 91, - [92] = 89, - [93] = 93, - [94] = 94, + [92] = 92, + [93] = 89, + [94] = 91, [95] = 95, - [96] = 94, + [96] = 95, [97] = 97, [98] = 98, [99] = 99, @@ -2490,249 +2612,249 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [101] = 101, [102] = 102, [103] = 103, - [104] = 103, + [104] = 99, [105] = 105, [106] = 106, [107] = 107, [108] = 108, - [109] = 106, - [110] = 106, + [109] = 108, + [110] = 110, [111] = 111, [112] = 111, [113] = 113, - [114] = 114, + [114] = 110, [115] = 115, [116] = 116, - [117] = 117, - [118] = 113, - [119] = 111, - [120] = 120, - [121] = 107, - [122] = 106, + [117] = 115, + [118] = 118, + [119] = 119, + [120] = 118, + [121] = 116, + [122] = 119, [123] = 123, [124] = 124, [125] = 125, - [126] = 126, - [127] = 120, - [128] = 108, - [129] = 113, - [130] = 125, - [131] = 120, - [132] = 105, - [133] = 124, - [134] = 124, - [135] = 125, - [136] = 125, - [137] = 124, - [138] = 106, - [139] = 113, - [140] = 105, - [141] = 120, + [126] = 124, + [127] = 127, + [128] = 128, + [129] = 128, + [130] = 127, + [131] = 124, + [132] = 132, + [133] = 133, + [134] = 134, + [135] = 128, + [136] = 124, + [137] = 127, + [138] = 128, + [139] = 127, + [140] = 125, + [141] = 124, [142] = 142, - [143] = 142, - [144] = 123, - [145] = 105, - [146] = 105, - [147] = 113, - [148] = 111, - [149] = 111, + [143] = 133, + [144] = 144, + [145] = 134, + [146] = 144, + [147] = 134, + [148] = 148, + [149] = 134, [150] = 150, - [151] = 120, - [152] = 152, - [153] = 124, + [151] = 132, + [152] = 144, + [153] = 153, [154] = 154, - [155] = 125, + [155] = 155, [156] = 156, [157] = 157, - [158] = 158, + [158] = 125, [159] = 159, - [160] = 160, - [161] = 161, - [162] = 162, - [163] = 163, - [164] = 164, - [165] = 165, - [166] = 165, - [167] = 162, - [168] = 160, - [169] = 159, - [170] = 158, - [171] = 171, - [172] = 172, - [173] = 173, + [160] = 144, + [161] = 144, + [162] = 132, + [163] = 128, + [164] = 150, + [165] = 134, + [166] = 132, + [167] = 127, + [168] = 168, + [169] = 169, + [170] = 132, + [171] = 125, + [172] = 125, + [173] = 148, [174] = 174, [175] = 175, [176] = 176, [177] = 177, [178] = 178, - [179] = 179, - [180] = 164, + [179] = 174, + [180] = 180, [181] = 181, - [182] = 163, - [183] = 157, - [184] = 164, + [182] = 182, + [183] = 183, + [184] = 184, [185] = 185, [186] = 186, [187] = 187, - [188] = 157, + [188] = 188, [189] = 189, - [190] = 181, + [190] = 190, [191] = 191, [192] = 192, - [193] = 157, - [194] = 164, - [195] = 156, - [196] = 178, - [197] = 197, - [198] = 176, - [199] = 175, - [200] = 174, - [201] = 173, - [202] = 172, - [203] = 171, - [204] = 158, - [205] = 159, - [206] = 160, - [207] = 162, - [208] = 192, - [209] = 185, - [210] = 172, - [211] = 191, - [212] = 173, - [213] = 174, - [214] = 175, - [215] = 165, - [216] = 176, - [217] = 178, - [218] = 165, - [219] = 156, - [220] = 181, - [221] = 221, - [222] = 162, - [223] = 163, - [224] = 160, - [225] = 159, - [226] = 189, - [227] = 227, - [228] = 158, - [229] = 191, - [230] = 192, - [231] = 231, - [232] = 171, - [233] = 172, - [234] = 197, - [235] = 173, - [236] = 185, - [237] = 174, - [238] = 175, - [239] = 164, - [240] = 176, - [241] = 157, - [242] = 178, - [243] = 197, - [244] = 171, - [245] = 156, - [246] = 181, - [247] = 247, - [248] = 248, - [249] = 197, - [250] = 192, - [251] = 191, - [252] = 161, - [253] = 253, - [254] = 189, - [255] = 197, - [256] = 192, - [257] = 165, - [258] = 162, - [259] = 160, - [260] = 159, - [261] = 158, - [262] = 171, - [263] = 163, - [264] = 172, - [265] = 173, - [266] = 174, - [267] = 175, - [268] = 176, - [269] = 189, - [270] = 163, - [271] = 181, - [272] = 178, - [273] = 191, - [274] = 189, - [275] = 156, - [276] = 276, - [277] = 277, - [278] = 277, - [279] = 277, - [280] = 280, - [281] = 280, - [282] = 282, - [283] = 282, - [284] = 282, + [193] = 178, + [194] = 194, + [195] = 176, + [196] = 177, + [197] = 181, + [198] = 194, + [199] = 192, + [200] = 176, + [201] = 201, + [202] = 176, + [203] = 189, + [204] = 204, + [205] = 178, + [206] = 177, + [207] = 204, + [208] = 188, + [209] = 209, + [210] = 187, + [211] = 182, + [212] = 174, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 175, + [217] = 201, + [218] = 191, + [219] = 184, + [220] = 175, + [221] = 177, + [222] = 222, + [223] = 194, + [224] = 192, + [225] = 181, + [226] = 226, + [227] = 226, + [228] = 228, + [229] = 213, + [230] = 188, + [231] = 215, + [232] = 214, + [233] = 209, + [234] = 228, + [235] = 222, + [236] = 194, + [237] = 192, + [238] = 187, + [239] = 182, + [240] = 174, + [241] = 228, + [242] = 213, + [243] = 214, + [244] = 178, + [245] = 215, + [246] = 188, + [247] = 176, + [248] = 181, + [249] = 222, + [250] = 178, + [251] = 215, + [252] = 177, + [253] = 204, + [254] = 226, + [255] = 222, + [256] = 184, + [257] = 257, + [258] = 204, + [259] = 222, + [260] = 194, + [261] = 261, + [262] = 187, + [263] = 214, + [264] = 201, + [265] = 265, + [266] = 266, + [267] = 192, + [268] = 191, + [269] = 204, + [270] = 189, + [271] = 188, + [272] = 191, + [273] = 228, + [274] = 187, + [275] = 182, + [276] = 182, + [277] = 213, + [278] = 226, + [279] = 214, + [280] = 215, + [281] = 175, + [282] = 201, + [283] = 191, + [284] = 181, [285] = 285, - [286] = 286, - [287] = 286, - [288] = 285, - [289] = 285, - [290] = 286, - [291] = 76, - [292] = 292, - [293] = 58, - [294] = 60, - [295] = 295, - [296] = 295, - [297] = 74, - [298] = 295, - [299] = 295, + [286] = 184, + [287] = 184, + [288] = 226, + [289] = 289, + [290] = 175, + [291] = 291, + [292] = 174, + [293] = 261, + [294] = 201, + [295] = 213, + [296] = 228, + [297] = 297, + [298] = 297, + [299] = 297, [300] = 300, - [301] = 301, + [301] = 300, [302] = 302, - [303] = 295, + [303] = 302, [304] = 302, - [305] = 295, + [305] = 305, [306] = 306, - [307] = 307, - [308] = 307, - [309] = 309, - [310] = 310, - [311] = 76, - [312] = 300, - [313] = 313, + [307] = 306, + [308] = 305, + [309] = 305, + [310] = 306, + [311] = 311, + [312] = 311, + [313] = 72, [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, - [318] = 318, + [315] = 64, + [316] = 69, + [317] = 73, + [318] = 311, [319] = 319, - [320] = 60, - [321] = 58, - [322] = 74, - [323] = 62, + [320] = 320, + [321] = 321, + [322] = 322, + [323] = 311, [324] = 324, - [325] = 64, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, - [331] = 331, - [332] = 332, + [325] = 321, + [326] = 322, + [327] = 322, + [328] = 311, + [329] = 311, + [330] = 319, + [331] = 73, + [332] = 74, [333] = 333, - [334] = 334, - [335] = 335, + [334] = 324, + [335] = 69, [336] = 336, - [337] = 337, + [337] = 72, [338] = 338, - [339] = 339, + [339] = 64, [340] = 340, [341] = 341, [342] = 342, [343] = 343, [344] = 344, [345] = 345, - [346] = 346, + [346] = 76, [347] = 347, [348] = 348, [349] = 349, @@ -2762,9 +2884,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [373] = 373, [374] = 374, [375] = 375, - [376] = 376, + [376] = 356, [377] = 377, - [378] = 378, + [378] = 319, [379] = 379, [380] = 380, [381] = 381, @@ -2777,13 +2899,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [388] = 388, [389] = 389, [390] = 390, - [391] = 302, + [391] = 391, [392] = 392, [393] = 393, [394] = 394, [395] = 395, [396] = 396, - [397] = 397, + [397] = 311, [398] = 398, [399] = 399, [400] = 400, @@ -2804,122 +2926,122 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [415] = 415, [416] = 416, [417] = 417, - [418] = 295, + [418] = 418, [419] = 419, [420] = 420, [421] = 421, [422] = 422, - [423] = 423, - [424] = 424, - [425] = 360, - [426] = 426, - [427] = 301, - [428] = 295, - [429] = 295, + [423] = 311, + [424] = 311, + [425] = 349, + [426] = 422, + [427] = 427, + [428] = 428, + [429] = 429, [430] = 430, - [431] = 430, - [432] = 430, - [433] = 433, + [431] = 431, + [432] = 432, + [433] = 348, [434] = 434, [435] = 435, [436] = 436, - [437] = 437, - [438] = 438, + [437] = 434, + [438] = 434, [439] = 439, [440] = 440, - [441] = 435, - [442] = 442, - [443] = 443, + [441] = 441, + [442] = 441, + [443] = 348, [444] = 444, [445] = 445, [446] = 446, [447] = 447, [448] = 448, - [449] = 444, + [449] = 449, [450] = 450, - [451] = 443, + [451] = 451, [452] = 452, - [453] = 444, - [454] = 444, - [455] = 435, - [456] = 443, - [457] = 444, - [458] = 458, - [459] = 444, - [460] = 436, - [461] = 437, - [462] = 438, - [463] = 439, - [464] = 443, - [465] = 465, - [466] = 443, + [453] = 449, + [454] = 435, + [455] = 441, + [456] = 449, + [457] = 430, + [458] = 431, + [459] = 429, + [460] = 439, + [461] = 348, + [462] = 441, + [463] = 463, + [464] = 464, + [465] = 436, + [466] = 466, [467] = 467, - [468] = 468, - [469] = 433, - [470] = 434, + [468] = 435, + [469] = 463, + [470] = 449, [471] = 471, - [472] = 471, - [473] = 440, - [474] = 474, - [475] = 440, - [476] = 476, - [477] = 476, - [478] = 478, - [479] = 478, - [480] = 468, - [481] = 443, - [482] = 440, + [472] = 472, + [473] = 449, + [474] = 472, + [475] = 441, + [476] = 464, + [477] = 471, + [478] = 432, + [479] = 449, + [480] = 441, + [481] = 481, + [482] = 467, [483] = 483, - [484] = 484, - [485] = 484, - [486] = 440, - [487] = 487, - [488] = 467, - [489] = 458, - [490] = 444, - [491] = 487, - [492] = 468, - [493] = 478, - [494] = 443, - [495] = 443, - [496] = 443, - [497] = 465, - [498] = 444, - [499] = 444, - [500] = 484, - [501] = 474, - [502] = 440, - [503] = 483, - [504] = 504, + [484] = 435, + [485] = 466, + [486] = 486, + [487] = 483, + [488] = 488, + [489] = 435, + [490] = 481, + [491] = 471, + [492] = 441, + [493] = 449, + [494] = 494, + [495] = 472, + [496] = 483, + [497] = 488, + [498] = 441, + [499] = 441, + [500] = 449, + [501] = 486, + [502] = 449, + [503] = 494, + [504] = 435, [505] = 505, [506] = 506, [507] = 507, - [508] = 51, + [508] = 63, [509] = 509, [510] = 510, - [511] = 511, - [512] = 512, + [511] = 72, + [512] = 395, [513] = 513, - [514] = 58, + [514] = 64, [515] = 515, - [516] = 76, + [516] = 516, [517] = 517, [518] = 518, [519] = 519, - [520] = 520, - [521] = 507, - [522] = 506, + [520] = 69, + [521] = 521, + [522] = 522, [523] = 523, [524] = 76, [525] = 525, [526] = 526, [527] = 527, [528] = 528, - [529] = 74, + [529] = 529, [530] = 530, [531] = 531, - [532] = 532, - [533] = 533, + [532] = 421, + [533] = 396, [534] = 534, [535] = 535, [536] = 536, @@ -2933,26 +3055,26 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [544] = 544, [545] = 545, [546] = 546, - [547] = 505, + [547] = 547, [548] = 548, [549] = 549, [550] = 550, [551] = 551, [552] = 552, [553] = 553, - [554] = 60, + [554] = 554, [555] = 555, [556] = 556, [557] = 557, - [558] = 58, + [558] = 366, [559] = 559, - [560] = 560, - [561] = 561, + [560] = 73, + [561] = 360, [562] = 562, - [563] = 64, + [563] = 563, [564] = 564, [565] = 565, - [566] = 566, + [566] = 74, [567] = 567, [568] = 568, [569] = 569, @@ -2966,18 +3088,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [577] = 577, [578] = 578, [579] = 579, - [580] = 64, + [580] = 580, [581] = 581, [582] = 582, - [583] = 62, + [583] = 583, [584] = 584, [585] = 585, [586] = 586, [587] = 587, [588] = 588, [589] = 589, - [590] = 74, - [591] = 62, + [590] = 590, + [591] = 591, [592] = 592, [593] = 593, [594] = 594, @@ -2987,320 +3109,320 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [598] = 598, [599] = 599, [600] = 600, - [601] = 60, + [601] = 601, [602] = 602, [603] = 603, [604] = 604, [605] = 605, - [606] = 606, - [607] = 607, - [608] = 608, - [609] = 609, - [610] = 610, - [611] = 611, - [612] = 612, - [613] = 598, - [614] = 533, - [615] = 533, - [616] = 527, - [617] = 586, - [618] = 542, - [619] = 548, - [620] = 620, - [621] = 542, - [622] = 549, - [623] = 598, - [624] = 51, - [625] = 562, - [626] = 557, - [627] = 544, - [628] = 578, - [629] = 629, - [630] = 527, - [631] = 549, - [632] = 550, - [633] = 550, - [634] = 515, - [635] = 532, - [636] = 51, - [637] = 551, - [638] = 557, - [639] = 564, - [640] = 566, - [641] = 586, - [642] = 569, - [643] = 570, - [644] = 551, - [645] = 548, - [646] = 589, - [647] = 568, - [648] = 605, - [649] = 544, - [650] = 564, - [651] = 566, - [652] = 568, - [653] = 513, - [654] = 515, - [655] = 510, - [656] = 569, - [657] = 530, - [658] = 658, - [659] = 511, - [660] = 570, - [661] = 605, - [662] = 612, - [663] = 612, - [664] = 611, - [665] = 518, - [666] = 562, - [667] = 530, - [668] = 611, - [669] = 510, - [670] = 518, - [671] = 513, - [672] = 532, - [673] = 673, - [674] = 512, + [606] = 76, + [607] = 74, + [608] = 505, + [609] = 551, + [610] = 541, + [611] = 513, + [612] = 73, + [613] = 506, + [614] = 507, + [615] = 69, + [616] = 72, + [617] = 64, + [618] = 570, + [619] = 619, + [620] = 564, + [621] = 538, + [622] = 538, + [623] = 567, + [624] = 567, + [625] = 596, + [626] = 529, + [627] = 596, + [628] = 555, + [629] = 599, + [630] = 601, + [631] = 543, + [632] = 594, + [633] = 536, + [634] = 586, + [635] = 546, + [636] = 601, + [637] = 637, + [638] = 534, + [639] = 562, + [640] = 539, + [641] = 583, + [642] = 552, + [643] = 643, + [644] = 542, + [645] = 513, + [646] = 599, + [647] = 571, + [648] = 570, + [649] = 521, + [650] = 63, + [651] = 531, + [652] = 523, + [653] = 527, + [654] = 546, + [655] = 531, + [656] = 527, + [657] = 529, + [658] = 543, + [659] = 542, + [660] = 534, + [661] = 586, + [662] = 555, + [663] = 563, + [664] = 664, + [665] = 665, + [666] = 523, + [667] = 536, + [668] = 562, + [669] = 63, + [670] = 521, + [671] = 509, + [672] = 541, + [673] = 583, + [674] = 571, [675] = 675, - [676] = 578, - [677] = 509, + [676] = 676, + [677] = 510, [678] = 603, - [679] = 679, - [680] = 511, - [681] = 584, - [682] = 556, - [683] = 545, - [684] = 565, - [685] = 685, - [686] = 517, - [687] = 687, - [688] = 78, - [689] = 602, - [690] = 72, - [691] = 691, - [692] = 596, - [693] = 588, - [694] = 520, - [695] = 535, - [696] = 585, - [697] = 559, - [698] = 525, + [679] = 564, + [680] = 552, + [681] = 539, + [682] = 682, + [683] = 551, + [684] = 684, + [685] = 563, + [686] = 605, + [687] = 573, + [688] = 688, + [689] = 600, + [690] = 554, + [691] = 587, + [692] = 589, + [693] = 693, + [694] = 694, + [695] = 695, + [696] = 557, + [697] = 697, + [698] = 698, [699] = 699, - [700] = 528, - [701] = 55, - [702] = 513, - [703] = 536, - [704] = 704, - [705] = 534, - [706] = 706, - [707] = 540, - [708] = 541, - [709] = 61, - [710] = 599, + [700] = 700, + [701] = 694, + [702] = 551, + [703] = 688, + [704] = 66, + [705] = 705, + [706] = 71, + [707] = 516, + [708] = 535, + [709] = 513, + [710] = 576, [711] = 711, - [712] = 606, - [713] = 658, - [714] = 582, - [715] = 609, - [716] = 716, - [717] = 587, - [718] = 513, - [719] = 515, - [720] = 65, - [721] = 531, - [722] = 572, - [723] = 511, - [724] = 553, - [725] = 526, - [726] = 594, + [712] = 712, + [713] = 572, + [714] = 714, + [715] = 715, + [716] = 541, + [717] = 545, + [718] = 579, + [719] = 537, + [720] = 565, + [721] = 721, + [722] = 694, + [723] = 723, + [724] = 724, + [725] = 570, + [726] = 726, [727] = 727, - [728] = 727, - [729] = 546, - [730] = 600, - [731] = 543, - [732] = 555, - [733] = 510, - [734] = 552, - [735] = 604, - [736] = 610, - [737] = 711, - [738] = 572, - [739] = 510, - [740] = 704, - [741] = 597, - [742] = 742, - [743] = 537, - [744] = 608, - [745] = 607, - [746] = 560, - [747] = 519, - [748] = 71, - [749] = 567, - [750] = 511, - [751] = 70, - [752] = 515, - [753] = 561, - [754] = 573, - [755] = 574, - [756] = 575, - [757] = 576, - [758] = 571, - [759] = 523, - [760] = 539, - [761] = 711, - [762] = 577, - [763] = 579, - [764] = 581, - [765] = 77, - [766] = 538, - [767] = 592, - [768] = 595, - [769] = 593, - [770] = 562, - [771] = 568, - [772] = 772, - [773] = 773, - [774] = 774, - [775] = 548, - [776] = 776, - [777] = 542, - [778] = 776, - [779] = 776, - [780] = 533, - [781] = 578, - [782] = 544, - [783] = 783, - [784] = 784, - [785] = 785, + [728] = 726, + [729] = 697, + [730] = 730, + [731] = 698, + [732] = 569, + [733] = 733, + [734] = 715, + [735] = 588, + [736] = 602, + [737] = 604, + [738] = 730, + [739] = 575, + [740] = 595, + [741] = 553, + [742] = 578, + [743] = 556, + [744] = 540, + [745] = 577, + [746] = 699, + [747] = 584, + [748] = 705, + [749] = 513, + [750] = 530, + [751] = 598, + [752] = 67, + [753] = 597, + [754] = 515, + [755] = 593, + [756] = 711, + [757] = 70, + [758] = 548, + [759] = 759, + [760] = 77, + [761] = 559, + [762] = 544, + [763] = 568, + [764] = 68, + [765] = 75, + [766] = 574, + [767] = 767, + [768] = 705, + [769] = 517, + [770] = 549, + [771] = 518, + [772] = 714, + [773] = 519, + [774] = 581, + [775] = 592, + [776] = 664, + [777] = 550, + [778] = 778, + [779] = 525, + [780] = 517, + [781] = 547, + [782] = 580, + [783] = 526, + [784] = 65, + [785] = 582, [786] = 786, - [787] = 787, - [788] = 788, - [789] = 564, - [790] = 785, - [791] = 598, - [792] = 792, - [793] = 793, - [794] = 549, - [795] = 776, - [796] = 796, - [797] = 586, - [798] = 550, - [799] = 687, - [800] = 530, - [801] = 518, - [802] = 611, - [803] = 783, - [804] = 804, - [805] = 805, - [806] = 612, - [807] = 773, - [808] = 551, - [809] = 605, - [810] = 570, - [811] = 569, - [812] = 527, - [813] = 557, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 566, - [818] = 818, - [819] = 532, - [820] = 772, - [821] = 532, - [822] = 549, - [823] = 568, + [787] = 522, + [788] = 693, + [789] = 585, + [790] = 790, + [791] = 790, + [792] = 590, + [793] = 694, + [794] = 733, + [795] = 591, + [796] = 528, + [797] = 797, + [798] = 538, + [799] = 567, + [800] = 596, + [801] = 601, + [802] = 586, + [803] = 534, + [804] = 539, + [805] = 552, + [806] = 599, + [807] = 521, + [808] = 529, + [809] = 523, + [810] = 527, + [811] = 531, + [812] = 542, + [813] = 555, + [814] = 563, + [815] = 536, + [816] = 562, + [817] = 571, + [818] = 583, + [819] = 564, + [820] = 543, + [821] = 821, + [822] = 546, + [823] = 823, [824] = 824, - [825] = 578, - [826] = 544, - [827] = 824, - [828] = 598, - [829] = 586, - [830] = 527, - [831] = 533, - [832] = 542, - [833] = 548, - [834] = 727, - [835] = 658, - [836] = 550, - [837] = 551, - [838] = 557, - [839] = 564, - [840] = 824, - [841] = 824, - [842] = 566, - [843] = 569, + [825] = 551, + [826] = 541, + [827] = 723, + [828] = 570, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 555, + [835] = 551, + [836] = 833, + [837] = 541, + [838] = 564, + [839] = 833, + [840] = 546, + [841] = 583, + [842] = 562, + [843] = 543, [844] = 844, - [845] = 845, - [846] = 570, - [847] = 605, - [848] = 511, - [849] = 845, - [850] = 824, - [851] = 612, - [852] = 530, - [853] = 562, - [854] = 515, - [855] = 611, - [856] = 518, - [857] = 513, - [858] = 858, - [859] = 685, - [860] = 858, - [861] = 513, - [862] = 515, - [863] = 572, - [864] = 510, - [865] = 511, - [866] = 866, - [867] = 866, - [868] = 866, - [869] = 866, - [870] = 866, - [871] = 866, - [872] = 866, - [873] = 873, - [874] = 874, - [875] = 875, - [876] = 874, - [877] = 877, - [878] = 878, - [879] = 875, - [880] = 877, - [881] = 877, - [882] = 877, - [883] = 874, - [884] = 874, + [845] = 539, + [846] = 552, + [847] = 599, + [848] = 536, + [849] = 849, + [850] = 529, + [851] = 833, + [852] = 521, + [853] = 538, + [854] = 523, + [855] = 844, + [856] = 664, + [857] = 571, + [858] = 534, + [859] = 833, + [860] = 563, + [861] = 567, + [862] = 586, + [863] = 601, + [864] = 570, + [865] = 527, + [866] = 790, + [867] = 542, + [868] = 531, + [869] = 596, + [870] = 517, + [871] = 871, + [872] = 872, + [873] = 871, + [874] = 871, + [875] = 872, + [876] = 823, + [877] = 871, + [878] = 871, + [879] = 871, + [880] = 513, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 883, [885] = 885, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 887, - [890] = 888, - [891] = 888, - [892] = 888, - [893] = 887, - [894] = 887, - [895] = 887, - [896] = 888, - [897] = 887, - [898] = 888, - [899] = 888, - [900] = 887, - [901] = 901, - [902] = 901, - [903] = 901, - [904] = 901, - [905] = 901, - [906] = 901, - [907] = 901, + [886] = 885, + [887] = 883, + [888] = 883, + [889] = 885, + [890] = 885, + [891] = 891, + [892] = 892, + [893] = 893, + [894] = 892, + [895] = 895, + [896] = 896, + [897] = 897, + [898] = 897, + [899] = 896, + [900] = 896, + [901] = 897, + [902] = 897, + [903] = 896, + [904] = 896, + [905] = 897, + [906] = 896, + [907] = 897, [908] = 908, - [909] = 909, + [909] = 908, [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, + [911] = 908, + [912] = 908, + [913] = 908, + [914] = 908, [915] = 915, [916] = 916, [917] = 917, @@ -3317,18 +3439,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [928] = 928, [929] = 929, [930] = 930, - [931] = 931, + [931] = 72, [932] = 932, [933] = 933, [934] = 934, [935] = 935, [936] = 936, - [937] = 58, + [937] = 64, [938] = 938, [939] = 939, [940] = 940, [941] = 941, - [942] = 76, + [942] = 942, [943] = 943, [944] = 944, [945] = 945, @@ -3339,296 +3461,296 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [950] = 950, [951] = 951, [952] = 952, - [953] = 60, + [953] = 953, [954] = 954, [955] = 955, [956] = 956, [957] = 957, - [958] = 912, + [958] = 958, [959] = 959, - [960] = 74, - [961] = 957, + [960] = 960, + [961] = 961, [962] = 962, - [963] = 919, - [964] = 913, - [965] = 928, + [963] = 963, + [964] = 964, + [965] = 965, [966] = 966, - [967] = 927, - [968] = 921, - [969] = 969, - [970] = 928, - [971] = 537, - [972] = 922, + [967] = 967, + [968] = 968, + [969] = 526, + [970] = 970, + [971] = 971, + [972] = 972, [973] = 973, - [974] = 535, - [975] = 973, + [974] = 569, + [975] = 69, [976] = 976, [977] = 977, - [978] = 978, - [979] = 973, - [980] = 976, - [981] = 969, + [978] = 73, + [979] = 979, + [980] = 980, + [981] = 927, [982] = 982, - [983] = 973, - [984] = 925, - [985] = 978, + [983] = 983, + [984] = 921, + [985] = 985, [986] = 986, - [987] = 977, - [988] = 973, - [989] = 540, - [990] = 986, + [987] = 923, + [988] = 927, + [989] = 982, + [990] = 964, [991] = 991, - [992] = 579, - [993] = 993, + [992] = 950, + [993] = 938, [994] = 994, - [995] = 995, + [995] = 958, [996] = 996, - [997] = 997, + [997] = 994, [998] = 998, - [999] = 995, - [1000] = 1000, - [1001] = 1000, - [1002] = 997, - [1003] = 996, + [999] = 963, + [1000] = 568, + [1001] = 996, + [1002] = 1002, + [1003] = 1003, [1004] = 1004, - [1005] = 517, - [1006] = 998, + [1005] = 1005, + [1006] = 1006, [1007] = 1007, - [1008] = 991, - [1009] = 994, - [1010] = 606, + [1008] = 604, + [1009] = 1009, + [1010] = 1010, [1011] = 1011, [1012] = 1011, - [1013] = 1011, - [1014] = 1011, - [1015] = 1015, - [1016] = 1016, + [1013] = 1009, + [1014] = 991, + [1015] = 605, + [1016] = 958, [1017] = 1017, - [1018] = 1018, - [1019] = 1015, - [1020] = 1016, - [1021] = 1017, - [1022] = 1016, - [1023] = 1018, - [1024] = 1024, - [1025] = 1018, + [1018] = 1005, + [1019] = 1019, + [1020] = 1007, + [1021] = 1006, + [1022] = 1010, + [1023] = 1004, + [1024] = 998, + [1025] = 1003, [1026] = 1026, - [1027] = 1018, - [1028] = 1017, - [1029] = 1016, - [1030] = 1015, - [1031] = 1015, - [1032] = 1017, + [1027] = 1027, + [1028] = 1028, + [1029] = 1029, + [1030] = 1028, + [1031] = 1031, + [1032] = 1026, [1033] = 1033, [1034] = 1034, [1035] = 1035, [1036] = 1036, - [1037] = 1035, + [1037] = 1037, [1038] = 1036, - [1039] = 1035, + [1039] = 1027, [1040] = 1033, - [1041] = 1034, - [1042] = 1042, - [1043] = 1043, + [1041] = 1035, + [1042] = 1029, + [1043] = 1036, [1044] = 1036, - [1045] = 1043, - [1046] = 1042, - [1047] = 1034, - [1048] = 1048, - [1049] = 1043, - [1050] = 1042, - [1051] = 1034, - [1052] = 1033, - [1053] = 1048, - [1054] = 1054, - [1055] = 1055, - [1056] = 1043, - [1057] = 1035, - [1058] = 1033, - [1059] = 1042, - [1060] = 1048, - [1061] = 1048, - [1062] = 1036, + [1045] = 1031, + [1046] = 1037, + [1047] = 1036, + [1048] = 1034, + [1049] = 1049, + [1050] = 1050, + [1051] = 1050, + [1052] = 1052, + [1053] = 1053, + [1054] = 1053, + [1055] = 1053, + [1056] = 1050, + [1057] = 1052, + [1058] = 1052, + [1059] = 1052, + [1060] = 1050, + [1061] = 1053, + [1062] = 1062, [1063] = 1063, - [1064] = 1064, - [1065] = 1065, - [1066] = 1066, - [1067] = 1065, - [1068] = 1068, - [1069] = 1065, - [1070] = 1070, - [1071] = 1065, - [1072] = 1072, - [1073] = 1065, + [1064] = 1062, + [1065] = 1063, + [1066] = 1063, + [1067] = 1063, + [1068] = 1062, + [1069] = 1069, + [1070] = 1062, + [1071] = 1071, + [1072] = 1071, + [1073] = 1073, [1074] = 1074, - [1075] = 589, + [1075] = 1071, [1076] = 1076, - [1077] = 1065, - [1078] = 1065, + [1077] = 1073, + [1078] = 1078, [1079] = 1079, [1080] = 1080, - [1081] = 1081, + [1081] = 1076, [1082] = 1082, - [1083] = 603, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1091, - [1092] = 1079, - [1093] = 1093, - [1094] = 1084, + [1083] = 1073, + [1084] = 1078, + [1085] = 1078, + [1086] = 1074, + [1087] = 1076, + [1088] = 1071, + [1089] = 1078, + [1090] = 1074, + [1091] = 1073, + [1092] = 1076, + [1093] = 1074, + [1094] = 1094, [1095] = 1095, [1096] = 1096, [1097] = 1097, - [1098] = 1086, + [1098] = 1098, [1099] = 1099, [1100] = 1100, - [1101] = 1086, - [1102] = 1090, + [1101] = 1100, + [1102] = 1102, [1103] = 1103, - [1104] = 1104, - [1105] = 1090, + [1104] = 1100, + [1105] = 1105, [1106] = 1106, [1107] = 1107, - [1108] = 1089, + [1108] = 1100, [1109] = 1109, - [1110] = 1089, - [1111] = 1063, - [1112] = 1086, - [1113] = 1089, - [1114] = 1104, + [1110] = 1110, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, + [1114] = 1100, [1115] = 1115, - [1116] = 1116, + [1116] = 1100, [1117] = 1117, - [1118] = 1070, - [1119] = 1090, - [1120] = 1115, + [1118] = 1118, + [1119] = 1119, + [1120] = 1120, [1121] = 1121, - [1122] = 1074, - [1123] = 574, + [1122] = 1122, + [1123] = 1123, [1124] = 1124, [1125] = 1125, - [1126] = 1126, + [1126] = 1117, [1127] = 1127, - [1128] = 1125, + [1128] = 594, [1129] = 1129, - [1130] = 1130, + [1130] = 1121, [1131] = 1131, - [1132] = 582, - [1133] = 581, - [1134] = 1134, - [1135] = 576, - [1136] = 1136, + [1132] = 1132, + [1133] = 1133, + [1134] = 1096, + [1135] = 1102, + [1136] = 1097, [1137] = 1137, - [1138] = 1127, - [1139] = 575, - [1140] = 573, + [1138] = 1138, + [1139] = 1139, + [1140] = 1140, [1141] = 1141, - [1142] = 561, + [1142] = 603, [1143] = 1143, [1144] = 1144, - [1145] = 1137, - [1146] = 1146, - [1147] = 571, - [1148] = 536, + [1145] = 1145, + [1146] = 1125, + [1147] = 1147, + [1148] = 1148, [1149] = 1149, - [1150] = 1150, - [1151] = 1136, - [1152] = 1136, + [1150] = 1129, + [1151] = 1107, + [1152] = 1152, [1153] = 1153, [1154] = 1154, - [1155] = 1131, - [1156] = 1156, - [1157] = 1134, - [1158] = 1136, - [1159] = 1149, - [1160] = 534, - [1161] = 1129, - [1162] = 1150, + [1155] = 554, + [1156] = 549, + [1157] = 1157, + [1158] = 525, + [1159] = 1159, + [1160] = 1160, + [1161] = 547, + [1162] = 1162, [1163] = 1163, - [1164] = 1164, + [1164] = 1163, [1165] = 1165, [1166] = 1166, - [1167] = 1167, - [1168] = 1164, - [1169] = 1167, + [1167] = 1154, + [1168] = 1168, + [1169] = 1169, [1170] = 1170, [1171] = 1171, - [1172] = 1095, + [1172] = 1172, [1173] = 1173, [1174] = 1174, - [1175] = 1164, - [1176] = 1167, + [1175] = 1175, + [1176] = 547, [1177] = 1177, - [1178] = 1178, + [1178] = 592, [1179] = 1179, - [1180] = 1180, + [1180] = 582, [1181] = 1181, [1182] = 1182, [1183] = 1183, - [1184] = 603, - [1185] = 1182, - [1186] = 1186, + [1184] = 600, + [1185] = 1185, + [1186] = 594, [1187] = 1187, - [1188] = 1177, - [1189] = 1178, - [1190] = 1178, - [1191] = 1191, + [1188] = 1188, + [1189] = 579, + [1190] = 1187, + [1191] = 1168, [1192] = 1177, - [1193] = 1193, - [1194] = 1194, - [1195] = 1164, - [1196] = 1167, - [1197] = 1100, - [1198] = 1198, - [1199] = 1085, - [1200] = 1200, - [1201] = 1191, - [1202] = 1186, + [1193] = 592, + [1194] = 582, + [1195] = 1175, + [1196] = 579, + [1197] = 1166, + [1198] = 1168, + [1199] = 1199, + [1200] = 1174, + [1201] = 576, + [1202] = 1202, [1203] = 1203, [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1183, + [1205] = 600, + [1206] = 554, + [1207] = 549, + [1208] = 1208, [1209] = 1209, - [1210] = 1210, - [1211] = 1211, - [1212] = 1212, - [1213] = 1187, - [1214] = 1178, - [1215] = 1165, - [1216] = 1216, - [1217] = 1177, - [1218] = 1186, - [1219] = 1210, - [1220] = 1165, - [1221] = 1181, - [1222] = 1182, + [1210] = 576, + [1211] = 1172, + [1212] = 1170, + [1213] = 1171, + [1214] = 1169, + [1215] = 1171, + [1216] = 1168, + [1217] = 525, + [1218] = 603, + [1219] = 1171, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, [1223] = 1223, - [1224] = 1193, + [1224] = 1224, [1225] = 1225, - [1226] = 1154, - [1227] = 1209, - [1228] = 1174, - [1229] = 1206, - [1230] = 1230, - [1231] = 1231, - [1232] = 589, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, + [1229] = 1227, + [1230] = 1226, + [1231] = 1224, + [1232] = 1232, [1233] = 1233, - [1234] = 1234, - [1235] = 1235, - [1236] = 1165, - [1237] = 1163, - [1238] = 1198, + [1234] = 1225, + [1235] = 1227, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, [1239] = 1239, - [1240] = 1240, - [1241] = 1241, - [1242] = 1241, + [1240] = 1224, + [1241] = 1225, + [1242] = 1226, [1243] = 1243, [1244] = 1244, [1245] = 1245, @@ -3636,13 +3758,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1247] = 1247, [1248] = 1248, [1249] = 1249, - [1250] = 310, + [1250] = 1250, [1251] = 1251, [1252] = 1252, [1253] = 1253, - [1254] = 1249, - [1255] = 1255, - [1256] = 1253, + [1254] = 1254, + [1255] = 1103, + [1256] = 1256, [1257] = 1257, [1258] = 1258, [1259] = 1259, @@ -3650,61 +3772,61 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1261] = 1261, [1262] = 1262, [1263] = 1263, - [1264] = 1257, + [1264] = 1260, [1265] = 1265, - [1266] = 1266, - [1267] = 1267, - [1268] = 1268, - [1269] = 1269, + [1266] = 1259, + [1267] = 1256, + [1268] = 1253, + [1269] = 1247, [1270] = 1270, [1271] = 1271, [1272] = 1272, - [1273] = 1273, - [1274] = 1258, - [1275] = 1275, - [1276] = 1276, + [1273] = 1124, + [1274] = 1249, + [1275] = 1123, + [1276] = 1223, [1277] = 1277, - [1278] = 1278, + [1278] = 1248, [1279] = 1279, - [1280] = 1248, - [1281] = 1281, - [1282] = 1282, - [1283] = 1276, - [1284] = 1284, - [1285] = 1285, - [1286] = 1286, - [1287] = 576, - [1288] = 581, - [1289] = 1289, - [1290] = 575, - [1291] = 574, - [1292] = 573, - [1293] = 561, - [1294] = 1251, - [1295] = 571, - [1296] = 536, + [1280] = 1257, + [1281] = 1243, + [1282] = 1226, + [1283] = 1227, + [1284] = 1225, + [1285] = 1224, + [1286] = 1239, + [1287] = 1221, + [1288] = 1237, + [1289] = 1236, + [1290] = 1118, + [1291] = 1291, + [1292] = 1292, + [1293] = 1254, + [1294] = 1122, + [1295] = 1228, + [1296] = 1159, [1297] = 1297, [1298] = 1298, [1299] = 1299, [1300] = 1300, [1301] = 1301, [1302] = 1302, - [1303] = 1297, - [1304] = 1259, - [1305] = 534, + [1303] = 1303, + [1304] = 1304, + [1305] = 1305, [1306] = 1306, [1307] = 1307, - [1308] = 1265, + [1308] = 1308, [1309] = 1309, - [1310] = 1300, - [1311] = 1309, + [1310] = 1310, + [1311] = 1311, [1312] = 1312, - [1313] = 1266, + [1313] = 1313, [1314] = 1314, [1315] = 1315, [1316] = 1316, [1317] = 1317, - [1318] = 1318, + [1318] = 1303, [1319] = 1319, [1320] = 1320, [1321] = 1321, @@ -3712,80 +3834,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1323] = 1323, [1324] = 1324, [1325] = 1325, - [1326] = 1268, + [1326] = 1326, [1327] = 1327, - [1328] = 1275, + [1328] = 1308, [1329] = 1329, - [1330] = 1324, - [1331] = 1268, - [1332] = 1252, + [1330] = 1330, + [1331] = 1331, + [1332] = 1332, [1333] = 1333, - [1334] = 1255, + [1334] = 1334, [1335] = 1335, - [1336] = 1267, - [1337] = 1301, - [1338] = 582, - [1339] = 1141, - [1340] = 1277, - [1341] = 1302, - [1342] = 1297, - [1343] = 1327, + [1336] = 1336, + [1337] = 1337, + [1338] = 1338, + [1339] = 1339, + [1340] = 1300, + [1341] = 1338, + [1342] = 1329, + [1343] = 1323, [1344] = 1344, - [1345] = 1124, - [1346] = 1346, - [1347] = 1302, - [1348] = 1272, - [1349] = 1272, - [1350] = 1268, - [1351] = 1351, - [1352] = 1352, + [1345] = 1317, + [1346] = 1299, + [1347] = 1344, + [1348] = 347, + [1349] = 1349, + [1350] = 1350, + [1351] = 1339, + [1352] = 1322, [1353] = 1353, [1354] = 1354, [1355] = 1355, - [1356] = 1356, + [1356] = 1315, [1357] = 1357, [1358] = 1358, [1359] = 1359, [1360] = 1360, - [1361] = 1361, - [1362] = 1362, - [1363] = 1363, + [1361] = 1327, + [1362] = 1326, + [1363] = 1325, [1364] = 1364, - [1365] = 1365, + [1365] = 1306, [1366] = 1366, - [1367] = 1367, - [1368] = 1368, + [1367] = 1335, + [1368] = 1334, [1369] = 1369, [1370] = 1370, - [1371] = 1371, - [1372] = 1372, + [1371] = 1321, + [1372] = 1319, [1373] = 1373, - [1374] = 1374, - [1375] = 1358, - [1376] = 1362, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, + [1374] = 1305, + [1375] = 1304, + [1376] = 1302, + [1377] = 1320, + [1378] = 1301, + [1379] = 1316, [1380] = 1380, - [1381] = 1381, - [1382] = 1382, - [1383] = 1383, + [1381] = 1320, + [1382] = 1299, + [1383] = 1344, [1384] = 1384, [1385] = 1385, - [1386] = 1171, + [1386] = 1339, [1387] = 1387, [1388] = 1388, [1389] = 1389, - [1390] = 1194, - [1391] = 1391, - [1392] = 1352, - [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 1396, - [1397] = 1358, - [1398] = 1362, - [1399] = 1399, + [1390] = 1301, + [1391] = 1305, + [1392] = 1322, + [1393] = 1339, + [1394] = 1329, + [1395] = 1324, + [1396] = 1324, + [1397] = 1397, + [1398] = 1398, + [1399] = 1319, [1400] = 1400, [1401] = 1401, [1402] = 1402, @@ -3794,12 +3916,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1405] = 1405, [1406] = 1406, [1407] = 1407, - [1408] = 1369, - [1409] = 1355, + [1408] = 1408, + [1409] = 1409, [1410] = 1410, - [1411] = 1361, - [1412] = 1367, - [1413] = 1382, + [1411] = 1411, + [1412] = 1412, + [1413] = 1413, [1414] = 1414, [1415] = 1415, [1416] = 1416, @@ -3807,27 +3929,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1418] = 1418, [1419] = 1419, [1420] = 1420, - [1421] = 1384, + [1421] = 1421, [1422] = 1422, - [1423] = 1385, + [1423] = 1423, [1424] = 1424, [1425] = 1425, [1426] = 1426, - [1427] = 1425, - [1428] = 1360, + [1427] = 1427, + [1428] = 1428, [1429] = 1429, [1430] = 1430, [1431] = 1431, - [1432] = 435, + [1432] = 1432, [1433] = 1433, - [1434] = 1403, - [1435] = 1429, + [1434] = 1434, + [1435] = 1435, [1436] = 1436, [1437] = 1437, [1438] = 1438, [1439] = 1439, [1440] = 1440, - [1441] = 1372, + [1441] = 1441, [1442] = 1442, [1443] = 1443, [1444] = 1444, @@ -3837,31 +3959,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1448] = 1448, [1449] = 1449, [1450] = 1450, - [1451] = 1419, + [1451] = 1279, [1452] = 1452, [1453] = 1453, [1454] = 1454, [1455] = 1455, [1456] = 1456, - [1457] = 1455, + [1457] = 1457, [1458] = 1458, - [1459] = 1438, + [1459] = 1459, [1460] = 1460, - [1461] = 1356, - [1462] = 1351, + [1461] = 1443, + [1462] = 1444, [1463] = 1463, - [1464] = 1433, + [1464] = 1464, [1465] = 1465, [1466] = 1466, [1467] = 1467, [1468] = 1468, - [1469] = 1469, - [1470] = 1470, + [1469] = 1443, + [1470] = 1444, [1471] = 1471, - [1472] = 1379, + [1472] = 1472, [1473] = 1473, [1474] = 1474, - [1475] = 1383, + [1475] = 1401, [1476] = 1476, [1477] = 1477, [1478] = 1478, @@ -3870,196 +3992,273 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1484, + [1484] = 1405, [1485] = 1485, [1486] = 1486, - [1487] = 1487, + [1487] = 1410, [1488] = 1488, [1489] = 1489, - [1490] = 1424, - [1491] = 1477, - [1492] = 1492, - [1493] = 1486, - [1494] = 1466, - [1495] = 1422, - [1496] = 1446, - [1497] = 1447, - [1498] = 1449, - [1499] = 1454, - [1500] = 1500, - [1501] = 1444, - [1502] = 1485, - [1503] = 1487, + [1490] = 1490, + [1491] = 1491, + [1492] = 1477, + [1493] = 1474, + [1494] = 1491, + [1495] = 1495, + [1496] = 1496, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1478, + [1501] = 1501, + [1502] = 1502, + [1503] = 1503, [1504] = 1504, - [1505] = 1439, + [1505] = 1505, [1506] = 1506, [1507] = 1507, - [1508] = 1482, + [1508] = 1508, [1509] = 1509, - [1510] = 1388, - [1511] = 1391, + [1510] = 1510, + [1511] = 1490, [1512] = 1512, - [1513] = 1393, - [1514] = 1395, - [1515] = 1396, - [1516] = 1399, - [1517] = 1400, - [1518] = 1484, - [1519] = 1489, - [1520] = 1437, + [1513] = 1513, + [1514] = 1514, + [1515] = 1515, + [1516] = 1482, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, [1521] = 1521, - [1522] = 1522, + [1522] = 1479, [1523] = 1523, [1524] = 1524, - [1525] = 1404, - [1526] = 1483, - [1527] = 1402, - [1528] = 1401, - [1529] = 1394, + [1525] = 1444, + [1526] = 1526, + [1527] = 1527, + [1528] = 1443, + [1529] = 1529, [1530] = 1530, - [1531] = 1389, - [1532] = 1480, - [1533] = 1478, - [1534] = 1387, - [1535] = 1535, - [1536] = 1363, - [1537] = 1522, - [1538] = 1523, - [1539] = 1362, - [1540] = 1524, - [1541] = 1473, - [1542] = 1470, - [1543] = 1358, - [1544] = 1469, + [1531] = 1531, + [1532] = 1465, + [1533] = 1533, + [1534] = 1464, + [1535] = 1463, + [1536] = 1460, + [1537] = 1450, + [1538] = 1445, + [1539] = 1448, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, + [1543] = 1428, + [1544] = 1544, [1545] = 1545, - [1546] = 1546, - [1547] = 1463, - [1548] = 1465, - [1549] = 1416, - [1550] = 1550, + [1546] = 1427, + [1547] = 1545, + [1548] = 1544, + [1549] = 1549, + [1550] = 1426, [1551] = 1551, [1552] = 1552, - [1553] = 1467, - [1554] = 1554, - [1555] = 1506, - [1556] = 1546, + [1553] = 1553, + [1554] = 1441, + [1555] = 1555, + [1556] = 1436, [1557] = 1557, - [1558] = 1557, + [1558] = 1558, [1559] = 1559, [1560] = 1560, [1561] = 1561, - [1562] = 1562, - [1563] = 1561, + [1562] = 1523, + [1563] = 1563, [1564] = 1564, - [1565] = 1565, + [1565] = 1431, [1566] = 1566, - [1567] = 1567, - [1568] = 1568, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, - [1572] = 1572, - [1573] = 1573, - [1574] = 1574, - [1575] = 1575, + [1567] = 1510, + [1568] = 1502, + [1569] = 1499, + [1570] = 1497, + [1571] = 1496, + [1572] = 1495, + [1573] = 1430, + [1574] = 1507, + [1575] = 1476, [1576] = 1576, - [1577] = 1570, - [1578] = 1578, - [1579] = 1573, - [1580] = 1576, - [1581] = 1581, - [1582] = 1582, - [1583] = 1583, - [1584] = 1584, - [1585] = 1585, - [1586] = 1586, - [1587] = 1584, - [1588] = 1588, - [1589] = 1589, - [1590] = 1590, - [1591] = 1591, - [1592] = 1592, - [1593] = 1586, - [1594] = 1594, - [1595] = 1595, - [1596] = 1596, - [1597] = 1597, - [1598] = 1598, - [1599] = 1599, - [1600] = 1566, - [1601] = 1601, - [1602] = 1566, - [1603] = 1603, - [1604] = 1565, - [1605] = 1565, - [1606] = 1572, - [1607] = 1574, - [1608] = 1608, - [1609] = 1575, - [1610] = 1205, - [1611] = 1583, - [1612] = 1612, + [1577] = 1577, + [1578] = 1466, + [1579] = 1542, + [1580] = 1580, + [1581] = 537, + [1582] = 1449, + [1583] = 1447, + [1584] = 1446, + [1585] = 1442, + [1586] = 1440, + [1587] = 1439, + [1588] = 1438, + [1589] = 1437, + [1590] = 1435, + [1591] = 1434, + [1592] = 1433, + [1593] = 1432, + [1594] = 572, + [1595] = 1414, + [1596] = 1416, + [1597] = 577, + [1598] = 1413, + [1599] = 1561, + [1600] = 1501, + [1601] = 1503, + [1602] = 1504, + [1603] = 1518, + [1604] = 1519, + [1605] = 1520, + [1606] = 1560, + [1607] = 1418, + [1608] = 1559, + [1609] = 1429, + [1610] = 1412, + [1611] = 1611, + [1612] = 1409, [1613] = 1613, - [1614] = 1614, - [1615] = 1615, - [1616] = 1616, - [1617] = 1562, - [1618] = 1618, - [1619] = 1581, - [1620] = 1620, - [1621] = 1581, - [1622] = 1622, - [1623] = 1623, - [1624] = 1624, - [1625] = 1625, - [1626] = 1613, - [1627] = 1568, - [1628] = 1586, - [1629] = 1578, - [1630] = 1561, - [1631] = 1562, - [1632] = 1570, - [1633] = 1573, - [1634] = 1576, + [1614] = 1558, + [1615] = 1557, + [1616] = 1553, + [1617] = 1617, + [1618] = 1541, + [1619] = 1406, + [1620] = 1402, + [1621] = 1489, + [1622] = 1531, + [1623] = 1481, + [1624] = 1485, + [1625] = 1580, + [1626] = 1626, + [1627] = 1419, + [1628] = 1527, + [1629] = 1526, + [1630] = 1400, + [1631] = 1631, + [1632] = 1512, + [1633] = 1633, + [1634] = 1634, [1635] = 1635, [1636] = 1636, [1637] = 1637, - [1638] = 1603, - [1639] = 1584, - [1640] = 1640, - [1641] = 1586, - [1642] = 1578, - [1643] = 1581, - [1644] = 1561, - [1645] = 1635, - [1646] = 1562, - [1647] = 1603, - [1648] = 1566, - [1649] = 1572, - [1650] = 1574, - [1651] = 1575, - [1652] = 1570, - [1653] = 1573, - [1654] = 1572, - [1655] = 1576, - [1656] = 1574, - [1657] = 1575, - [1658] = 1635, + [1638] = 1638, + [1639] = 1639, + [1640] = 1480, + [1641] = 1506, + [1642] = 1508, + [1643] = 1509, + [1644] = 1644, + [1645] = 1645, + [1646] = 1646, + [1647] = 1277, + [1648] = 1648, + [1649] = 1649, + [1650] = 1650, + [1651] = 1651, + [1652] = 1652, + [1653] = 1653, + [1654] = 1654, + [1655] = 1655, + [1656] = 1651, + [1657] = 1646, + [1658] = 1655, [1659] = 1659, - [1660] = 1635, - [1661] = 1575, - [1662] = 1578, - [1663] = 1574, - [1664] = 1572, - [1665] = 1603, + [1660] = 1660, + [1661] = 1661, + [1662] = 1662, + [1663] = 1663, + [1664] = 1664, + [1665] = 1665, [1666] = 1666, - [1667] = 1618, - [1668] = 1584, + [1667] = 1667, + [1668] = 1668, [1669] = 1669, - [1670] = 1567, - [1671] = 1566, - [1672] = 1565, - [1673] = 1565, + [1670] = 1645, + [1671] = 1671, + [1672] = 1663, + [1673] = 1673, + [1674] = 1674, + [1675] = 1675, + [1676] = 1676, + [1677] = 1677, + [1678] = 1646, + [1679] = 1679, + [1680] = 1680, + [1681] = 1681, + [1682] = 1665, + [1683] = 1683, + [1684] = 1684, + [1685] = 1685, + [1686] = 1666, + [1687] = 1687, + [1688] = 1688, + [1689] = 1652, + [1690] = 1690, + [1691] = 1691, + [1692] = 1692, + [1693] = 1693, + [1694] = 1694, + [1695] = 1695, + [1696] = 1674, + [1697] = 1675, + [1698] = 1691, + [1699] = 1699, + [1700] = 1700, + [1701] = 1668, + [1702] = 1691, + [1703] = 1703, + [1704] = 1704, + [1705] = 1685, + [1706] = 1706, + [1707] = 1669, + [1708] = 1644, + [1709] = 1709, + [1710] = 1710, + [1711] = 1690, + [1712] = 1709, + [1713] = 1688, + [1714] = 1691, + [1715] = 1715, + [1716] = 1669, + [1717] = 1674, + [1718] = 1675, + [1719] = 1644, + [1720] = 1646, + [1721] = 1721, + [1722] = 1722, + [1723] = 1723, + [1724] = 1654, + [1725] = 1651, + [1726] = 1726, + [1727] = 1652, + [1728] = 1728, + [1729] = 1654, + [1730] = 1644, + [1731] = 1651, + [1732] = 1646, + [1733] = 1675, + [1734] = 1674, + [1735] = 1654, + [1736] = 1655, + [1737] = 1737, + [1738] = 1738, + [1739] = 1669, + [1740] = 1655, + [1741] = 1671, + [1742] = 1677, + [1743] = 1674, + [1744] = 1651, + [1745] = 1652, + [1746] = 1675, + [1747] = 1654, + [1748] = 1748, + [1749] = 1667, + [1750] = 1652, }; static inline bool sym__glimmer_template_content_character_set_1(int32_t c) { @@ -4071,11 +4270,13 @@ static inline bool sym__glimmer_template_content_character_set_1(int32_t c) { : (c <= ' ' || (c < 5760 ? c == 160 : c <= 5760))) - : (c <= 8203 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); + : (c <= 8203 || (c < 8287 + ? (c < 8239 + ? (c >= 8232 && c <= 8233) + : c <= 8239) + : (c <= 8288 || (c < 65279 + ? c == 12288 + : c <= 65279))))); } static inline bool anon_sym_BANG_character_set_1(int32_t c) { @@ -4087,7 +4288,25 @@ static inline bool anon_sym_BANG_character_set_1(int32_t c) { : (c <= ' ' || (c < 5760 ? c == 160 : c <= 5760))) - : (c <= 8203 || (c < 12288 + : (c <= 8203 || (c < 8287 + ? (c < 8239 + ? (c >= 8232 && c <= 8233) + : c <= 8239) + : (c <= 8288 || (c < 65279 + ? c == 12288 + : c <= 65279))))); +} + +static inline bool sym_unescaped_double_string_fragment_character_set_1(int32_t c) { + return (c < 8232 + ? (c < 160 + ? (c < ' ' + ? c == '\t' + : c <= ' ') + : (c <= 160 || (c < 8192 + ? c == 5760 + : c <= 8203))) + : (c <= 8233 || (c < 12288 ? (c < 8287 ? c == 8239 : c <= 8288) @@ -4103,41 +4322,43 @@ static inline bool sym_identifier_character_set_1(int32_t c) { : (c <= '@' || (c < '`' ? (c >= '[' && c <= '^') : (c <= '`' || (c >= '{' && c <= '~'))))) - : (c <= 160 || (c < 8287 + : (c <= 160 || (c < 8239 ? (c < 8192 ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); + : (c <= 8203 || (c >= 8232 && c <= 8233))) + : (c <= 8239 || (c < 12288 + ? (c >= 8287 && c <= 8288) + : (c <= 12288 || c == 65279)))))); } static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 160 + return (c < 5760 ? (c < ':' ? (c < 0 ? c == 0 : (c <= '#' || (c >= '%' && c <= '/'))) : (c <= '@' || (c < '`' ? (c >= '[' && c <= '^') - : c <= '~'))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) + : (c <= '~' || c == 160)))) + : (c <= 5760 || (c < 8287 + ? (c < 8232 + ? (c >= 8192 && c <= 8203) + : (c <= 8233 || c == 8239)) : (c <= 8288 || (c < 65279 ? c == 12288 : c <= 65279))))); } static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 8192 + return (c < 8232 ? (c < 160 ? (c < 0 ? c == 0 : c <= '~') - : (c <= 160 || c == 5760)) - : (c <= 8203 || (c < 12288 + : (c <= 160 || (c < 8192 + ? c == 5760 + : c <= 8203))) + : (c <= 8233 || (c < 12288 ? (c < 8287 ? c == 8239 : c <= 8288) @@ -4153,28 +4374,28 @@ static inline bool sym_identifier_character_set_4(int32_t c) { : (c <= '@' || (c < '`' ? (c >= '[' && c <= '^') : (c <= '`' || (c >= '|' && c <= '~'))))) - : (c <= 160 || (c < 8287 + : (c <= 160 || (c < 8239 ? (c < 8192 ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); + : (c <= 8203 || (c >= 8232 && c <= 8233))) + : (c <= 8239 || (c < 12288 + ? (c >= 8287 && c <= 8288) + : (c <= 12288 || c == 65279)))))); } static inline bool sym_private_property_identifier_character_set_1(int32_t c) { - return (c < 160 + return (c < 5760 ? (c < '[' ? (c < 0 ? c == 0 : (c <= '#' || (c >= '%' && c <= '@'))) : (c <= '^' || (c < '{' ? c == '`' - : c <= '~'))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) + : (c <= '~' || c == 160)))) + : (c <= 5760 || (c < 8287 + ? (c < 8232 + ? (c >= 8192 && c <= 8203) + : (c <= 8233 || c == 8239)) : (c <= 8288 || (c < 65279 ? c == 12288 : c <= 65279))))); @@ -4190,27 +4411,27 @@ static inline bool sym_preproc_character_set_1(int32_t c) { ? (c >= '{' && c <= '~') : c <= 160))) : (c <= 5760 || (c < 8287 - ? (c < 8239 + ? (c < 8232 ? (c >= 8192 && c <= 8203) - : c <= 8239) + : (c <= 8233 || c == 8239)) : (c <= 8288 || (c < 65279 ? c == 12288 : c <= 65279))))); } static inline bool sym_preproc_character_set_2(int32_t c) { - return (c < 160 + return (c < 5760 ? (c < '[' ? (c < '%' ? (c >= 0 && c <= '#') : (c <= '/' || (c >= ':' && c <= '@'))) : (c <= '^' || (c < '{' ? c == '`' - : c <= '~'))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) + : (c <= '~' || c == 160)))) + : (c <= 5760 || (c < 8287 + ? (c < 8232 + ? (c >= 8192 && c <= 8203) + : (c <= 8233 || c == 8239)) : (c <= 8288 || (c < 65279 ? c == 12288 : c <= 65279))))); @@ -4221,1463 +4442,2026 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(96); - if (lookahead == '!') ADVANCE(192); - if (lookahead == '"') ADVANCE(196); + if (eof) ADVANCE(159); + if (lookahead == '!') ADVANCE(267); + if (lookahead == '"') ADVANCE(200); if (lookahead == '#') ADVANCE(1); - if (lookahead == '$') ADVANCE(233); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(169); - if (lookahead == '\'') ADVANCE(197); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(99); - if (lookahead == '+') ADVANCE(176); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(178); - if (lookahead == '.') ADVANCE(139); - if (lookahead == '/') ADVANCE(218); - if (lookahead == '0') ADVANCE(223); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(106); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(110); - if (lookahead == '>') ADVANCE(127); - if (lookahead == '?') ADVANCE(28); - if (lookahead == '@') ADVANCE(237); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(54); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(172); - if (lookahead == '`') ADVANCE(216); - if (lookahead == '{') ADVANCE(101); - if (lookahead == '|') ADVANCE(173); - if (lookahead == '}') ADVANCE(103); - if (lookahead == '~') ADVANCE(193); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(93) + if (lookahead == '$') ADVANCE(314); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(242); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(162); + if (lookahead == '+') ADVANCE(249); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(196); + if (lookahead == '/') ADVANCE(294); + if (lookahead == '0') ADVANCE(299); + if (lookahead == ':') ADVANCE(170); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(186); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '>') ADVANCE(192); + if (lookahead == '?') ADVANCE(44); + if (lookahead == '@') ADVANCE(319); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(113); + if (lookahead == ']') ADVANCE(176); + if (lookahead == '^') ADVANCE(245); + if (lookahead == '`') ADVANCE(292); + if (lookahead == 's') ADVANCE(312); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '|') ADVANCE(246); + if (lookahead == '}') ADVANCE(166); + if (lookahead == '~') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(156) if (lookahead != 0 && - lookahead > 31) ADVANCE(234); + lookahead > 31) ADVANCE(316); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(238); - if (lookahead == '!') ADVANCE(97); - if (lookahead == '\\') ADVANCE(2); - if (sym_preproc_character_set_1(lookahead)) ADVANCE(9); - if (lookahead != 0) ADVANCE(235); + if (lookahead == '\n') ADVANCE(321); + if (lookahead == '!') ADVANCE(160); + if (lookahead == '\\') ADVANCE(3); + if (sym_preproc_character_set_1(lookahead)) ADVANCE(10); + if (lookahead != 0) ADVANCE(317); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(238); - if (lookahead == 'u') ADVANCE(3); - if (lookahead != 0) ADVANCE(9); + if (lookahead == '\n') ADVANCE(321); + if (lookahead == '\\') ADVANCE(3); + if (sym_preproc_character_set_1(lookahead)) ADVANCE(10); + if (lookahead != 0) ADVANCE(317); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(238); - if (lookahead == '{') ADVANCE(6); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(8); - if (lookahead != 0) ADVANCE(9); + if (lookahead == '\n') ADVANCE(321); + if (lookahead == 'u') ADVANCE(4); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(238); - if (lookahead == '}') ADVANCE(235); + if (lookahead == '\n') ADVANCE(321); + if (lookahead == '{') ADVANCE(7); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4); - if (lookahead != 0) ADVANCE(9); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(9); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(238); + if (lookahead == '\n') ADVANCE(321); + if (lookahead == '}') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(235); - if (lookahead != 0) ADVANCE(9); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(238); + if (lookahead == '\n') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4); - if (lookahead != 0) ADVANCE(9); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(317); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(238); + if (lookahead == '\n') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5); - if (lookahead != 0) ADVANCE(9); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(238); + if (lookahead == '\n') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(7); - if (lookahead != 0) ADVANCE(9); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(6); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(238); - if (lookahead != 0) ADVANCE(9); + if (lookahead == '\n') ADVANCE(321); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(8); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 10: - if (lookahead == '\n') SKIP(10) - if (lookahead == '/') ADVANCE(115); - if (lookahead == '<') ADVANCE(117); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(116); - if (lookahead != 0) ADVANCE(114); + if (lookahead == '\n') ADVANCE(321); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 11: - if (lookahead == '\n') SKIP(31) - if (lookahead == '/') ADVANCE(24); - if (lookahead == '[') ADVANCE(37); - if (lookahead == '\\') ADVANCE(92); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(219); - if (lookahead != 0) ADVANCE(220); + if (lookahead == '\n') ADVANCE(320); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(11); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(191); - if (lookahead == '"') ADVANCE(196); - if (lookahead == '#') ADVANCE(38); - if (lookahead == '\'') ADVANCE(197); - if (lookahead == '(') ADVANCE(104); - if (lookahead == '*') ADVANCE(98); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(140); - if (lookahead == '/') ADVANCE(129); - if (lookahead == '0') ADVANCE(223); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(106); - if (lookahead == '<') ADVANCE(125); - if (lookahead == '=') ADVANCE(111); - if (lookahead == '>') ADVANCE(126); - if (lookahead == '@') ADVANCE(237); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == '`') ADVANCE(216); - if (lookahead == '{') ADVANCE(101); - if (lookahead == '}') ADVANCE(103); - if (lookahead == '~') ADVANCE(193); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(12) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(234); + if (lookahead == '\n') SKIP(12) + if (lookahead == '/') ADVANCE(178); + if (lookahead == '<') ADVANCE(180); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(179); + if (lookahead != 0) ADVANCE(177); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(33); - if (lookahead == '"') ADVANCE(196); - if (lookahead == '#') ADVANCE(38); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(169); - if (lookahead == '\'') ADVANCE(197); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(99); - if (lookahead == '+') ADVANCE(176); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(178); - if (lookahead == '.') ADVANCE(140); - if (lookahead == '/') ADVANCE(130); - if (lookahead == '0') ADVANCE(223); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(106); - if (lookahead == '<') ADVANCE(121); - if (lookahead == '=') ADVANCE(110); - if (lookahead == '>') ADVANCE(127); - if (lookahead == '?') ADVANCE(28); - if (lookahead == '@') ADVANCE(237); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(172); - if (lookahead == '`') ADVANCE(216); - if (lookahead == '{') ADVANCE(101); - if (lookahead == '|') ADVANCE(173); - if (lookahead == '}') ADVANCE(103); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(13) - if (lookahead != 0 && - lookahead > 31 && - lookahead != '~') ADVANCE(234); + if (lookahead == '\n') SKIP(48) + if (lookahead == '/') ADVANCE(36); + if (lookahead == '[') ADVANCE(92); + if (lookahead == '\\') ADVANCE(155); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(295); + if (lookahead != 0) ADVANCE(296); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(33); - if (lookahead == '"') ADVANCE(196); - if (lookahead == '%') ADVANCE(179); - if (lookahead == '&') ADVANCE(170); - if (lookahead == '\'') ADVANCE(197); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(100); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(138); - if (lookahead == '/') ADVANCE(129); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(106); - if (lookahead == '<') ADVANCE(123); - if (lookahead == '=') ADVANCE(109); - if (lookahead == '>') ADVANCE(128); - if (lookahead == '?') ADVANCE(29); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(171); - if (lookahead == '`') ADVANCE(216); - if (lookahead == '{') ADVANCE(101); - if (lookahead == '|') ADVANCE(174); - if (lookahead == '}') ADVANCE(103); + if (lookahead == '!') ADVANCE(267); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(243); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '+') ADVANCE(248); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '-') ADVANCE(250); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(299); + if (lookahead == ':') ADVANCE(170); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(189); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '>') ADVANCE(193); + if (lookahead == '?') ADVANCE(45); + if (lookahead == '@') ADVANCE(319); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == ']') ADVANCE(176); + if (lookahead == '^') ADVANCE(244); + if (lookahead == '`') ADVANCE(292); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '|') ADVANCE(247); + if (lookahead == '}') ADVANCE(166); + if (lookahead == '~') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) if (lookahead != 0 && - lookahead > '#' && - (lookahead < '0' || '@' < lookahead) && - lookahead != '~') ADVANCE(234); + lookahead > 31) ADVANCE(316); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(33); - if (lookahead == '%') ADVANCE(179); - if (lookahead == '&') ADVANCE(170); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(100); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(138); - if (lookahead == '/') ADVANCE(129); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(106); - if (lookahead == '<') ADVANCE(123); - if (lookahead == '=') ADVANCE(34); - if (lookahead == '>') ADVANCE(128); - if (lookahead == '?') ADVANCE(29); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(171); - if (lookahead == '`') ADVANCE(216); - if (lookahead == '{') ADVANCE(101); - if (lookahead == '|') ADVANCE(174); - if (lookahead == '}') ADVANCE(103); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(16) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(221); + if (lookahead == '!') ADVANCE(266); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '#') ADVANCE(2); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '*') ADVANCE(161); + if (lookahead == '+') ADVANCE(248); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '-') ADVANCE(250); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(299); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(190); + if (lookahead == '@') ADVANCE(319); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == '`') ADVANCE(292); + if (lookahead == 's') ADVANCE(312); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '}') ADVANCE(166); + if (lookahead == '~') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(15) if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(234); + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '|') ADVANCE(316); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(33); - if (lookahead == '%') ADVANCE(179); - if (lookahead == '&') ADVANCE(170); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(100); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(138); - if (lookahead == '/') ADVANCE(129); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(106); - if (lookahead == '<') ADVANCE(123); - if (lookahead == '=') ADVANCE(34); - if (lookahead == '>') ADVANCE(128); - if (lookahead == '?') ADVANCE(29); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(171); - if (lookahead == '`') ADVANCE(216); - if (lookahead == '{') ADVANCE(101); - if (lookahead == '|') ADVANCE(174); - if (lookahead == '}') ADVANCE(103); + if (lookahead == '!') ADVANCE(266); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '+') ADVANCE(248); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '-') ADVANCE(250); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(299); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(190); + if (lookahead == '@') ADVANCE(319); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == ']') ADVANCE(176); + if (lookahead == '`') ADVANCE(292); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '}') ADVANCE(166); + if (lookahead == '~') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(16) if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(234); + lookahead > 31 && + (lookahead < '%' || '?' < lookahead) && + lookahead != '^' && + lookahead != '|') ADVANCE(316); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(196); - if (lookahead == '#') ADVANCE(38); - if (lookahead == '\'') ADVANCE(197); - if (lookahead == '*') ADVANCE(98); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '.') ADVANCE(27); - if (lookahead == '/') ADVANCE(218); - if (lookahead == '0') ADVANCE(223); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '@') ADVANCE(237); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == '{') ADVANCE(101); - if (lookahead == '}') ADVANCE(103); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(18) + if (lookahead == '!') ADVANCE(266); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '+') ADVANCE(248); + if (lookahead == '-') ADVANCE(250); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(299); + if (lookahead == '<') ADVANCE(190); + if (lookahead == '@') ADVANCE(319); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == '`') ADVANCE(292); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '~') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(17) if (lookahead != 0 && - lookahead > '!' && + lookahead > 31 && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && - lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(234); + lookahead != '|' && + lookahead != '}') ADVANCE(316); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(196); - if (lookahead == '#') ADVANCE(38); - if (lookahead == '\'') ADVANCE(197); - if (lookahead == '*') ADVANCE(98); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '.') ADVANCE(27); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(223); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '@') ADVANCE(237); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == '{') ADVANCE(101); - if (lookahead == '}') ADVANCE(103); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(242); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(162); + if (lookahead == '+') ADVANCE(249); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '0') ADVANCE(299); + if (lookahead == ':') ADVANCE(170); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(187); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '>') ADVANCE(192); + if (lookahead == '?') ADVANCE(44); + if (lookahead == '@') ADVANCE(319); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == ']') ADVANCE(176); + if (lookahead == '^') ADVANCE(245); + if (lookahead == '`') ADVANCE(292); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '|') ADVANCE(246); + if (lookahead == '}') ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(18) if (lookahead != 0 && - lookahead > '!' && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(234); + lookahead > 31 && + lookahead != '~') ADVANCE(316); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(196); - if (lookahead == '/') ADVANCE(199); - if (lookahead == '\\') ADVANCE(57); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(202); - if (lookahead != 0) ADVANCE(203); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(243); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '+') ADVANCE(248); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '-') ADVANCE(250); + if (lookahead == '.') ADVANCE(195); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(170); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(188); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '>') ADVANCE(193); + if (lookahead == '?') ADVANCE(45); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == ']') ADVANCE(176); + if (lookahead == '^') ADVANCE(244); + if (lookahead == '`') ADVANCE(292); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '|') ADVANCE(247); + if (lookahead == '}') ADVANCE(166); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(19) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '\'' || '@' < lookahead) && + lookahead != '~') ADVANCE(316); END_STATE(); case 20: - if (lookahead == '$') ADVANCE(58); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '\\') ADVANCE(57); - if (lookahead == '`') ADVANCE(216); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(243); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '+') ADVANCE(248); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '-') ADVANCE(250); + if (lookahead == '.') ADVANCE(195); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(170); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(188); + if (lookahead == '=') ADVANCE(89); + if (lookahead == '>') ADVANCE(193); + if (lookahead == '?') ADVANCE(45); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == ']') ADVANCE(176); + if (lookahead == '^') ADVANCE(244); + if (lookahead == '`') ADVANCE(292); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '|') ADVANCE(247); + if (lookahead == '}') ADVANCE(166); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(21) + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(297); + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '\'' || '@' < lookahead) && + lookahead != '~') ADVANCE(316); END_STATE(); case 21: - if (lookahead == '$') ADVANCE(58); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '`') ADVANCE(216); + if (lookahead == '!') ADVANCE(88); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(243); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '+') ADVANCE(248); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '-') ADVANCE(250); + if (lookahead == '.') ADVANCE(195); + if (lookahead == '/') ADVANCE(252); + if (lookahead == ':') ADVANCE(170); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(188); + if (lookahead == '=') ADVANCE(89); + if (lookahead == '>') ADVANCE(193); + if (lookahead == '?') ADVANCE(45); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == ']') ADVANCE(176); + if (lookahead == '^') ADVANCE(244); + if (lookahead == '`') ADVANCE(292); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '|') ADVANCE(247); + if (lookahead == '}') ADVANCE(166); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(21) + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '\'' || '@' < lookahead) && + lookahead != '~') ADVANCE(316); END_STATE(); case 22: - if (lookahead == '\'') ADVANCE(197); - if (lookahead == '/') ADVANCE(205); - if (lookahead == '\\') ADVANCE(57); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(208); - if (lookahead != 0) ADVANCE(209); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '&') ADVANCE(28); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '*') ADVANCE(161); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(36); + if (lookahead == '0') ADVANCE(299); + if (lookahead == '<') ADVANCE(185); + if (lookahead == '@') ADVANCE(319); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == 's') ADVANCE(312); + if (lookahead == '{') ADVANCE(164); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(22) + if (lookahead != 0 && + lookahead > '!' && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(316); END_STATE(); case 23: - if (lookahead == '(') ADVANCE(104); - if (lookahead == '.') ADVANCE(138); - if (lookahead == '/') ADVANCE(129); - if (lookahead == ':') ADVANCE(107); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(126); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == '{') ADVANCE(101); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '#') ADVANCE(93); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '*') ADVANCE(161); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '.') ADVANCE(42); + if (lookahead == '/') ADVANCE(36); + if (lookahead == '0') ADVANCE(299); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(108); + if (lookahead == '@') ADVANCE(319); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == 's') ADVANCE(312); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '}') ADVANCE(166); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); if (anon_sym_BANG_character_set_1(lookahead)) SKIP(23) - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(232); if (lookahead != 0 && - lookahead > '~') ADVANCE(234); + lookahead > '!' && + (lookahead < '%' || '?' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead)) ADVANCE(316); END_STATE(); case 24: - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(215); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '&') ADVANCE(29); + if (lookahead == '/') ADVANCE(203); + if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(202); + if (lookahead != 0) ADVANCE(204); END_STATE(); case 25: - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(214); - if (lookahead != 0) ADVANCE(26); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '.') ADVANCE(195); + if (lookahead == '/') ADVANCE(37); + if (lookahead == ':') ADVANCE(170); + if (lookahead == '<') ADVANCE(184); + if (lookahead == '=') ADVANCE(171); + if (lookahead == '>') ADVANCE(191); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == '{') ADVANCE(164); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(25) + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(308); + if (lookahead != 0 && + lookahead > '~') ADVANCE(316); END_STATE(); case 26: - if (lookahead == '*') ADVANCE(25); - if (lookahead != 0) ADVANCE(26); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '/') ADVANCE(36); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(26) END_STATE(); case 27: - if (lookahead == '.') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(230); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '/') ADVANCE(271); + if (lookahead == '\\') ADVANCE(116); + if (lookahead == '\n' || + lookahead == '\r') SKIP(26) + if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(274); + if (lookahead != 0) ADVANCE(276); END_STATE(); case 28: - if (lookahead == '.') ADVANCE(142); - if (lookahead == '?') ADVANCE(190); + if (lookahead == '#') ADVANCE(127); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(87); END_STATE(); case 29: - if (lookahead == '.') ADVANCE(142); - if (lookahead == '?') ADVANCE(189); + if (lookahead == '#') ADVANCE(127); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(87); + if (lookahead != 0) ADVANCE(204); END_STATE(); case 30: - if (lookahead == '.') ADVANCE(158); + if (lookahead == '#') ADVANCE(127); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(87); + if (lookahead != 0) ADVANCE(210); END_STATE(); case 31: - if (lookahead == '/') ADVANCE(24); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(31) + if (lookahead == '$') ADVANCE(117); + if (lookahead == '/') ADVANCE(36); + if (lookahead == '\\') ADVANCE(116); + if (lookahead == '`') ADVANCE(292); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(32) END_STATE(); case 32: - if (lookahead == '/') ADVANCE(132); - if (lookahead == '<') ADVANCE(120); - if (lookahead == '{') ADVANCE(101); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(135); - if (lookahead != 0 && - lookahead != '>' && - lookahead != '}') ADVANCE(136); + if (lookahead == '$') ADVANCE(117); + if (lookahead == '/') ADVANCE(36); + if (lookahead == '`') ADVANCE(292); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(32) END_STATE(); case 33: - if (lookahead == '=') ADVANCE(186); + if (lookahead == '&') ADVANCE(30); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '/') ADVANCE(209); + if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(208); + if (lookahead != 0) ADVANCE(210); END_STATE(); case 34: - if (lookahead == '=') ADVANCE(184); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '/') ADVANCE(36); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(34) END_STATE(); case 35: - if (lookahead == '>') ADVANCE(118); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '/') ADVANCE(277); + if (lookahead == '\\') ADVANCE(116); + if (lookahead == '\n' || + lookahead == '\r') SKIP(34) + if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(280); + if (lookahead != 0) ADVANCE(282); END_STATE(); case 36: - if (lookahead == '>') ADVANCE(119); + if (lookahead == '*') ADVANCE(39); + if (lookahead == '/') ADVANCE(291); END_STATE(); case 37: - if (lookahead == '\\') ADVANCE(91); - if (lookahead == ']') ADVANCE(220); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(37); + if (lookahead == '*') ADVANCE(39); + if (lookahead == '/') ADVANCE(291); + if (lookahead == '>') ADVANCE(199); END_STATE(); case 38: - if (lookahead == '\\') ADVANCE(56); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(236); + if (lookahead == '*') ADVANCE(38); + if (lookahead == '/') ADVANCE(288); + if (lookahead != 0) ADVANCE(39); END_STATE(); case 39: - if (lookahead == 'a') ADVANCE(51); + if (lookahead == '*') ADVANCE(38); + if (lookahead != 0) ADVANCE(39); END_STATE(); case 40: - if (lookahead == 'a') ADVANCE(52); + if (lookahead == '*') ADVANCE(205); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(39); + if (lookahead != 0) ADVANCE(206); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(47); + if (lookahead == '*') ADVANCE(211); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(39); + if (lookahead != 0) ADVANCE(212); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(35); + if (lookahead == '.') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(36); + if (lookahead == '.') ADVANCE(215); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(48); + if (lookahead == '.') ADVANCE(215); + if (lookahead == '?') ADVANCE(265); END_STATE(); case 45: - if (lookahead == 'l') ADVANCE(39); + if (lookahead == '.') ADVANCE(215); + if (lookahead == '?') ADVANCE(264); END_STATE(); case 46: - if (lookahead == 'l') ADVANCE(40); + if (lookahead == '.') ADVANCE(231); END_STATE(); case 47: - if (lookahead == 'm') ADVANCE(49); + if (lookahead == '/') ADVANCE(294); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(48) END_STATE(); case 48: - if (lookahead == 'm') ADVANCE(50); + if (lookahead == '/') ADVANCE(36); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(48) END_STATE(); case 49: - if (lookahead == 'p') ADVANCE(45); + if (lookahead == ';') ADVANCE(183); END_STATE(); case 50: - if (lookahead == 'p') ADVANCE(46); + if (lookahead == ';') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49); END_STATE(); case 51: - if (lookahead == 't') ADVANCE(42); + if (lookahead == ';') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50); END_STATE(); case 52: - if (lookahead == 't') ADVANCE(43); + if (lookahead == ';') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(51); END_STATE(); case 53: - if (lookahead == 't') ADVANCE(44); + if (lookahead == ';') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(52); END_STATE(); case 54: - if (lookahead == 'u') ADVANCE(59); - if (lookahead == 'x') ADVANCE(83); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(213); - if (lookahead != 0) ADVANCE(210); + if (lookahead == ';') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); case 55: - if (lookahead == 'u') ADVANCE(60); + if (lookahead == ';') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(54); END_STATE(); case 56: - if (lookahead == 'u') ADVANCE(61); + if (lookahead == ';') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(55); END_STATE(); case 57: - if (lookahead == 'u') ADVANCE(62); - if (lookahead == 'x') ADVANCE(83); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(213); - if (lookahead != 0) ADVANCE(210); + if (lookahead == ';') ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(56); END_STATE(); case 58: - if (lookahead == '{') ADVANCE(217); - END_STATE(); - case 59: - if (lookahead == '{') ADVANCE(77); + if (lookahead == ';') ADVANCE(183); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(57); + END_STATE(); + case 59: + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(49); END_STATE(); case 60: - if (lookahead == '{') ADVANCE(81); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); END_STATE(); case 61: - if (lookahead == '{') ADVANCE(82); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(60); END_STATE(); case 62: - if (lookahead == '{') ADVANCE(84); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(80); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(61); END_STATE(); case 63: - if (lookahead == '}') ADVANCE(234); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(62); END_STATE(); case 64: - if (lookahead == '}') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(63); END_STATE(); case 65: - if (lookahead == '}') ADVANCE(211); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(64); END_STATE(); case 66: - if (lookahead == '}') ADVANCE(236); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(65); END_STATE(); case 67: - if (lookahead == '+' || - lookahead == '-') ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(66); END_STATE(); case 68: - if (lookahead == '0' || - lookahead == '1') ADVANCE(225); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(67); END_STATE(); case 69: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(226); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(68); END_STATE(); case 70: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(69); END_STATE(); case 71: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(230); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(70); END_STATE(); case 72: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(71); END_STATE(); case 73: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); END_STATE(); case 74: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(234); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(73); END_STATE(); case 75: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(210); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(74); END_STATE(); case 76: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(75); END_STATE(); case 77: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(65); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(76); END_STATE(); case 78: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(211); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(77); END_STATE(); case 79: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(236); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(78); END_STATE(); case 80: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(83); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(79); END_STATE(); case 81: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(63); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 82: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(66); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(81); END_STATE(); case 83: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(75); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(82); END_STATE(); case 84: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(64); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); END_STATE(); case 85: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(78); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(84); END_STATE(); case 86: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(74); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 87: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(79); + if (lookahead == ';') ADVANCE(183); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 88: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(85); + if (lookahead == '=') ADVANCE(261); END_STATE(); case 89: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(86); + if (lookahead == '=') ADVANCE(259); END_STATE(); case 90: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); + if (lookahead == '>') ADVANCE(181); END_STATE(); case 91: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(37); + if (lookahead == '>') ADVANCE(182); END_STATE(); case 92: + if (lookahead == '\\') ADVANCE(154); + if (lookahead == ']') ADVANCE(296); if (lookahead != 0 && - lookahead != '\n') ADVANCE(220); + lookahead != '\n') ADVANCE(92); END_STATE(); case 93: - if (eof) ADVANCE(96); - if (lookahead == '!') ADVANCE(192); - if (lookahead == '"') ADVANCE(196); - if (lookahead == '#') ADVANCE(1); - if (lookahead == '$') ADVANCE(233); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(169); - if (lookahead == '\'') ADVANCE(197); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(99); - if (lookahead == '+') ADVANCE(176); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(178); - if (lookahead == '.') ADVANCE(139); - if (lookahead == '/') ADVANCE(129); - if (lookahead == '0') ADVANCE(223); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(106); - if (lookahead == '<') ADVANCE(122); - if (lookahead == '=') ADVANCE(110); - if (lookahead == '>') ADVANCE(127); - if (lookahead == '?') ADVANCE(28); - if (lookahead == '@') ADVANCE(237); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(172); - if (lookahead == '`') ADVANCE(216); - if (lookahead == '{') ADVANCE(101); - if (lookahead == '|') ADVANCE(173); - if (lookahead == '}') ADVANCE(103); - if (lookahead == '~') ADVANCE(193); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(93) - if (lookahead != 0 && - lookahead > 31) ADVANCE(234); + if (lookahead == '\\') ADVANCE(115); + if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(318); END_STATE(); case 94: - if (eof) ADVANCE(96); - if (lookahead == '!') ADVANCE(192); - if (lookahead == '"') ADVANCE(196); - if (lookahead == '#') ADVANCE(9); - if (lookahead == '%') ADVANCE(179); - if (lookahead == '&') ADVANCE(170); - if (lookahead == '\'') ADVANCE(197); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(100); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(140); - if (lookahead == '/') ADVANCE(129); - if (lookahead == '0') ADVANCE(223); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(106); - if (lookahead == '<') ADVANCE(124); - if (lookahead == '=') ADVANCE(109); - if (lookahead == '>') ADVANCE(128); - if (lookahead == '?') ADVANCE(29); - if (lookahead == '@') ADVANCE(237); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '^') ADVANCE(171); - if (lookahead == '`') ADVANCE(216); - if (lookahead == '{') ADVANCE(101); - if (lookahead == '|') ADVANCE(174); - if (lookahead == '}') ADVANCE(103); - if (lookahead == '~') ADVANCE(193); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(94) - if (lookahead != 0 && - lookahead > 31) ADVANCE(234); + if (lookahead == 'a') ADVANCE(110); END_STATE(); case 95: - if (eof) ADVANCE(96); - if (lookahead == '!') ADVANCE(191); - if (lookahead == '"') ADVANCE(196); - if (lookahead == '#') ADVANCE(1); - if (lookahead == '\'') ADVANCE(197); - if (lookahead == '(') ADVANCE(104); - if (lookahead == ')') ADVANCE(105); - if (lookahead == '*') ADVANCE(98); - if (lookahead == '+') ADVANCE(175); - if (lookahead == ',') ADVANCE(102); - if (lookahead == '-') ADVANCE(177); - if (lookahead == '.') ADVANCE(27); - if (lookahead == '/') ADVANCE(129); - if (lookahead == '0') ADVANCE(223); - if (lookahead == ':') ADVANCE(107); - if (lookahead == ';') ADVANCE(106); - if (lookahead == '<') ADVANCE(125); - if (lookahead == '=') ADVANCE(108); - if (lookahead == '>') ADVANCE(126); - if (lookahead == '@') ADVANCE(237); - if (lookahead == '[') ADVANCE(112); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(113); - if (lookahead == '`') ADVANCE(216); - if (lookahead == '{') ADVANCE(101); - if (lookahead == '}') ADVANCE(103); - if (lookahead == '~') ADVANCE(193); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(95) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != '^' && - lookahead != '|') ADVANCE(234); + if (lookahead == 'a') ADVANCE(111); END_STATE(); case 96: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (lookahead == 'e') ADVANCE(104); END_STATE(); case 97: - ACCEPT_TOKEN(sym_hash_bang_line); - if (lookahead == '\n') ADVANCE(238); - if (lookahead != 0) ADVANCE(97); + if (lookahead == 'e') ADVANCE(90); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == 'e') ADVANCE(109); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '=') ADVANCE(145); + if (lookahead == 'e') ADVANCE(91); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(181); + if (lookahead == 'e') ADVANCE(105); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == 'g') ADVANCE(98); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(101); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == 'l') ADVANCE(94); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (lookahead == 'l') ADVANCE(95); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == 'm') ADVANCE(106); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == 'm') ADVANCE(107); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == 'p') ADVANCE(102); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == 'p') ADVANCE(103); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == 't') ADVANCE(96); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(184); + if (lookahead == 't') ADVANCE(11); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(184); - if (lookahead == '>') ADVANCE(141); + if (lookahead == 't') ADVANCE(97); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(141); + if (lookahead == 't') ADVANCE(99); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == 't') ADVANCE(100); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == 'u') ADVANCE(118); + if (lookahead == 'x') ADVANCE(144); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(287); + if (lookahead != 0) ADVANCE(283); END_STATE(); case 114: - ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == 'u') ADVANCE(119); END_STATE(); case 115: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(215); + if (lookahead == 'u') ADVANCE(120); END_STATE(); case 116: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(115); - if (lookahead == '<') ADVANCE(117); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(116); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(114); + if (lookahead == 'u') ADVANCE(121); + if (lookahead == 'x') ADVANCE(144); + if (lookahead == '\r' || + lookahead == '?') ADVANCE(285); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(287); + if (lookahead != 0) ADVANCE(283); END_STATE(); case 117: - ACCEPT_TOKEN(sym__glimmer_template_content); - if (lookahead == '/') ADVANCE(53); + if (lookahead == '{') ADVANCE(293); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_LTtemplate_GT); + if (lookahead == '{') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_LT_SLASHtemplate_GT); + if (lookahead == '{') ADVANCE(142); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '{') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(151); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(168); - if (lookahead == '=') ADVANCE(183); + if (lookahead == '{') ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(141); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(168); - if (lookahead == '=') ADVANCE(183); - if (lookahead == 't') ADVANCE(41); + if (lookahead == '}') ADVANCE(316); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(167); - if (lookahead == '=') ADVANCE(183); + if (lookahead == '}') ADVANCE(283); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(167); - if (lookahead == '=') ADVANCE(183); - if (lookahead == 't') ADVANCE(41); + if (lookahead == '}') ADVANCE(284); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == 't') ADVANCE(41); + if (lookahead == '}') ADVANCE(318); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '+' || + lookahead == '-') ADVANCE(133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(188); - if (lookahead == '>') ADVANCE(163); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(53); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(188); - if (lookahead == '>') ADVANCE(164); + if (lookahead == '0' || + lookahead == '1') ADVANCE(301); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(215); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(302); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(215); - if (lookahead == '=') ADVANCE(146); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(300); END_STATE(); case 131: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '\n') ADVANCE(136); - if (lookahead == '<' || - lookahead == '>' || - lookahead == '{' || - lookahead == '}') ADVANCE(215); - if (lookahead != 0) ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); END_STATE(); case 132: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(134); - if (lookahead == '/') ADVANCE(131); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '>' && - lookahead != '{' && - lookahead != '}') ADVANCE(136); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(304); END_STATE(); case 133: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(133); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '<' || - lookahead == '>' || - lookahead == '{' || - lookahead == '}') ADVANCE(26); - if (lookahead != 0) ADVANCE(134); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); END_STATE(); case 134: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '*') ADVANCE(133); - if (lookahead == '<' || - lookahead == '>' || - lookahead == '{' || - lookahead == '}') ADVANCE(26); - if (lookahead != 0) ADVANCE(134); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(316); END_STATE(); case 135: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead == '/') ADVANCE(132); - if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(135); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '>' && - lookahead != '{' && - lookahead != '}') ADVANCE(136); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(283); END_STATE(); case 136: - ACCEPT_TOKEN(sym_jsx_text); - if (lookahead != 0 && - lookahead != '<' && - lookahead != '>' && - lookahead != '{' && - lookahead != '}') ADVANCE(136); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); case 137: - ACCEPT_TOKEN(sym_jsx_identifier); - if (lookahead == '$' || - lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(284); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(30); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(230); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(318); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(230); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(58); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_EQ_GT); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(144); END_STATE(); case 142: - ACCEPT_TOKEN(sym_optional_chain); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(135); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(134); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(139); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(146); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(147); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(148); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + if (lookahead != 0 && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(204); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + if (lookahead != 0 && + lookahead != '#' && + (lookahead < 'A' || 'Z' < lookahead) && + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(210); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(92); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(296); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + if (eof) ADVANCE(159); + if (lookahead == '!') ADVANCE(267); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '#') ADVANCE(1); + if (lookahead == '$') ADVANCE(314); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '&') ADVANCE(242); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(162); + if (lookahead == '+') ADVANCE(249); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(196); + if (lookahead == '/') ADVANCE(253); + if (lookahead == '0') ADVANCE(299); + if (lookahead == ':') ADVANCE(170); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(186); + if (lookahead == '=') ADVANCE(173); + if (lookahead == '>') ADVANCE(192); + if (lookahead == '?') ADVANCE(44); + if (lookahead == '@') ADVANCE(319); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == ']') ADVANCE(176); + if (lookahead == '^') ADVANCE(245); + if (lookahead == '`') ADVANCE(292); + if (lookahead == 's') ADVANCE(312); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '|') ADVANCE(246); + if (lookahead == '}') ADVANCE(166); + if (lookahead == '~') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(156) + if (lookahead != 0 && + lookahead > 31) ADVANCE(316); END_STATE(); case 157: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + if (eof) ADVANCE(159); + if (lookahead == '!') ADVANCE(267); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '#') ADVANCE(2); + if (lookahead == '%') ADVANCE(254); + if (lookahead == '&') ADVANCE(243); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '+') ADVANCE(248); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '-') ADVANCE(250); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(299); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(189); + if (lookahead == '=') ADVANCE(172); + if (lookahead == '>') ADVANCE(193); + if (lookahead == '?') ADVANCE(45); + if (lookahead == '@') ADVANCE(319); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == '^') ADVANCE(244); + if (lookahead == '`') ADVANCE(292); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '|') ADVANCE(247); + if (lookahead == '}') ADVANCE(166); + if (lookahead == '~') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(157) + if (lookahead != 0 && + lookahead > 31 && + (lookahead < ')' || ':' < lookahead) && + lookahead != ']') ADVANCE(316); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if (eof) ADVANCE(159); + if (lookahead == '!') ADVANCE(266); + if (lookahead == '"') ADVANCE(200); + if (lookahead == '#') ADVANCE(1); + if (lookahead == '\'') ADVANCE(201); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(169); + if (lookahead == '*') ADVANCE(161); + if (lookahead == '+') ADVANCE(248); + if (lookahead == ',') ADVANCE(165); + if (lookahead == '-') ADVANCE(250); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(252); + if (lookahead == '0') ADVANCE(299); + if (lookahead == ':') ADVANCE(170); + if (lookahead == ';') ADVANCE(168); + if (lookahead == '<') ADVANCE(190); + if (lookahead == '=') ADVANCE(174); + if (lookahead == '>') ADVANCE(191); + if (lookahead == '?') ADVANCE(43); + if (lookahead == '@') ADVANCE(319); + if (lookahead == '[') ADVANCE(175); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == ']') ADVANCE(176); + if (lookahead == '`') ADVANCE(292); + if (lookahead == '{') ADVANCE(164); + if (lookahead == '}') ADVANCE(166); + if (lookahead == '~') ADVANCE(268); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); + if (anon_sym_BANG_character_set_1(lookahead)) SKIP(158) + if (lookahead != 0 && + lookahead > 31 && + lookahead != '%' && + lookahead != '&' && + lookahead != '^' && + lookahead != '|') ADVANCE(316); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 160: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '=') ADVANCE(155); + ACCEPT_TOKEN(sym_hash_bang_line); + if (lookahead == '\n') ADVANCE(321); + if (lookahead != 0) ADVANCE(160); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '=') ADVANCE(156); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(257); + if (lookahead == '=') ADVANCE(218); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(151); - if (lookahead == '>') ADVANCE(166); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(256); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(165); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(160); - if (lookahead == '=') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(159); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(259); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(150); - if (lookahead == '|') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(259); + if (lookahead == '>') ADVANCE(214); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(214); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(194); - if (lookahead == '=') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(195); + ACCEPT_TOKEN(sym__glimmer_template_content); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(195); - if (lookahead == '=') ADVANCE(144); + ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '*') ADVANCE(39); + if (lookahead == '/') ADVANCE(291); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '/') ADVANCE(178); + if (lookahead == '<') ADVANCE(180); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(179); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(177); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(147); + ACCEPT_TOKEN(sym__glimmer_template_content); + if (lookahead == '/') ADVANCE(112); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(sym_glimmer_opening_tag); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(154); + ACCEPT_TOKEN(sym_glimmer_closing_tag); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(sym_html_character_reference); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(198); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '/') ADVANCE(198); + if (lookahead == '<') ADVANCE(241); + if (lookahead == '=') ADVANCE(258); + if (lookahead == 't') ADVANCE(96); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(241); + if (lookahead == '=') ADVANCE(258); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(240); + if (lookahead == '=') ADVANCE(258); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(240); + if (lookahead == '=') ADVANCE(258); + if (lookahead == 't') ADVANCE(96); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); - if (lookahead == '=') ADVANCE(157); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == 't') ADVANCE(96); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(263); + if (lookahead == '>') ADVANCE(236); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(263); + if (lookahead == '>') ADVANCE(237); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(sym_jsx_identifier); + if (lookahead == '$' || + lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); END_STATE(); case 198: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '\n') ADVANCE(203); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(198); + ACCEPT_TOKEN(anon_sym_LT_SLASH); END_STATE(); case 199: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(201); - if (lookahead == '/') ADVANCE(198); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_SLASH_GT); END_STATE(); case 200: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(200); - if (lookahead == '/') ADVANCE(203); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 201: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '*') ADVANCE(200); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 202: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); - if (lookahead == '/') ADVANCE(199); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(29); + if (lookahead == '/') ADVANCE(203); if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(202); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(203); + lookahead != '"') ADVANCE(204); END_STATE(); case 203: - ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(152); + if (lookahead == '*') ADVANCE(206); + if (lookahead == '/') ADVANCE(207); if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(203); + lookahead != '"') ADVANCE(204); END_STATE(); case 204: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '\n') ADVANCE(209); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(152); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(204); + lookahead != '"') ADVANCE(204); END_STATE(); case 205: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(207); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(40); + if (lookahead == '*') ADVANCE(205); if (lookahead == '/') ADVANCE(204); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(209); + lookahead != '"') ADVANCE(206); END_STATE(); case 206: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(206); - if (lookahead == '/') ADVANCE(209); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(40); + if (lookahead == '*') ADVANCE(205); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(207); + lookahead != '"') ADVANCE(206); END_STATE(); case 207: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '*') ADVANCE(206); + ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); + if (lookahead == '&') ADVANCE(289); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 8232 || + lookahead == 8233) ADVANCE(204); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(207); + lookahead != '"') ADVANCE(207); END_STATE(); case 208: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); - if (lookahead == '/') ADVANCE(205); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(30); + if (lookahead == '/') ADVANCE(209); if (anon_sym_BANG_character_set_1(lookahead)) ADVANCE(208); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(209); + lookahead != '\'') ADVANCE(210); END_STATE(); case 209: - ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(153); + if (lookahead == '*') ADVANCE(212); + if (lookahead == '/') ADVANCE(213); if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(209); + lookahead != '\'') ADVANCE(210); END_STATE(); case 210: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(153); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(210); END_STATE(); case 211: - ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(55); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(234); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(41); + if (lookahead == '*') ADVANCE(211); + if (lookahead == '/') ADVANCE(210); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(212); END_STATE(); case 212: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(210); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(41); + if (lookahead == '*') ADVANCE(211); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(212); END_STATE(); case 213: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(212); + ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); + if (lookahead == '&') ADVANCE(290); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 8232 || + lookahead == 8233) ADVANCE(210); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(213); END_STATE(); case 214: - ACCEPT_TOKEN(sym_comment); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 215: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(215); + ACCEPT_TOKEN(sym_optional_chain); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_BQUOTE); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(215); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 219: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(31) - if (lookahead == '/') ADVANCE(24); - if (lookahead == '[') ADVANCE(37); - if (lookahead == '\\') ADVANCE(92); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(219); - if (lookahead != 0) ADVANCE(220); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 220: - ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '[') ADVANCE(37); - if (lookahead == '\\') ADVANCE(92); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '/') ADVANCE(220); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 221: - ACCEPT_TOKEN(sym_regex_flags); - if (lookahead == '\\') ADVANCE(55); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(221); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(234); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 222: - ACCEPT_TOKEN(sym_number); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 223: - ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(231); - if (lookahead == '0') ADVANCE(228); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(68); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(67); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(69); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(76); - if (lookahead == '_') ADVANCE(72); - if (lookahead == 'n') ADVANCE(222); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(224); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 224: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 227: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + END_STATE(); + case 231: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 232: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(228); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 235: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(229); + END_STATE(); + case 236: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(224); + if (lookahead == '>') ADVANCE(239); + END_STATE(); + case 237: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(238); + END_STATE(); + case 238: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + END_STATE(); + case 239: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(225); + END_STATE(); + case 240: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 241: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(226); + END_STATE(); + case 242: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(233); + if (lookahead == '=') ADVANCE(222); + END_STATE(); + case 243: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(232); + END_STATE(); + case 244: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 245: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(221); + END_STATE(); + case 246: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(223); + if (lookahead == '|') ADVANCE(235); + END_STATE(); + case 247: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(234); + END_STATE(); + case 248: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(269); + END_STATE(); + case 249: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(269); + if (lookahead == '=') ADVANCE(216); + END_STATE(); + case 250: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(270); + END_STATE(); + case 251: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(270); + if (lookahead == '=') ADVANCE(217); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(39); + if (lookahead == '/') ADVANCE(291); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(39); + if (lookahead == '/') ADVANCE(291); + if (lookahead == '=') ADVANCE(219); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(220); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 257: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(227); + END_STATE(); + case 258: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 259: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(260); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + END_STATE(); + case 261: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(262); + END_STATE(); + case 262: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + END_STATE(); + case 265: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(230); + END_STATE(); + case 266: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 267: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(261); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 269: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 270: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 271: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(273); + if (lookahead == '/') ADVANCE(275); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(276); + END_STATE(); + case 272: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(272); + if (lookahead == '/') ADVANCE(276); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(273); + END_STATE(); + case 273: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '*') ADVANCE(272); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(273); + END_STATE(); + case 274: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == '/') ADVANCE(271); + if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(274); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(276); + END_STATE(); + case 275: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(276); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(275); + END_STATE(); + case 276: + ACCEPT_TOKEN(sym_unescaped_double_string_fragment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '\\') ADVANCE(276); + END_STATE(); + case 277: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(279); + if (lookahead == '/') ADVANCE(281); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(282); + END_STATE(); + case 278: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(278); + if (lookahead == '/') ADVANCE(282); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(279); + END_STATE(); + case 279: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '*') ADVANCE(278); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(279); + END_STATE(); + case 280: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == '/') ADVANCE(277); + if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(280); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(282); + END_STATE(); + case 281: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead == 8232 || + lookahead == 8233) ADVANCE(282); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(281); + END_STATE(); + case 282: + ACCEPT_TOKEN(sym_unescaped_single_string_fragment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(282); + END_STATE(); + case 283: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 284: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(114); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + END_STATE(); + case 285: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\n' || + lookahead == 8232 || + lookahead == 8233) ADVANCE(283); + END_STATE(); + case 286: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(283); + END_STATE(); + case 287: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(286); + END_STATE(); + case 288: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 289: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 8232 || + lookahead == 8233) ADVANCE(204); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(291); + if (lookahead != 0) ADVANCE(207); + END_STATE(); + case 290: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n' || + lookahead == '\r' || + lookahead == 8232 || + lookahead == 8233) ADVANCE(210); + if (lookahead == '#' || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(291); + if (lookahead != 0) ADVANCE(213); + END_STATE(); + case 291: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != 8232 && + lookahead != 8233) ADVANCE(291); + END_STATE(); + case 292: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 293: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + END_STATE(); + case 294: + ACCEPT_TOKEN(anon_sym_SLASH2); + END_STATE(); + case 295: + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '\n') SKIP(48) + if (lookahead == '/') ADVANCE(36); + if (lookahead == '[') ADVANCE(92); + if (lookahead == '\\') ADVANCE(155); + if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(295); + if (lookahead != 0) ADVANCE(296); + END_STATE(); + case 296: + ACCEPT_TOKEN(sym_regex_pattern); + if (lookahead == '[') ADVANCE(92); + if (lookahead == '\\') ADVANCE(155); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '/') ADVANCE(296); + END_STATE(); + case 297: + ACCEPT_TOKEN(sym_regex_flags); + if (lookahead == '\\') ADVANCE(114); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(297); + if (!sym_identifier_character_set_2(lookahead)) ADVANCE(316); + END_STATE(); + case 298: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(231); + END_STATE(); + case 299: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(307); + if (lookahead == '0') ADVANCE(304); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(128); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(67); - if (lookahead == '_') ADVANCE(70); - if (lookahead == 'n') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + lookahead == 'e') ADVANCE(126); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(129); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(136); + if (lookahead == '_') ADVANCE(132); + if (lookahead == 'n') ADVANCE(298); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(300); END_STATE(); - case 225: + case 300: + ACCEPT_TOKEN(sym_number); + if (lookahead == '.') ADVANCE(307); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(126); + if (lookahead == '_') ADVANCE(130); + if (lookahead == 'n') ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(300); + END_STATE(); + case 301: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(68); - if (lookahead == 'n') ADVANCE(222); + if (lookahead == '_') ADVANCE(128); + if (lookahead == 'n') ADVANCE(298); if (lookahead == '0' || - lookahead == '1') ADVANCE(225); + lookahead == '1') ADVANCE(301); END_STATE(); - case 226: + case 302: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(69); - if (lookahead == 'n') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(226); + if (lookahead == '_') ADVANCE(129); + if (lookahead == 'n') ADVANCE(298); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(302); END_STATE(); - case 227: + case 303: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(76); - if (lookahead == 'n') ADVANCE(222); + if (lookahead == '_') ADVANCE(136); + if (lookahead == 'n') ADVANCE(298); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(303); END_STATE(); - case 228: + case 304: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(72); - if (lookahead == 'n') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(228); + if (lookahead == '_') ADVANCE(132); + if (lookahead == 'n') ADVANCE(298); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(304); END_STATE(); - case 229: + case 305: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(73); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(229); + if (lookahead == '_') ADVANCE(133); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(305); END_STATE(); - case 230: + case 306: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(67); - if (lookahead == '_') ADVANCE(71); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(230); + lookahead == 'e') ADVANCE(126); + if (lookahead == '_') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); END_STATE(); - case 231: + case 307: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(230); + lookahead == 'e') ADVANCE(126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(306); END_STATE(); - case 232: + case 308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(137); - if (lookahead == '\\') ADVANCE(55); + if (lookahead == '-') ADVANCE(194); + if (lookahead == '\\') ADVANCE(114); if (lookahead == '$' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(232); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(234); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(308); + if (!sym_identifier_character_set_3(lookahead)) ADVANCE(316); END_STATE(); - case 233: + case 309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(55); - if (lookahead == '{') ADVANCE(217); - if (!sym_identifier_character_set_4(lookahead)) ADVANCE(234); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == 'a') ADVANCE(313); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); END_STATE(); - case 234: + case 310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(55); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(234); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == 'c') ADVANCE(315); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); END_STATE(); - case 235: + case 311: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == 'i') ADVANCE(310); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + END_STATE(); + case 312: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == 't') ADVANCE(309); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + END_STATE(); + case 313: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == 't') ADVANCE(311); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + END_STATE(); + case 314: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == '{') ADVANCE(293); + if (!sym_identifier_character_set_4(lookahead)) ADVANCE(316); + END_STATE(); + case 315: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(101); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + END_STATE(); + case 316: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(114); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(316); + END_STATE(); + case 317: ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\n') ADVANCE(238); - if (lookahead == '\\') ADVANCE(2); - if (sym_preproc_character_set_2(lookahead)) ADVANCE(9); - if (lookahead != 0) ADVANCE(235); + if (lookahead == '\n') ADVANCE(321); + if (lookahead == '\\') ADVANCE(3); + if (sym_preproc_character_set_2(lookahead)) ADVANCE(10); + if (lookahead != 0) ADVANCE(317); END_STATE(); - case 236: + case 318: ACCEPT_TOKEN(sym_private_property_identifier); - if (lookahead == '\\') ADVANCE(56); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(236); + if (lookahead == '\\') ADVANCE(115); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(318); END_STATE(); - case 237: + case 319: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 238: + case 320: + ACCEPT_TOKEN(aux_sym_method_definition_token1); + if (lookahead == '\n') ADVANCE(320); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(11); + END_STATE(); + case 321: ACCEPT_TOKEN(sym_preproc); END_STATE(); default: @@ -5699,15 +6483,16 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'g') ADVANCE(7); if (lookahead == 'i') ADVANCE(8); if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'n') ADVANCE(10); - if (lookahead == 'o') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'u') ADVANCE(15); - if (lookahead == 'v') ADVANCE(16); - if (lookahead == 'w') ADVANCE(17); - if (lookahead == 'y') ADVANCE(18); + if (lookahead == 'm') ADVANCE(10); + if (lookahead == 'n') ADVANCE(11); + if (lookahead == 'o') ADVANCE(12); + if (lookahead == 'r') ADVANCE(13); + if (lookahead == 's') ADVANCE(14); + if (lookahead == 't') ADVANCE(15); + if (lookahead == 'u') ADVANCE(16); + if (lookahead == 'v') ADVANCE(17); + if (lookahead == 'w') ADVANCE(18); + if (lookahead == 'y') ADVANCE(19); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5715,6 +6500,8 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 5760 || (8192 <= lookahead && lookahead <= 8203) || + lookahead == 8232 || + lookahead == 8233 || lookahead == 8239 || lookahead == 8287 || lookahead == 8288 || @@ -5722,605 +6509,617 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(0) END_STATE(); case 1: - if (lookahead == 's') ADVANCE(19); - if (lookahead == 'w') ADVANCE(20); + if (lookahead == 's') ADVANCE(20); + if (lookahead == 'w') ADVANCE(21); END_STATE(); case 2: - if (lookahead == 'r') ADVANCE(21); + if (lookahead == 'r') ADVANCE(22); END_STATE(); case 3: - if (lookahead == 'a') ADVANCE(22); - if (lookahead == 'l') ADVANCE(23); - if (lookahead == 'o') ADVANCE(24); + if (lookahead == 'a') ADVANCE(23); + if (lookahead == 'l') ADVANCE(24); + if (lookahead == 'o') ADVANCE(25); END_STATE(); case 4: - if (lookahead == 'e') ADVANCE(25); - if (lookahead == 'o') ADVANCE(26); + if (lookahead == 'e') ADVANCE(26); + if (lookahead == 'o') ADVANCE(27); END_STATE(); case 5: - if (lookahead == 'l') ADVANCE(27); - if (lookahead == 'x') ADVANCE(28); + if (lookahead == 'l') ADVANCE(28); + if (lookahead == 'x') ADVANCE(29); END_STATE(); case 6: - if (lookahead == 'a') ADVANCE(29); - if (lookahead == 'i') ADVANCE(30); - if (lookahead == 'o') ADVANCE(31); - if (lookahead == 'r') ADVANCE(32); - if (lookahead == 'u') ADVANCE(33); + if (lookahead == 'a') ADVANCE(30); + if (lookahead == 'i') ADVANCE(31); + if (lookahead == 'o') ADVANCE(32); + if (lookahead == 'r') ADVANCE(33); + if (lookahead == 'u') ADVANCE(34); END_STATE(); case 7: - if (lookahead == 'e') ADVANCE(34); + if (lookahead == 'e') ADVANCE(35); END_STATE(); case 8: - if (lookahead == 'f') ADVANCE(35); - if (lookahead == 'm') ADVANCE(36); - if (lookahead == 'n') ADVANCE(37); + if (lookahead == 'f') ADVANCE(36); + if (lookahead == 'm') ADVANCE(37); + if (lookahead == 'n') ADVANCE(38); END_STATE(); case 9: - if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'e') ADVANCE(39); END_STATE(); case 10: - if (lookahead == 'e') ADVANCE(39); - if (lookahead == 'u') ADVANCE(40); + if (lookahead == 'e') ADVANCE(40); END_STATE(); case 11: - if (lookahead == 'f') ADVANCE(41); + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'u') ADVANCE(42); END_STATE(); case 12: - if (lookahead == 'e') ADVANCE(42); + if (lookahead == 'f') ADVANCE(43); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(43); - if (lookahead == 't') ADVANCE(44); - if (lookahead == 'u') ADVANCE(45); - if (lookahead == 'w') ADVANCE(46); + if (lookahead == 'e') ADVANCE(44); END_STATE(); case 14: - if (lookahead == 'a') ADVANCE(47); - if (lookahead == 'h') ADVANCE(48); - if (lookahead == 'r') ADVANCE(49); - if (lookahead == 'y') ADVANCE(50); + if (lookahead == 'e') ADVANCE(45); + if (lookahead == 't') ADVANCE(46); + if (lookahead == 'u') ADVANCE(47); + if (lookahead == 'w') ADVANCE(48); END_STATE(); case 15: - if (lookahead == 'n') ADVANCE(51); + if (lookahead == 'a') ADVANCE(49); + if (lookahead == 'h') ADVANCE(50); + if (lookahead == 'r') ADVANCE(51); + if (lookahead == 'y') ADVANCE(52); END_STATE(); case 16: - if (lookahead == 'a') ADVANCE(52); - if (lookahead == 'o') ADVANCE(53); + if (lookahead == 'n') ADVANCE(53); END_STATE(); case 17: - if (lookahead == 'h') ADVANCE(54); - if (lookahead == 'i') ADVANCE(55); + if (lookahead == 'a') ADVANCE(54); + if (lookahead == 'o') ADVANCE(55); END_STATE(); case 18: - if (lookahead == 'i') ADVANCE(56); + if (lookahead == 'h') ADVANCE(56); + if (lookahead == 'i') ADVANCE(57); END_STATE(); case 19: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'y') ADVANCE(57); + if (lookahead == 'i') ADVANCE(58); END_STATE(); case 20: - if (lookahead == 'a') ADVANCE(58); + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 'y') ADVANCE(59); END_STATE(); case 21: - if (lookahead == 'e') ADVANCE(59); + if (lookahead == 'a') ADVANCE(60); END_STATE(); case 22: - if (lookahead == 's') ADVANCE(60); - if (lookahead == 't') ADVANCE(61); + if (lookahead == 'e') ADVANCE(61); END_STATE(); case 23: - if (lookahead == 'a') ADVANCE(62); + if (lookahead == 's') ADVANCE(62); + if (lookahead == 't') ADVANCE(63); END_STATE(); case 24: - if (lookahead == 'n') ADVANCE(63); + if (lookahead == 'a') ADVANCE(64); END_STATE(); case 25: - if (lookahead == 'b') ADVANCE(64); - if (lookahead == 'f') ADVANCE(65); - if (lookahead == 'l') ADVANCE(66); + if (lookahead == 'n') ADVANCE(65); END_STATE(); case 26: - ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'b') ADVANCE(66); + if (lookahead == 'f') ADVANCE(67); + if (lookahead == 'l') ADVANCE(68); END_STATE(); case 27: - if (lookahead == 's') ADVANCE(67); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 28: - if (lookahead == 'p') ADVANCE(68); - if (lookahead == 't') ADVANCE(69); + if (lookahead == 's') ADVANCE(69); END_STATE(); case 29: - if (lookahead == 'l') ADVANCE(70); + if (lookahead == 'p') ADVANCE(70); + if (lookahead == 't') ADVANCE(71); END_STATE(); case 30: - if (lookahead == 'n') ADVANCE(71); + if (lookahead == 'l') ADVANCE(72); END_STATE(); case 31: - if (lookahead == 'r') ADVANCE(72); + if (lookahead == 'n') ADVANCE(73); END_STATE(); case 32: - if (lookahead == 'o') ADVANCE(73); + if (lookahead == 'r') ADVANCE(74); END_STATE(); case 33: - if (lookahead == 'n') ADVANCE(74); + if (lookahead == 'o') ADVANCE(75); END_STATE(); case 34: - if (lookahead == 't') ADVANCE(75); + if (lookahead == 'n') ADVANCE(76); END_STATE(); case 35: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 36: - if (lookahead == 'p') ADVANCE(76); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 37: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 's') ADVANCE(77); + if (lookahead == 'p') ADVANCE(78); END_STATE(); case 38: - if (lookahead == 't') ADVANCE(78); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 's') ADVANCE(79); END_STATE(); case 39: - if (lookahead == 'w') ADVANCE(79); + if (lookahead == 't') ADVANCE(80); END_STATE(); case 40: - if (lookahead == 'l') ADVANCE(80); + if (lookahead == 't') ADVANCE(81); END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_of); + if (lookahead == 'w') ADVANCE(82); END_STATE(); case 42: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 'l') ADVANCE(83); END_STATE(); case 43: - if (lookahead == 't') ADVANCE(82); + ACCEPT_TOKEN(anon_sym_of); END_STATE(); case 44: - if (lookahead == 'a') ADVANCE(83); + if (lookahead == 't') ADVANCE(84); END_STATE(); case 45: - if (lookahead == 'p') ADVANCE(84); + if (lookahead == 't') ADVANCE(85); END_STATE(); case 46: - if (lookahead == 'i') ADVANCE(85); + if (lookahead == 'a') ADVANCE(86); END_STATE(); case 47: - if (lookahead == 'r') ADVANCE(86); + if (lookahead == 'p') ADVANCE(87); END_STATE(); case 48: - if (lookahead == 'i') ADVANCE(87); - if (lookahead == 'r') ADVANCE(88); + if (lookahead == 'i') ADVANCE(88); END_STATE(); case 49: - if (lookahead == 'u') ADVANCE(89); - if (lookahead == 'y') ADVANCE(90); + if (lookahead == 'r') ADVANCE(89); END_STATE(); case 50: - if (lookahead == 'p') ADVANCE(91); + if (lookahead == 'i') ADVANCE(90); + if (lookahead == 'r') ADVANCE(91); END_STATE(); case 51: - if (lookahead == 'd') ADVANCE(92); + if (lookahead == 'u') ADVANCE(92); + if (lookahead == 'y') ADVANCE(93); END_STATE(); case 52: - if (lookahead == 'r') ADVANCE(93); + if (lookahead == 'p') ADVANCE(94); END_STATE(); case 53: - if (lookahead == 'i') ADVANCE(94); + if (lookahead == 'd') ADVANCE(95); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(95); + if (lookahead == 'r') ADVANCE(96); END_STATE(); case 55: - if (lookahead == 't') ADVANCE(96); + if (lookahead == 'i') ADVANCE(97); END_STATE(); case 56: - if (lookahead == 'e') ADVANCE(97); + if (lookahead == 'i') ADVANCE(98); END_STATE(); case 57: - if (lookahead == 'n') ADVANCE(98); + if (lookahead == 't') ADVANCE(99); END_STATE(); case 58: - if (lookahead == 'i') ADVANCE(99); + if (lookahead == 'e') ADVANCE(100); END_STATE(); case 59: - if (lookahead == 'a') ADVANCE(100); + if (lookahead == 'n') ADVANCE(101); END_STATE(); case 60: - if (lookahead == 'e') ADVANCE(101); + if (lookahead == 'i') ADVANCE(102); END_STATE(); case 61: - if (lookahead == 'c') ADVANCE(102); + if (lookahead == 'a') ADVANCE(103); END_STATE(); case 62: - if (lookahead == 's') ADVANCE(103); + if (lookahead == 'e') ADVANCE(104); END_STATE(); case 63: - if (lookahead == 's') ADVANCE(104); - if (lookahead == 't') ADVANCE(105); + if (lookahead == 'c') ADVANCE(105); END_STATE(); case 64: - if (lookahead == 'u') ADVANCE(106); + if (lookahead == 's') ADVANCE(106); END_STATE(); case 65: - if (lookahead == 'a') ADVANCE(107); + if (lookahead == 's') ADVANCE(107); + if (lookahead == 't') ADVANCE(108); END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(108); + if (lookahead == 'u') ADVANCE(109); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(109); + if (lookahead == 'a') ADVANCE(110); END_STATE(); case 68: - if (lookahead == 'o') ADVANCE(110); + if (lookahead == 'e') ADVANCE(111); END_STATE(); case 69: - if (lookahead == 'e') ADVANCE(111); + if (lookahead == 'e') ADVANCE(112); END_STATE(); case 70: - if (lookahead == 's') ADVANCE(112); + if (lookahead == 'o') ADVANCE(113); END_STATE(); case 71: - if (lookahead == 'a') ADVANCE(113); + if (lookahead == 'e') ADVANCE(114); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(115); END_STATE(); case 73: - if (lookahead == 'm') ADVANCE(114); + if (lookahead == 'a') ADVANCE(116); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 75: - ACCEPT_TOKEN(anon_sym_get); + if (lookahead == 'm') ADVANCE(117); END_STATE(); case 76: - if (lookahead == 'o') ADVANCE(116); + if (lookahead == 'c') ADVANCE(118); END_STATE(); case 77: - if (lookahead == 't') ADVANCE(117); + ACCEPT_TOKEN(anon_sym_get); END_STATE(); case 78: - ACCEPT_TOKEN(anon_sym_let); + if (lookahead == 'o') ADVANCE(119); END_STATE(); case 79: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 't') ADVANCE(120); END_STATE(); case 80: - if (lookahead == 'l') ADVANCE(118); + ACCEPT_TOKEN(anon_sym_let); END_STATE(); case 81: - if (lookahead == 'u') ADVANCE(119); + if (lookahead == 'a') ADVANCE(121); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_set); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 83: - if (lookahead == 't') ADVANCE(120); + if (lookahead == 'l') ADVANCE(122); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(121); + if (lookahead == 'u') ADVANCE(123); END_STATE(); case 85: - if (lookahead == 't') ADVANCE(122); + ACCEPT_TOKEN(anon_sym_set); END_STATE(); case 86: - if (lookahead == 'g') ADVANCE(123); + if (lookahead == 't') ADVANCE(124); END_STATE(); case 87: - if (lookahead == 's') ADVANCE(124); + if (lookahead == 'e') ADVANCE(125); END_STATE(); case 88: - if (lookahead == 'o') ADVANCE(125); + if (lookahead == 't') ADVANCE(126); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(126); + if (lookahead == 'g') ADVANCE(127); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 's') ADVANCE(128); END_STATE(); case 91: - if (lookahead == 'e') ADVANCE(127); + if (lookahead == 'o') ADVANCE(129); END_STATE(); case 92: - if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'e') ADVANCE(130); END_STATE(); case 93: - ACCEPT_TOKEN(anon_sym_var); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 94: - if (lookahead == 'd') ADVANCE(129); + if (lookahead == 'e') ADVANCE(131); END_STATE(); case 95: - if (lookahead == 'l') ADVANCE(130); + if (lookahead == 'e') ADVANCE(132); END_STATE(); case 96: - if (lookahead == 'h') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_var); END_STATE(); case 97: - if (lookahead == 'l') ADVANCE(132); + if (lookahead == 'd') ADVANCE(133); END_STATE(); case 98: - if (lookahead == 'c') ADVANCE(133); + if (lookahead == 'l') ADVANCE(134); END_STATE(); case 99: - if (lookahead == 't') ADVANCE(134); + if (lookahead == 'h') ADVANCE(135); END_STATE(); case 100: - if (lookahead == 'k') ADVANCE(135); + if (lookahead == 'l') ADVANCE(136); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'c') ADVANCE(137); END_STATE(); case 102: - if (lookahead == 'h') ADVANCE(136); + if (lookahead == 't') ADVANCE(138); END_STATE(); case 103: - if (lookahead == 's') ADVANCE(137); + if (lookahead == 'k') ADVANCE(139); END_STATE(); case 104: - if (lookahead == 't') ADVANCE(138); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 105: - if (lookahead == 'i') ADVANCE(139); + if (lookahead == 'h') ADVANCE(140); END_STATE(); case 106: - if (lookahead == 'g') ADVANCE(140); + if (lookahead == 's') ADVANCE(141); END_STATE(); case 107: - if (lookahead == 'u') ADVANCE(141); + if (lookahead == 't') ADVANCE(142); END_STATE(); case 108: - if (lookahead == 't') ADVANCE(142); + if (lookahead == 'i') ADVANCE(143); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_else); + if (lookahead == 'g') ADVANCE(144); END_STATE(); case 110: - if (lookahead == 'r') ADVANCE(143); + if (lookahead == 'u') ADVANCE(145); END_STATE(); case 111: - if (lookahead == 'n') ADVANCE(144); + if (lookahead == 't') ADVANCE(146); END_STATE(); case 112: - if (lookahead == 'e') ADVANCE(145); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 113: - if (lookahead == 'l') ADVANCE(146); + if (lookahead == 'r') ADVANCE(147); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_from); + if (lookahead == 'n') ADVANCE(148); END_STATE(); case 115: - if (lookahead == 't') ADVANCE(147); + if (lookahead == 'e') ADVANCE(149); END_STATE(); case 116: - if (lookahead == 'r') ADVANCE(148); + if (lookahead == 'l') ADVANCE(150); END_STATE(); case 117: - if (lookahead == 'a') ADVANCE(149); + ACCEPT_TOKEN(anon_sym_from); END_STATE(); case 118: - ACCEPT_TOKEN(sym_null); + if (lookahead == 't') ADVANCE(151); END_STATE(); case 119: - if (lookahead == 'r') ADVANCE(150); + if (lookahead == 'r') ADVANCE(152); END_STATE(); case 120: - if (lookahead == 'i') ADVANCE(151); + if (lookahead == 'a') ADVANCE(153); END_STATE(); case 121: - if (lookahead == 'r') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_meta); END_STATE(); case 122: - if (lookahead == 'c') ADVANCE(153); + ACCEPT_TOKEN(sym_null); END_STATE(); case 123: - if (lookahead == 'e') ADVANCE(154); + if (lookahead == 'r') ADVANCE(154); END_STATE(); case 124: - ACCEPT_TOKEN(sym_this); + if (lookahead == 'i') ADVANCE(155); END_STATE(); case 125: - if (lookahead == 'w') ADVANCE(155); + if (lookahead == 'r') ADVANCE(156); END_STATE(); case 126: - ACCEPT_TOKEN(sym_true); + if (lookahead == 'c') ADVANCE(157); END_STATE(); case 127: - if (lookahead == 'o') ADVANCE(156); + if (lookahead == 'e') ADVANCE(158); END_STATE(); case 128: - if (lookahead == 'f') ADVANCE(157); + ACCEPT_TOKEN(sym_this); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_void); + if (lookahead == 'w') ADVANCE(159); END_STATE(); case 130: - if (lookahead == 'e') ADVANCE(158); + ACCEPT_TOKEN(sym_true); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_with); + if (lookahead == 'o') ADVANCE(160); END_STATE(); case 132: - if (lookahead == 'd') ADVANCE(159); + if (lookahead == 'f') ADVANCE(161); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_async); + ACCEPT_TOKEN(anon_sym_void); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_await); + if (lookahead == 'e') ADVANCE(162); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_catch); + if (lookahead == 'd') ADVANCE(163); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_async); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_await); END_STATE(); case 139: - if (lookahead == 'n') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 140: - if (lookahead == 'g') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 141: - if (lookahead == 'l') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 142: - if (lookahead == 'e') ADVANCE(163); + ACCEPT_TOKEN(anon_sym_const); END_STATE(); case 143: - if (lookahead == 't') ADVANCE(164); + if (lookahead == 'n') ADVANCE(164); END_STATE(); case 144: - if (lookahead == 'd') ADVANCE(165); + if (lookahead == 'g') ADVANCE(165); END_STATE(); case 145: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'l') ADVANCE(166); END_STATE(); case 146: - if (lookahead == 'l') ADVANCE(166); + if (lookahead == 'e') ADVANCE(167); END_STATE(); case 147: - if (lookahead == 'i') ADVANCE(167); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 148: - if (lookahead == 't') ADVANCE(168); + if (lookahead == 'd') ADVANCE(169); END_STATE(); case 149: - if (lookahead == 'n') ADVANCE(169); + ACCEPT_TOKEN(sym_false); END_STATE(); case 150: - if (lookahead == 'n') ADVANCE(170); + if (lookahead == 'l') ADVANCE(170); END_STATE(); case 151: - if (lookahead == 'c') ADVANCE(171); + if (lookahead == 'i') ADVANCE(171); END_STATE(); case 152: - ACCEPT_TOKEN(sym_super); + if (lookahead == 't') ADVANCE(172); END_STATE(); case 153: - if (lookahead == 'h') ADVANCE(172); + if (lookahead == 'n') ADVANCE(173); END_STATE(); case 154: - if (lookahead == 't') ADVANCE(173); + if (lookahead == 'n') ADVANCE(174); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_throw); + if (lookahead == 'c') ADVANCE(175); END_STATE(); case 156: - if (lookahead == 'f') ADVANCE(174); + ACCEPT_TOKEN(sym_super); END_STATE(); case 157: - if (lookahead == 'i') ADVANCE(175); + if (lookahead == 'h') ADVANCE(176); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 't') ADVANCE(177); END_STATE(); case 159: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 160: - if (lookahead == 'u') ADVANCE(176); + if (lookahead == 'f') ADVANCE(178); END_STATE(); case 161: - if (lookahead == 'e') ADVANCE(177); + if (lookahead == 'i') ADVANCE(179); END_STATE(); case 162: - if (lookahead == 't') ADVANCE(178); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_delete); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 164: - ACCEPT_TOKEN(anon_sym_export); + if (lookahead == 'u') ADVANCE(180); END_STATE(); case 165: - if (lookahead == 's') ADVANCE(179); + if (lookahead == 'e') ADVANCE(181); END_STATE(); case 166: - if (lookahead == 'y') ADVANCE(180); + if (lookahead == 't') ADVANCE(182); END_STATE(); case 167: - if (lookahead == 'o') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_delete); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_import); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 169: - if (lookahead == 'c') ADVANCE(182); + if (lookahead == 's') ADVANCE(183); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 'y') ADVANCE(184); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_static); + if (lookahead == 'o') ADVANCE(185); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_switch); + ACCEPT_TOKEN(anon_sym_import); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_target); + if (lookahead == 'c') ADVANCE(186); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_typeof); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 175: - if (lookahead == 'n') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 176: - if (lookahead == 'e') ADVANCE(184); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 177: - if (lookahead == 'r') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_target); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_typeof); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_extends); + if (lookahead == 'n') ADVANCE(187); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_finally); + if (lookahead == 'e') ADVANCE(188); END_STATE(); case 181: - if (lookahead == 'n') ADVANCE(186); + if (lookahead == 'r') ADVANCE(189); END_STATE(); case 182: - if (lookahead == 'e') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 183: - if (lookahead == 'e') ADVANCE(188); + ACCEPT_TOKEN(anon_sym_extends); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_continue); + ACCEPT_TOKEN(anon_sym_finally); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_debugger); + if (lookahead == 'n') ADVANCE(190); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'e') ADVANCE(191); END_STATE(); case 187: - if (lookahead == 'o') ADVANCE(189); + if (lookahead == 'e') ADVANCE(192); END_STATE(); case 188: - if (lookahead == 'd') ADVANCE(190); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 189: - if (lookahead == 'f') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_debugger); END_STATE(); case 190: - ACCEPT_TOKEN(sym_undefined); + ACCEPT_TOKEN(anon_sym_function); END_STATE(); case 191: + if (lookahead == 'o') ADVANCE(193); + END_STATE(); + case 192: + if (lookahead == 'd') ADVANCE(194); + END_STATE(); + case 193: + if (lookahead == 'f') ADVANCE(195); + END_STATE(); + case 194: + ACCEPT_TOKEN(sym_undefined); + END_STATE(); + case 195: ACCEPT_TOKEN(anon_sym_instanceof); END_STATE(); default: @@ -6330,1711 +7129,1824 @@ 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 = 95}, - [2] = {.lex_state = 95}, - [3] = {.lex_state = 95}, - [4] = {.lex_state = 95}, - [5] = {.lex_state = 95}, - [6] = {.lex_state = 95}, - [7] = {.lex_state = 95}, - [8] = {.lex_state = 95}, - [9] = {.lex_state = 95}, - [10] = {.lex_state = 95}, - [11] = {.lex_state = 95}, - [12] = {.lex_state = 95}, - [13] = {.lex_state = 95}, - [14] = {.lex_state = 95}, - [15] = {.lex_state = 95}, - [16] = {.lex_state = 95}, - [17] = {.lex_state = 95}, - [18] = {.lex_state = 95}, - [19] = {.lex_state = 95}, - [20] = {.lex_state = 95}, - [21] = {.lex_state = 95}, - [22] = {.lex_state = 95}, - [23] = {.lex_state = 95}, - [24] = {.lex_state = 95}, - [25] = {.lex_state = 95}, - [26] = {.lex_state = 95}, - [27] = {.lex_state = 95}, - [28] = {.lex_state = 95}, - [29] = {.lex_state = 95}, - [30] = {.lex_state = 95}, - [31] = {.lex_state = 95}, - [32] = {.lex_state = 95}, - [33] = {.lex_state = 95}, - [34] = {.lex_state = 95}, - [35] = {.lex_state = 95}, - [36] = {.lex_state = 95}, - [37] = {.lex_state = 95}, - [38] = {.lex_state = 95}, - [39] = {.lex_state = 95}, - [40] = {.lex_state = 95}, - [41] = {.lex_state = 95}, - [42] = {.lex_state = 95}, - [43] = {.lex_state = 95}, - [44] = {.lex_state = 95}, - [45] = {.lex_state = 95}, - [46] = {.lex_state = 94, .external_lex_state = 2}, - [47] = {.lex_state = 94, .external_lex_state = 3}, - [48] = {.lex_state = 94, .external_lex_state = 3}, - [49] = {.lex_state = 94, .external_lex_state = 2}, - [50] = {.lex_state = 94, .external_lex_state = 2}, - [51] = {.lex_state = 94, .external_lex_state = 3}, - [52] = {.lex_state = 95}, - [53] = {.lex_state = 95}, - [54] = {.lex_state = 95}, - [55] = {.lex_state = 94, .external_lex_state = 3}, - [56] = {.lex_state = 95}, - [57] = {.lex_state = 95}, - [58] = {.lex_state = 94, .external_lex_state = 3}, - [59] = {.lex_state = 95}, - [60] = {.lex_state = 94, .external_lex_state = 3}, - [61] = {.lex_state = 94, .external_lex_state = 3}, - [62] = {.lex_state = 94, .external_lex_state = 3}, - [63] = {.lex_state = 95}, - [64] = {.lex_state = 94, .external_lex_state = 3}, - [65] = {.lex_state = 94, .external_lex_state = 3}, - [66] = {.lex_state = 95}, - [67] = {.lex_state = 95}, - [68] = {.lex_state = 95}, - [69] = {.lex_state = 95}, - [70] = {.lex_state = 94, .external_lex_state = 3}, - [71] = {.lex_state = 94, .external_lex_state = 3}, - [72] = {.lex_state = 94, .external_lex_state = 3}, - [73] = {.lex_state = 95}, - [74] = {.lex_state = 94, .external_lex_state = 3}, - [75] = {.lex_state = 95}, - [76] = {.lex_state = 94, .external_lex_state = 3}, - [77] = {.lex_state = 94, .external_lex_state = 3}, - [78] = {.lex_state = 94, .external_lex_state = 3}, - [79] = {.lex_state = 95}, - [80] = {.lex_state = 95}, - [81] = {.lex_state = 95}, - [82] = {.lex_state = 95}, - [83] = {.lex_state = 95}, - [84] = {.lex_state = 95}, - [85] = {.lex_state = 95}, - [86] = {.lex_state = 95}, - [87] = {.lex_state = 95}, - [88] = {.lex_state = 95}, - [89] = {.lex_state = 95}, - [90] = {.lex_state = 95}, - [91] = {.lex_state = 95}, - [92] = {.lex_state = 95}, - [93] = {.lex_state = 95}, - [94] = {.lex_state = 95}, - [95] = {.lex_state = 95}, - [96] = {.lex_state = 95}, - [97] = {.lex_state = 95}, - [98] = {.lex_state = 95}, - [99] = {.lex_state = 95}, - [100] = {.lex_state = 95}, - [101] = {.lex_state = 95}, - [102] = {.lex_state = 95, .external_lex_state = 4}, - [103] = {.lex_state = 95}, - [104] = {.lex_state = 95}, - [105] = {.lex_state = 95}, - [106] = {.lex_state = 95}, - [107] = {.lex_state = 95}, - [108] = {.lex_state = 95}, - [109] = {.lex_state = 95}, - [110] = {.lex_state = 95}, - [111] = {.lex_state = 95}, - [112] = {.lex_state = 95}, - [113] = {.lex_state = 12}, - [114] = {.lex_state = 95}, - [115] = {.lex_state = 95}, - [116] = {.lex_state = 95}, - [117] = {.lex_state = 95}, - [118] = {.lex_state = 12}, - [119] = {.lex_state = 95}, - [120] = {.lex_state = 95}, - [121] = {.lex_state = 95}, - [122] = {.lex_state = 95}, - [123] = {.lex_state = 95}, - [124] = {.lex_state = 95}, - [125] = {.lex_state = 95}, - [126] = {.lex_state = 95}, - [127] = {.lex_state = 95}, - [128] = {.lex_state = 95}, - [129] = {.lex_state = 12}, - [130] = {.lex_state = 95}, - [131] = {.lex_state = 95}, - [132] = {.lex_state = 95}, - [133] = {.lex_state = 95}, - [134] = {.lex_state = 95}, - [135] = {.lex_state = 95}, - [136] = {.lex_state = 95}, - [137] = {.lex_state = 95}, - [138] = {.lex_state = 95}, - [139] = {.lex_state = 12}, - [140] = {.lex_state = 95}, - [141] = {.lex_state = 95}, - [142] = {.lex_state = 95}, - [143] = {.lex_state = 95}, - [144] = {.lex_state = 95}, - [145] = {.lex_state = 95}, - [146] = {.lex_state = 95}, - [147] = {.lex_state = 12}, - [148] = {.lex_state = 95}, - [149] = {.lex_state = 95}, - [150] = {.lex_state = 95}, - [151] = {.lex_state = 95}, - [152] = {.lex_state = 95}, - [153] = {.lex_state = 95}, - [154] = {.lex_state = 95}, - [155] = {.lex_state = 95}, - [156] = {.lex_state = 95}, - [157] = {.lex_state = 95}, - [158] = {.lex_state = 95}, - [159] = {.lex_state = 95}, - [160] = {.lex_state = 95}, - [161] = {.lex_state = 95}, - [162] = {.lex_state = 95}, - [163] = {.lex_state = 95}, - [164] = {.lex_state = 95}, - [165] = {.lex_state = 95}, - [166] = {.lex_state = 95}, - [167] = {.lex_state = 95}, - [168] = {.lex_state = 95}, - [169] = {.lex_state = 95}, - [170] = {.lex_state = 95}, - [171] = {.lex_state = 95}, - [172] = {.lex_state = 95}, - [173] = {.lex_state = 95}, - [174] = {.lex_state = 95}, - [175] = {.lex_state = 95}, - [176] = {.lex_state = 95}, - [177] = {.lex_state = 95}, - [178] = {.lex_state = 95}, - [179] = {.lex_state = 95}, - [180] = {.lex_state = 95}, - [181] = {.lex_state = 95}, - [182] = {.lex_state = 95}, - [183] = {.lex_state = 95}, - [184] = {.lex_state = 95}, - [185] = {.lex_state = 95}, - [186] = {.lex_state = 95}, - [187] = {.lex_state = 95}, - [188] = {.lex_state = 95}, - [189] = {.lex_state = 95}, - [190] = {.lex_state = 95}, - [191] = {.lex_state = 95}, - [192] = {.lex_state = 95}, - [193] = {.lex_state = 95}, - [194] = {.lex_state = 95}, - [195] = {.lex_state = 95}, - [196] = {.lex_state = 95}, - [197] = {.lex_state = 95}, - [198] = {.lex_state = 95}, - [199] = {.lex_state = 95}, - [200] = {.lex_state = 95}, - [201] = {.lex_state = 95}, - [202] = {.lex_state = 95}, - [203] = {.lex_state = 95}, - [204] = {.lex_state = 95}, - [205] = {.lex_state = 95}, - [206] = {.lex_state = 95}, - [207] = {.lex_state = 95}, - [208] = {.lex_state = 95}, - [209] = {.lex_state = 95}, - [210] = {.lex_state = 95}, - [211] = {.lex_state = 95}, - [212] = {.lex_state = 95}, - [213] = {.lex_state = 95}, - [214] = {.lex_state = 95}, - [215] = {.lex_state = 95}, - [216] = {.lex_state = 95}, - [217] = {.lex_state = 95}, - [218] = {.lex_state = 95}, - [219] = {.lex_state = 95}, - [220] = {.lex_state = 95}, - [221] = {.lex_state = 95}, - [222] = {.lex_state = 95}, - [223] = {.lex_state = 95}, - [224] = {.lex_state = 95}, - [225] = {.lex_state = 95}, - [226] = {.lex_state = 95}, - [227] = {.lex_state = 95}, - [228] = {.lex_state = 95}, - [229] = {.lex_state = 95}, - [230] = {.lex_state = 95}, - [231] = {.lex_state = 95}, - [232] = {.lex_state = 95}, - [233] = {.lex_state = 95}, - [234] = {.lex_state = 95}, - [235] = {.lex_state = 95}, - [236] = {.lex_state = 95}, - [237] = {.lex_state = 95}, - [238] = {.lex_state = 95}, - [239] = {.lex_state = 95}, - [240] = {.lex_state = 95}, - [241] = {.lex_state = 95}, - [242] = {.lex_state = 95}, - [243] = {.lex_state = 95}, - [244] = {.lex_state = 95}, - [245] = {.lex_state = 95}, - [246] = {.lex_state = 95}, - [247] = {.lex_state = 95}, - [248] = {.lex_state = 95}, - [249] = {.lex_state = 95}, - [250] = {.lex_state = 95}, - [251] = {.lex_state = 95}, - [252] = {.lex_state = 95}, - [253] = {.lex_state = 95}, - [254] = {.lex_state = 95}, - [255] = {.lex_state = 95}, - [256] = {.lex_state = 95}, - [257] = {.lex_state = 95}, - [258] = {.lex_state = 95}, - [259] = {.lex_state = 95}, - [260] = {.lex_state = 95}, - [261] = {.lex_state = 95}, - [262] = {.lex_state = 95}, - [263] = {.lex_state = 95}, - [264] = {.lex_state = 95}, - [265] = {.lex_state = 95}, - [266] = {.lex_state = 95}, - [267] = {.lex_state = 95}, - [268] = {.lex_state = 95}, - [269] = {.lex_state = 95}, - [270] = {.lex_state = 95}, - [271] = {.lex_state = 95}, - [272] = {.lex_state = 95}, - [273] = {.lex_state = 95}, - [274] = {.lex_state = 95}, - [275] = {.lex_state = 95}, - [276] = {.lex_state = 95}, - [277] = {.lex_state = 13, .external_lex_state = 3}, - [278] = {.lex_state = 13, .external_lex_state = 3}, - [279] = {.lex_state = 13, .external_lex_state = 3}, - [280] = {.lex_state = 13, .external_lex_state = 3}, - [281] = {.lex_state = 13, .external_lex_state = 3}, - [282] = {.lex_state = 13, .external_lex_state = 3}, - [283] = {.lex_state = 13, .external_lex_state = 3}, - [284] = {.lex_state = 13, .external_lex_state = 3}, - [285] = {.lex_state = 13, .external_lex_state = 3}, - [286] = {.lex_state = 13, .external_lex_state = 3}, - [287] = {.lex_state = 13, .external_lex_state = 3}, - [288] = {.lex_state = 13, .external_lex_state = 3}, - [289] = {.lex_state = 13, .external_lex_state = 3}, - [290] = {.lex_state = 13, .external_lex_state = 3}, - [291] = {.lex_state = 95, .external_lex_state = 4}, - [292] = {.lex_state = 95}, - [293] = {.lex_state = 95, .external_lex_state = 4}, - [294] = {.lex_state = 95}, - [295] = {.lex_state = 13, .external_lex_state = 2}, - [296] = {.lex_state = 13, .external_lex_state = 2}, - [297] = {.lex_state = 95}, - [298] = {.lex_state = 13, .external_lex_state = 3}, - [299] = {.lex_state = 13, .external_lex_state = 3}, - [300] = {.lex_state = 13, .external_lex_state = 2}, - [301] = {.lex_state = 13, .external_lex_state = 3}, - [302] = {.lex_state = 13, .external_lex_state = 2}, - [303] = {.lex_state = 13, .external_lex_state = 3}, - [304] = {.lex_state = 13, .external_lex_state = 2}, - [305] = {.lex_state = 13, .external_lex_state = 3}, - [306] = {.lex_state = 95}, - [307] = {.lex_state = 13, .external_lex_state = 3}, - [308] = {.lex_state = 13, .external_lex_state = 3}, - [309] = {.lex_state = 95, .external_lex_state = 4}, - [310] = {.lex_state = 95}, - [311] = {.lex_state = 95, .external_lex_state = 4}, - [312] = {.lex_state = 13, .external_lex_state = 2}, - [313] = {.lex_state = 95, .external_lex_state = 4}, - [314] = {.lex_state = 95}, - [315] = {.lex_state = 95, .external_lex_state = 4}, - [316] = {.lex_state = 95}, - [317] = {.lex_state = 95, .external_lex_state = 4}, - [318] = {.lex_state = 95}, - [319] = {.lex_state = 95, .external_lex_state = 4}, - [320] = {.lex_state = 95, .external_lex_state = 4}, - [321] = {.lex_state = 95, .external_lex_state = 4}, - [322] = {.lex_state = 95, .external_lex_state = 4}, - [323] = {.lex_state = 95, .external_lex_state = 4}, - [324] = {.lex_state = 95}, - [325] = {.lex_state = 95, .external_lex_state = 4}, - [326] = {.lex_state = 95, .external_lex_state = 4}, - [327] = {.lex_state = 95, .external_lex_state = 4}, - [328] = {.lex_state = 95, .external_lex_state = 4}, - [329] = {.lex_state = 95}, - [330] = {.lex_state = 95}, - [331] = {.lex_state = 95}, - [332] = {.lex_state = 95}, - [333] = {.lex_state = 95}, - [334] = {.lex_state = 95}, - [335] = {.lex_state = 95}, - [336] = {.lex_state = 95}, - [337] = {.lex_state = 95}, - [338] = {.lex_state = 95}, - [339] = {.lex_state = 95}, - [340] = {.lex_state = 95}, - [341] = {.lex_state = 95}, - [342] = {.lex_state = 95}, - [343] = {.lex_state = 95}, - [344] = {.lex_state = 95}, - [345] = {.lex_state = 95}, - [346] = {.lex_state = 95}, - [347] = {.lex_state = 95}, - [348] = {.lex_state = 95}, - [349] = {.lex_state = 95}, - [350] = {.lex_state = 95}, - [351] = {.lex_state = 95}, - [352] = {.lex_state = 95}, - [353] = {.lex_state = 95}, - [354] = {.lex_state = 95}, - [355] = {.lex_state = 95}, - [356] = {.lex_state = 95}, - [357] = {.lex_state = 95}, - [358] = {.lex_state = 95}, - [359] = {.lex_state = 95}, - [360] = {.lex_state = 13, .external_lex_state = 3}, - [361] = {.lex_state = 95}, - [362] = {.lex_state = 95}, - [363] = {.lex_state = 95}, - [364] = {.lex_state = 95}, - [365] = {.lex_state = 95}, - [366] = {.lex_state = 95}, - [367] = {.lex_state = 95}, - [368] = {.lex_state = 95}, - [369] = {.lex_state = 95}, - [370] = {.lex_state = 95}, - [371] = {.lex_state = 95}, - [372] = {.lex_state = 95}, - [373] = {.lex_state = 95}, - [374] = {.lex_state = 95}, - [375] = {.lex_state = 95}, - [376] = {.lex_state = 95}, - [377] = {.lex_state = 95}, - [378] = {.lex_state = 95}, - [379] = {.lex_state = 95}, - [380] = {.lex_state = 95}, - [381] = {.lex_state = 95}, - [382] = {.lex_state = 95}, - [383] = {.lex_state = 95}, - [384] = {.lex_state = 95}, - [385] = {.lex_state = 95}, - [386] = {.lex_state = 95}, - [387] = {.lex_state = 95}, - [388] = {.lex_state = 95}, - [389] = {.lex_state = 95}, - [390] = {.lex_state = 95}, - [391] = {.lex_state = 13, .external_lex_state = 2}, - [392] = {.lex_state = 95}, - [393] = {.lex_state = 95}, - [394] = {.lex_state = 95}, - [395] = {.lex_state = 95}, - [396] = {.lex_state = 95}, - [397] = {.lex_state = 95}, - [398] = {.lex_state = 95}, - [399] = {.lex_state = 95}, - [400] = {.lex_state = 95}, - [401] = {.lex_state = 95}, - [402] = {.lex_state = 95}, - [403] = {.lex_state = 95}, - [404] = {.lex_state = 95}, - [405] = {.lex_state = 95}, - [406] = {.lex_state = 95}, - [407] = {.lex_state = 95}, - [408] = {.lex_state = 95}, - [409] = {.lex_state = 95}, - [410] = {.lex_state = 95}, - [411] = {.lex_state = 95}, - [412] = {.lex_state = 95}, - [413] = {.lex_state = 95}, - [414] = {.lex_state = 95}, - [415] = {.lex_state = 95}, - [416] = {.lex_state = 95}, - [417] = {.lex_state = 95}, - [418] = {.lex_state = 13, .external_lex_state = 2}, - [419] = {.lex_state = 95}, - [420] = {.lex_state = 95}, - [421] = {.lex_state = 95}, - [422] = {.lex_state = 95}, - [423] = {.lex_state = 95}, - [424] = {.lex_state = 95}, - [425] = {.lex_state = 13, .external_lex_state = 3}, - [426] = {.lex_state = 95}, - [427] = {.lex_state = 13, .external_lex_state = 2}, - [428] = {.lex_state = 13, .external_lex_state = 2}, - [429] = {.lex_state = 13, .external_lex_state = 2}, - [430] = {.lex_state = 13, .external_lex_state = 3}, - [431] = {.lex_state = 13, .external_lex_state = 3}, - [432] = {.lex_state = 13, .external_lex_state = 3}, - [433] = {.lex_state = 13, .external_lex_state = 2}, - [434] = {.lex_state = 13, .external_lex_state = 2}, - [435] = {.lex_state = 13, .external_lex_state = 2}, - [436] = {.lex_state = 13, .external_lex_state = 2}, - [437] = {.lex_state = 13, .external_lex_state = 2}, - [438] = {.lex_state = 13, .external_lex_state = 2}, - [439] = {.lex_state = 13, .external_lex_state = 2}, - [440] = {.lex_state = 13, .external_lex_state = 2}, - [441] = {.lex_state = 95}, - [442] = {.lex_state = 95}, - [443] = {.lex_state = 13, .external_lex_state = 2}, - [444] = {.lex_state = 13, .external_lex_state = 2}, - [445] = {.lex_state = 95}, - [446] = {.lex_state = 95}, - [447] = {.lex_state = 95}, - [448] = {.lex_state = 95}, - [449] = {.lex_state = 13, .external_lex_state = 2}, - [450] = {.lex_state = 95}, - [451] = {.lex_state = 13, .external_lex_state = 2}, - [452] = {.lex_state = 95}, - [453] = {.lex_state = 13, .external_lex_state = 3}, - [454] = {.lex_state = 13, .external_lex_state = 3}, - [455] = {.lex_state = 13, .external_lex_state = 3}, - [456] = {.lex_state = 13, .external_lex_state = 3}, - [457] = {.lex_state = 13, .external_lex_state = 3}, - [458] = {.lex_state = 13, .external_lex_state = 2}, - [459] = {.lex_state = 13, .external_lex_state = 3}, - [460] = {.lex_state = 13, .external_lex_state = 3}, - [461] = {.lex_state = 13, .external_lex_state = 3}, - [462] = {.lex_state = 13, .external_lex_state = 3}, - [463] = {.lex_state = 13, .external_lex_state = 3}, - [464] = {.lex_state = 13, .external_lex_state = 3}, - [465] = {.lex_state = 13, .external_lex_state = 3}, - [466] = {.lex_state = 13, .external_lex_state = 3}, - [467] = {.lex_state = 13, .external_lex_state = 2}, - [468] = {.lex_state = 13, .external_lex_state = 2}, - [469] = {.lex_state = 13, .external_lex_state = 3}, - [470] = {.lex_state = 13, .external_lex_state = 3}, - [471] = {.lex_state = 13, .external_lex_state = 3}, - [472] = {.lex_state = 13, .external_lex_state = 3}, - [473] = {.lex_state = 13, .external_lex_state = 3}, - [474] = {.lex_state = 13, .external_lex_state = 3}, - [475] = {.lex_state = 13, .external_lex_state = 2}, - [476] = {.lex_state = 13, .external_lex_state = 3}, - [477] = {.lex_state = 13, .external_lex_state = 3}, - [478] = {.lex_state = 13, .external_lex_state = 2}, - [479] = {.lex_state = 13, .external_lex_state = 2}, - [480] = {.lex_state = 13, .external_lex_state = 2}, - [481] = {.lex_state = 13, .external_lex_state = 3}, - [482] = {.lex_state = 13, .external_lex_state = 3}, - [483] = {.lex_state = 13, .external_lex_state = 3}, - [484] = {.lex_state = 13, .external_lex_state = 2}, - [485] = {.lex_state = 13, .external_lex_state = 2}, - [486] = {.lex_state = 13, .external_lex_state = 3}, - [487] = {.lex_state = 13, .external_lex_state = 2}, - [488] = {.lex_state = 13, .external_lex_state = 2}, - [489] = {.lex_state = 13, .external_lex_state = 2}, - [490] = {.lex_state = 13, .external_lex_state = 2}, - [491] = {.lex_state = 13, .external_lex_state = 2}, - [492] = {.lex_state = 13, .external_lex_state = 2}, - [493] = {.lex_state = 13, .external_lex_state = 2}, - [494] = {.lex_state = 13, .external_lex_state = 2}, - [495] = {.lex_state = 13, .external_lex_state = 2}, - [496] = {.lex_state = 13, .external_lex_state = 2}, - [497] = {.lex_state = 13, .external_lex_state = 2}, - [498] = {.lex_state = 13, .external_lex_state = 2}, - [499] = {.lex_state = 13, .external_lex_state = 2}, - [500] = {.lex_state = 13, .external_lex_state = 2}, - [501] = {.lex_state = 13, .external_lex_state = 2}, - [502] = {.lex_state = 13, .external_lex_state = 2}, - [503] = {.lex_state = 13, .external_lex_state = 2}, - [504] = {.lex_state = 14, .external_lex_state = 3}, - [505] = {.lex_state = 14, .external_lex_state = 2}, - [506] = {.lex_state = 14, .external_lex_state = 2}, - [507] = {.lex_state = 14, .external_lex_state = 2}, - [508] = {.lex_state = 14, .external_lex_state = 3}, - [509] = {.lex_state = 14, .external_lex_state = 2}, - [510] = {.lex_state = 14, .external_lex_state = 2}, - [511] = {.lex_state = 14, .external_lex_state = 2}, - [512] = {.lex_state = 14, .external_lex_state = 2}, - [513] = {.lex_state = 14, .external_lex_state = 2}, - [514] = {.lex_state = 14, .external_lex_state = 3}, - [515] = {.lex_state = 14, .external_lex_state = 2}, - [516] = {.lex_state = 14, .external_lex_state = 3}, - [517] = {.lex_state = 14, .external_lex_state = 2}, - [518] = {.lex_state = 14, .external_lex_state = 2}, - [519] = {.lex_state = 14, .external_lex_state = 2}, - [520] = {.lex_state = 14, .external_lex_state = 2}, - [521] = {.lex_state = 14, .external_lex_state = 3}, - [522] = {.lex_state = 14, .external_lex_state = 3}, - [523] = {.lex_state = 14, .external_lex_state = 2}, - [524] = {.lex_state = 14, .external_lex_state = 3}, - [525] = {.lex_state = 14, .external_lex_state = 2}, - [526] = {.lex_state = 14, .external_lex_state = 2}, - [527] = {.lex_state = 14, .external_lex_state = 2}, - [528] = {.lex_state = 14, .external_lex_state = 2}, - [529] = {.lex_state = 14, .external_lex_state = 3}, - [530] = {.lex_state = 14, .external_lex_state = 2}, - [531] = {.lex_state = 14, .external_lex_state = 2}, - [532] = {.lex_state = 14, .external_lex_state = 2}, - [533] = {.lex_state = 14, .external_lex_state = 2}, - [534] = {.lex_state = 14, .external_lex_state = 2}, - [535] = {.lex_state = 14, .external_lex_state = 2}, - [536] = {.lex_state = 14, .external_lex_state = 2}, - [537] = {.lex_state = 14, .external_lex_state = 2}, - [538] = {.lex_state = 14, .external_lex_state = 2}, - [539] = {.lex_state = 14, .external_lex_state = 2}, - [540] = {.lex_state = 14, .external_lex_state = 2}, - [541] = {.lex_state = 14, .external_lex_state = 2}, - [542] = {.lex_state = 14, .external_lex_state = 2}, - [543] = {.lex_state = 14, .external_lex_state = 2}, - [544] = {.lex_state = 14, .external_lex_state = 2}, - [545] = {.lex_state = 14, .external_lex_state = 2}, - [546] = {.lex_state = 14, .external_lex_state = 2}, - [547] = {.lex_state = 14, .external_lex_state = 3}, - [548] = {.lex_state = 14, .external_lex_state = 2}, - [549] = {.lex_state = 14, .external_lex_state = 2}, - [550] = {.lex_state = 14, .external_lex_state = 2}, - [551] = {.lex_state = 14, .external_lex_state = 2}, - [552] = {.lex_state = 14, .external_lex_state = 2}, - [553] = {.lex_state = 14, .external_lex_state = 2}, - [554] = {.lex_state = 14, .external_lex_state = 3}, - [555] = {.lex_state = 14, .external_lex_state = 2}, - [556] = {.lex_state = 14, .external_lex_state = 2}, - [557] = {.lex_state = 14, .external_lex_state = 2}, - [558] = {.lex_state = 14, .external_lex_state = 3}, - [559] = {.lex_state = 14, .external_lex_state = 2}, - [560] = {.lex_state = 14, .external_lex_state = 2}, - [561] = {.lex_state = 14, .external_lex_state = 2}, - [562] = {.lex_state = 14, .external_lex_state = 2}, - [563] = {.lex_state = 14, .external_lex_state = 3}, - [564] = {.lex_state = 14, .external_lex_state = 2}, - [565] = {.lex_state = 14, .external_lex_state = 2}, - [566] = {.lex_state = 14, .external_lex_state = 2}, - [567] = {.lex_state = 14, .external_lex_state = 2}, - [568] = {.lex_state = 14, .external_lex_state = 2}, - [569] = {.lex_state = 14, .external_lex_state = 2}, - [570] = {.lex_state = 14, .external_lex_state = 2}, - [571] = {.lex_state = 14, .external_lex_state = 2}, - [572] = {.lex_state = 15, .external_lex_state = 2}, - [573] = {.lex_state = 14, .external_lex_state = 2}, - [574] = {.lex_state = 14, .external_lex_state = 2}, - [575] = {.lex_state = 14, .external_lex_state = 2}, - [576] = {.lex_state = 14, .external_lex_state = 2}, - [577] = {.lex_state = 14, .external_lex_state = 2}, - [578] = {.lex_state = 14, .external_lex_state = 2}, - [579] = {.lex_state = 14, .external_lex_state = 2}, - [580] = {.lex_state = 14, .external_lex_state = 2}, - [581] = {.lex_state = 14, .external_lex_state = 2}, - [582] = {.lex_state = 14, .external_lex_state = 2}, - [583] = {.lex_state = 14, .external_lex_state = 3}, - [584] = {.lex_state = 14, .external_lex_state = 2}, - [585] = {.lex_state = 14, .external_lex_state = 2}, - [586] = {.lex_state = 14, .external_lex_state = 2}, - [587] = {.lex_state = 14, .external_lex_state = 2}, - [588] = {.lex_state = 14, .external_lex_state = 2}, - [589] = {.lex_state = 14, .external_lex_state = 2}, - [590] = {.lex_state = 14, .external_lex_state = 2}, - [591] = {.lex_state = 14, .external_lex_state = 2}, - [592] = {.lex_state = 14, .external_lex_state = 2}, - [593] = {.lex_state = 14, .external_lex_state = 2}, - [594] = {.lex_state = 14, .external_lex_state = 2}, - [595] = {.lex_state = 14, .external_lex_state = 2}, - [596] = {.lex_state = 14, .external_lex_state = 2}, - [597] = {.lex_state = 14, .external_lex_state = 2}, - [598] = {.lex_state = 14, .external_lex_state = 2}, - [599] = {.lex_state = 14, .external_lex_state = 2}, - [600] = {.lex_state = 14, .external_lex_state = 2}, - [601] = {.lex_state = 14, .external_lex_state = 2}, - [602] = {.lex_state = 14, .external_lex_state = 2}, - [603] = {.lex_state = 14, .external_lex_state = 2}, - [604] = {.lex_state = 14, .external_lex_state = 2}, - [605] = {.lex_state = 14, .external_lex_state = 2}, - [606] = {.lex_state = 14, .external_lex_state = 2}, - [607] = {.lex_state = 14, .external_lex_state = 2}, - [608] = {.lex_state = 14, .external_lex_state = 2}, - [609] = {.lex_state = 14, .external_lex_state = 2}, - [610] = {.lex_state = 14, .external_lex_state = 2}, - [611] = {.lex_state = 14, .external_lex_state = 2}, - [612] = {.lex_state = 14, .external_lex_state = 2}, - [613] = {.lex_state = 14, .external_lex_state = 3}, - [614] = {.lex_state = 14, .external_lex_state = 3}, - [615] = {.lex_state = 14, .external_lex_state = 3}, - [616] = {.lex_state = 14, .external_lex_state = 3}, - [617] = {.lex_state = 14, .external_lex_state = 3}, - [618] = {.lex_state = 14, .external_lex_state = 3}, - [619] = {.lex_state = 14, .external_lex_state = 3}, - [620] = {.lex_state = 14, .external_lex_state = 2}, - [621] = {.lex_state = 14, .external_lex_state = 3}, - [622] = {.lex_state = 14, .external_lex_state = 3}, - [623] = {.lex_state = 14, .external_lex_state = 3}, - [624] = {.lex_state = 14, .external_lex_state = 3}, - [625] = {.lex_state = 14, .external_lex_state = 3}, - [626] = {.lex_state = 14, .external_lex_state = 3}, - [627] = {.lex_state = 14, .external_lex_state = 3}, - [628] = {.lex_state = 14, .external_lex_state = 3}, - [629] = {.lex_state = 14, .external_lex_state = 2}, - [630] = {.lex_state = 14, .external_lex_state = 3}, - [631] = {.lex_state = 14, .external_lex_state = 3}, - [632] = {.lex_state = 14, .external_lex_state = 3}, - [633] = {.lex_state = 14, .external_lex_state = 3}, - [634] = {.lex_state = 14, .external_lex_state = 3}, - [635] = {.lex_state = 14, .external_lex_state = 3}, - [636] = {.lex_state = 14, .external_lex_state = 3}, - [637] = {.lex_state = 14, .external_lex_state = 3}, - [638] = {.lex_state = 14, .external_lex_state = 3}, - [639] = {.lex_state = 14, .external_lex_state = 3}, - [640] = {.lex_state = 14, .external_lex_state = 3}, - [641] = {.lex_state = 14, .external_lex_state = 3}, - [642] = {.lex_state = 14, .external_lex_state = 3}, - [643] = {.lex_state = 14, .external_lex_state = 3}, - [644] = {.lex_state = 14, .external_lex_state = 3}, - [645] = {.lex_state = 14, .external_lex_state = 3}, - [646] = {.lex_state = 14, .external_lex_state = 3}, - [647] = {.lex_state = 14, .external_lex_state = 3}, - [648] = {.lex_state = 14, .external_lex_state = 3}, - [649] = {.lex_state = 14, .external_lex_state = 3}, - [650] = {.lex_state = 14, .external_lex_state = 3}, - [651] = {.lex_state = 14, .external_lex_state = 3}, - [652] = {.lex_state = 14, .external_lex_state = 3}, - [653] = {.lex_state = 14, .external_lex_state = 2}, - [654] = {.lex_state = 14, .external_lex_state = 2}, - [655] = {.lex_state = 14, .external_lex_state = 3}, - [656] = {.lex_state = 14, .external_lex_state = 3}, - [657] = {.lex_state = 14, .external_lex_state = 3}, - [658] = {.lex_state = 14, .external_lex_state = 3}, - [659] = {.lex_state = 14, .external_lex_state = 2}, - [660] = {.lex_state = 14, .external_lex_state = 3}, - [661] = {.lex_state = 14, .external_lex_state = 3}, - [662] = {.lex_state = 14, .external_lex_state = 3}, - [663] = {.lex_state = 14, .external_lex_state = 3}, - [664] = {.lex_state = 14, .external_lex_state = 3}, - [665] = {.lex_state = 14, .external_lex_state = 3}, - [666] = {.lex_state = 14, .external_lex_state = 3}, - [667] = {.lex_state = 14, .external_lex_state = 3}, - [668] = {.lex_state = 14, .external_lex_state = 3}, - [669] = {.lex_state = 14, .external_lex_state = 2}, - [670] = {.lex_state = 14, .external_lex_state = 3}, - [671] = {.lex_state = 14, .external_lex_state = 3}, - [672] = {.lex_state = 14, .external_lex_state = 3}, - [673] = {.lex_state = 14, .external_lex_state = 3}, - [674] = {.lex_state = 14, .external_lex_state = 3}, - [675] = {.lex_state = 14, .external_lex_state = 3}, - [676] = {.lex_state = 14, .external_lex_state = 3}, - [677] = {.lex_state = 14, .external_lex_state = 3}, - [678] = {.lex_state = 14, .external_lex_state = 3}, - [679] = {.lex_state = 14, .external_lex_state = 3}, - [680] = {.lex_state = 14, .external_lex_state = 3}, - [681] = {.lex_state = 14, .external_lex_state = 3}, - [682] = {.lex_state = 14, .external_lex_state = 3}, - [683] = {.lex_state = 14, .external_lex_state = 3}, - [684] = {.lex_state = 14, .external_lex_state = 3}, - [685] = {.lex_state = 14, .external_lex_state = 3}, - [686] = {.lex_state = 14, .external_lex_state = 3}, - [687] = {.lex_state = 14, .external_lex_state = 2}, - [688] = {.lex_state = 14, .external_lex_state = 3}, - [689] = {.lex_state = 14, .external_lex_state = 3}, - [690] = {.lex_state = 14, .external_lex_state = 3}, - [691] = {.lex_state = 14, .external_lex_state = 2}, - [692] = {.lex_state = 14, .external_lex_state = 3}, - [693] = {.lex_state = 14, .external_lex_state = 3}, - [694] = {.lex_state = 14, .external_lex_state = 3}, - [695] = {.lex_state = 14, .external_lex_state = 3}, - [696] = {.lex_state = 14, .external_lex_state = 3}, - [697] = {.lex_state = 14, .external_lex_state = 3}, - [698] = {.lex_state = 14, .external_lex_state = 3}, - [699] = {.lex_state = 14, .external_lex_state = 2}, - [700] = {.lex_state = 14, .external_lex_state = 3}, - [701] = {.lex_state = 14, .external_lex_state = 3}, - [702] = {.lex_state = 14, .external_lex_state = 2}, - [703] = {.lex_state = 14, .external_lex_state = 3}, - [704] = {.lex_state = 14, .external_lex_state = 2}, - [705] = {.lex_state = 14, .external_lex_state = 3}, - [706] = {.lex_state = 14, .external_lex_state = 3}, - [707] = {.lex_state = 14, .external_lex_state = 3}, - [708] = {.lex_state = 14, .external_lex_state = 3}, - [709] = {.lex_state = 14, .external_lex_state = 3}, - [710] = {.lex_state = 14, .external_lex_state = 3}, - [711] = {.lex_state = 14, .external_lex_state = 2}, - [712] = {.lex_state = 14, .external_lex_state = 3}, - [713] = {.lex_state = 14, .external_lex_state = 3}, - [714] = {.lex_state = 14, .external_lex_state = 3}, - [715] = {.lex_state = 14, .external_lex_state = 3}, - [716] = {.lex_state = 14, .external_lex_state = 3}, - [717] = {.lex_state = 14, .external_lex_state = 3}, - [718] = {.lex_state = 14, .external_lex_state = 3}, - [719] = {.lex_state = 14, .external_lex_state = 3}, - [720] = {.lex_state = 14, .external_lex_state = 3}, - [721] = {.lex_state = 14, .external_lex_state = 3}, - [722] = {.lex_state = 15, .external_lex_state = 3}, - [723] = {.lex_state = 14, .external_lex_state = 3}, - [724] = {.lex_state = 14, .external_lex_state = 3}, - [725] = {.lex_state = 14, .external_lex_state = 3}, - [726] = {.lex_state = 14, .external_lex_state = 3}, - [727] = {.lex_state = 14, .external_lex_state = 2}, - [728] = {.lex_state = 14, .external_lex_state = 2}, - [729] = {.lex_state = 14, .external_lex_state = 3}, - [730] = {.lex_state = 14, .external_lex_state = 3}, - [731] = {.lex_state = 14, .external_lex_state = 3}, - [732] = {.lex_state = 14, .external_lex_state = 3}, - [733] = {.lex_state = 14, .external_lex_state = 3}, - [734] = {.lex_state = 14, .external_lex_state = 3}, - [735] = {.lex_state = 14, .external_lex_state = 3}, - [736] = {.lex_state = 14, .external_lex_state = 3}, - [737] = {.lex_state = 14, .external_lex_state = 2}, - [738] = {.lex_state = 15, .external_lex_state = 3}, - [739] = {.lex_state = 14, .external_lex_state = 3}, - [740] = {.lex_state = 14, .external_lex_state = 2}, - [741] = {.lex_state = 14, .external_lex_state = 3}, - [742] = {.lex_state = 14, .external_lex_state = 3}, - [743] = {.lex_state = 14, .external_lex_state = 3}, - [744] = {.lex_state = 14, .external_lex_state = 3}, - [745] = {.lex_state = 14, .external_lex_state = 3}, - [746] = {.lex_state = 14, .external_lex_state = 3}, - [747] = {.lex_state = 14, .external_lex_state = 3}, - [748] = {.lex_state = 14, .external_lex_state = 3}, - [749] = {.lex_state = 14, .external_lex_state = 3}, - [750] = {.lex_state = 14, .external_lex_state = 2}, - [751] = {.lex_state = 14, .external_lex_state = 3}, - [752] = {.lex_state = 14, .external_lex_state = 2}, - [753] = {.lex_state = 14, .external_lex_state = 3}, - [754] = {.lex_state = 14, .external_lex_state = 3}, - [755] = {.lex_state = 14, .external_lex_state = 3}, - [756] = {.lex_state = 14, .external_lex_state = 3}, - [757] = {.lex_state = 14, .external_lex_state = 3}, - [758] = {.lex_state = 14, .external_lex_state = 3}, - [759] = {.lex_state = 14, .external_lex_state = 3}, - [760] = {.lex_state = 14, .external_lex_state = 3}, - [761] = {.lex_state = 14, .external_lex_state = 2}, - [762] = {.lex_state = 14, .external_lex_state = 3}, - [763] = {.lex_state = 14, .external_lex_state = 3}, - [764] = {.lex_state = 14, .external_lex_state = 3}, - [765] = {.lex_state = 14, .external_lex_state = 3}, - [766] = {.lex_state = 14, .external_lex_state = 3}, - [767] = {.lex_state = 14, .external_lex_state = 3}, - [768] = {.lex_state = 14, .external_lex_state = 3}, - [769] = {.lex_state = 14, .external_lex_state = 3}, - [770] = {.lex_state = 14, .external_lex_state = 2}, - [771] = {.lex_state = 14, .external_lex_state = 2}, - [772] = {.lex_state = 14, .external_lex_state = 2}, - [773] = {.lex_state = 14, .external_lex_state = 2}, - [774] = {.lex_state = 14, .external_lex_state = 3}, - [775] = {.lex_state = 14, .external_lex_state = 2}, - [776] = {.lex_state = 14, .external_lex_state = 2}, - [777] = {.lex_state = 14, .external_lex_state = 2}, - [778] = {.lex_state = 14, .external_lex_state = 2}, - [779] = {.lex_state = 14, .external_lex_state = 2}, - [780] = {.lex_state = 14, .external_lex_state = 2}, - [781] = {.lex_state = 14, .external_lex_state = 2}, - [782] = {.lex_state = 14, .external_lex_state = 2}, - [783] = {.lex_state = 14, .external_lex_state = 2}, - [784] = {.lex_state = 14, .external_lex_state = 2}, - [785] = {.lex_state = 14, .external_lex_state = 2}, - [786] = {.lex_state = 14, .external_lex_state = 2}, - [787] = {.lex_state = 14, .external_lex_state = 2}, - [788] = {.lex_state = 14, .external_lex_state = 2}, - [789] = {.lex_state = 14, .external_lex_state = 2}, - [790] = {.lex_state = 14, .external_lex_state = 2}, - [791] = {.lex_state = 14, .external_lex_state = 2}, - [792] = {.lex_state = 14, .external_lex_state = 2}, - [793] = {.lex_state = 14, .external_lex_state = 3}, - [794] = {.lex_state = 14, .external_lex_state = 2}, - [795] = {.lex_state = 14, .external_lex_state = 2}, - [796] = {.lex_state = 14, .external_lex_state = 3}, - [797] = {.lex_state = 14, .external_lex_state = 2}, - [798] = {.lex_state = 14, .external_lex_state = 2}, - [799] = {.lex_state = 14, .external_lex_state = 2}, - [800] = {.lex_state = 14, .external_lex_state = 2}, - [801] = {.lex_state = 14, .external_lex_state = 2}, - [802] = {.lex_state = 14, .external_lex_state = 2}, - [803] = {.lex_state = 14, .external_lex_state = 2}, - [804] = {.lex_state = 14, .external_lex_state = 2}, - [805] = {.lex_state = 14, .external_lex_state = 2}, - [806] = {.lex_state = 14, .external_lex_state = 2}, - [807] = {.lex_state = 14, .external_lex_state = 2}, - [808] = {.lex_state = 14, .external_lex_state = 2}, - [809] = {.lex_state = 14, .external_lex_state = 2}, - [810] = {.lex_state = 14, .external_lex_state = 2}, - [811] = {.lex_state = 14, .external_lex_state = 2}, - [812] = {.lex_state = 14, .external_lex_state = 2}, - [813] = {.lex_state = 14, .external_lex_state = 2}, - [814] = {.lex_state = 14, .external_lex_state = 2}, - [815] = {.lex_state = 14, .external_lex_state = 3}, - [816] = {.lex_state = 14, .external_lex_state = 2}, - [817] = {.lex_state = 14, .external_lex_state = 2}, - [818] = {.lex_state = 14, .external_lex_state = 2}, - [819] = {.lex_state = 14, .external_lex_state = 2}, - [820] = {.lex_state = 14, .external_lex_state = 2}, - [821] = {.lex_state = 14, .external_lex_state = 2}, - [822] = {.lex_state = 14, .external_lex_state = 2}, - [823] = {.lex_state = 14, .external_lex_state = 2}, - [824] = {.lex_state = 14, .external_lex_state = 2}, - [825] = {.lex_state = 14, .external_lex_state = 2}, - [826] = {.lex_state = 14, .external_lex_state = 2}, - [827] = {.lex_state = 14, .external_lex_state = 2}, - [828] = {.lex_state = 14, .external_lex_state = 2}, - [829] = {.lex_state = 14, .external_lex_state = 2}, - [830] = {.lex_state = 14, .external_lex_state = 2}, - [831] = {.lex_state = 14, .external_lex_state = 2}, - [832] = {.lex_state = 14, .external_lex_state = 2}, - [833] = {.lex_state = 14, .external_lex_state = 2}, - [834] = {.lex_state = 14, .external_lex_state = 2}, - [835] = {.lex_state = 14, .external_lex_state = 2}, - [836] = {.lex_state = 14, .external_lex_state = 2}, - [837] = {.lex_state = 14, .external_lex_state = 2}, - [838] = {.lex_state = 14, .external_lex_state = 2}, - [839] = {.lex_state = 14, .external_lex_state = 2}, - [840] = {.lex_state = 14, .external_lex_state = 2}, - [841] = {.lex_state = 14, .external_lex_state = 2}, - [842] = {.lex_state = 14, .external_lex_state = 2}, - [843] = {.lex_state = 14, .external_lex_state = 2}, - [844] = {.lex_state = 14, .external_lex_state = 2}, - [845] = {.lex_state = 14, .external_lex_state = 2}, - [846] = {.lex_state = 14, .external_lex_state = 2}, - [847] = {.lex_state = 14, .external_lex_state = 2}, - [848] = {.lex_state = 14, .external_lex_state = 2}, - [849] = {.lex_state = 14, .external_lex_state = 2}, - [850] = {.lex_state = 14, .external_lex_state = 2}, - [851] = {.lex_state = 14, .external_lex_state = 2}, - [852] = {.lex_state = 14, .external_lex_state = 2}, - [853] = {.lex_state = 14, .external_lex_state = 2}, - [854] = {.lex_state = 14, .external_lex_state = 2}, - [855] = {.lex_state = 14, .external_lex_state = 2}, - [856] = {.lex_state = 14, .external_lex_state = 2}, - [857] = {.lex_state = 14, .external_lex_state = 2}, - [858] = {.lex_state = 14, .external_lex_state = 2}, - [859] = {.lex_state = 14, .external_lex_state = 2}, - [860] = {.lex_state = 14, .external_lex_state = 2}, - [861] = {.lex_state = 14, .external_lex_state = 2}, - [862] = {.lex_state = 14, .external_lex_state = 2}, - [863] = {.lex_state = 15, .external_lex_state = 2}, - [864] = {.lex_state = 14, .external_lex_state = 2}, - [865] = {.lex_state = 14, .external_lex_state = 2}, - [866] = {.lex_state = 17}, - [867] = {.lex_state = 17}, - [868] = {.lex_state = 17}, - [869] = {.lex_state = 17}, - [870] = {.lex_state = 17}, - [871] = {.lex_state = 17}, - [872] = {.lex_state = 17}, - [873] = {.lex_state = 17}, - [874] = {.lex_state = 12}, - [875] = {.lex_state = 17}, - [876] = {.lex_state = 12}, - [877] = {.lex_state = 12}, - [878] = {.lex_state = 12}, - [879] = {.lex_state = 17}, - [880] = {.lex_state = 12}, - [881] = {.lex_state = 12}, - [882] = {.lex_state = 12}, - [883] = {.lex_state = 12}, - [884] = {.lex_state = 12}, - [885] = {.lex_state = 17}, - [886] = {.lex_state = 17}, - [887] = {.lex_state = 12}, - [888] = {.lex_state = 12}, - [889] = {.lex_state = 12}, - [890] = {.lex_state = 12}, - [891] = {.lex_state = 12}, - [892] = {.lex_state = 12}, - [893] = {.lex_state = 12}, - [894] = {.lex_state = 12}, - [895] = {.lex_state = 12}, - [896] = {.lex_state = 12}, - [897] = {.lex_state = 12}, - [898] = {.lex_state = 12}, - [899] = {.lex_state = 12}, - [900] = {.lex_state = 12}, - [901] = {.lex_state = 12}, - [902] = {.lex_state = 12}, - [903] = {.lex_state = 12}, - [904] = {.lex_state = 12}, - [905] = {.lex_state = 12}, - [906] = {.lex_state = 12}, - [907] = {.lex_state = 12}, - [908] = {.lex_state = 12}, - [909] = {.lex_state = 12}, - [910] = {.lex_state = 12, .external_lex_state = 4}, - [911] = {.lex_state = 12, .external_lex_state = 4}, - [912] = {.lex_state = 12, .external_lex_state = 4}, - [913] = {.lex_state = 12, .external_lex_state = 4}, - [914] = {.lex_state = 12}, - [915] = {.lex_state = 12}, - [916] = {.lex_state = 12}, - [917] = {.lex_state = 12}, - [918] = {.lex_state = 12, .external_lex_state = 4}, - [919] = {.lex_state = 12, .external_lex_state = 4}, - [920] = {.lex_state = 12}, - [921] = {.lex_state = 12, .external_lex_state = 4}, - [922] = {.lex_state = 12, .external_lex_state = 4}, - [923] = {.lex_state = 12}, - [924] = {.lex_state = 12}, - [925] = {.lex_state = 12, .external_lex_state = 4}, - [926] = {.lex_state = 12, .external_lex_state = 4}, - [927] = {.lex_state = 12, .external_lex_state = 4}, - [928] = {.lex_state = 12, .external_lex_state = 4}, - [929] = {.lex_state = 12}, - [930] = {.lex_state = 12}, - [931] = {.lex_state = 95}, - [932] = {.lex_state = 12}, - [933] = {.lex_state = 12}, - [934] = {.lex_state = 12}, - [935] = {.lex_state = 12}, - [936] = {.lex_state = 12}, - [937] = {.lex_state = 12, .external_lex_state = 4}, - [938] = {.lex_state = 12}, - [939] = {.lex_state = 12}, - [940] = {.lex_state = 12}, - [941] = {.lex_state = 12}, - [942] = {.lex_state = 12, .external_lex_state = 4}, - [943] = {.lex_state = 12}, - [944] = {.lex_state = 12}, - [945] = {.lex_state = 12}, - [946] = {.lex_state = 12}, - [947] = {.lex_state = 12}, - [948] = {.lex_state = 12}, - [949] = {.lex_state = 12}, - [950] = {.lex_state = 12}, - [951] = {.lex_state = 12}, - [952] = {.lex_state = 12}, - [953] = {.lex_state = 12}, - [954] = {.lex_state = 12}, - [955] = {.lex_state = 12}, - [956] = {.lex_state = 12}, - [957] = {.lex_state = 95}, - [958] = {.lex_state = 12}, - [959] = {.lex_state = 12}, - [960] = {.lex_state = 12}, - [961] = {.lex_state = 95}, - [962] = {.lex_state = 12}, - [963] = {.lex_state = 12}, - [964] = {.lex_state = 12}, - [965] = {.lex_state = 12}, - [966] = {.lex_state = 12}, - [967] = {.lex_state = 12}, - [968] = {.lex_state = 12}, - [969] = {.lex_state = 12}, - [970] = {.lex_state = 12}, - [971] = {.lex_state = 12}, - [972] = {.lex_state = 12}, - [973] = {.lex_state = 13}, - [974] = {.lex_state = 12}, - [975] = {.lex_state = 13}, - [976] = {.lex_state = 12}, - [977] = {.lex_state = 12}, - [978] = {.lex_state = 12}, - [979] = {.lex_state = 13}, - [980] = {.lex_state = 12}, - [981] = {.lex_state = 12}, - [982] = {.lex_state = 12}, - [983] = {.lex_state = 13}, - [984] = {.lex_state = 12}, - [985] = {.lex_state = 12}, - [986] = {.lex_state = 12}, - [987] = {.lex_state = 12}, - [988] = {.lex_state = 13}, - [989] = {.lex_state = 12}, - [990] = {.lex_state = 12}, - [991] = {.lex_state = 12}, - [992] = {.lex_state = 12}, - [993] = {.lex_state = 12}, - [994] = {.lex_state = 12}, - [995] = {.lex_state = 12}, - [996] = {.lex_state = 12}, - [997] = {.lex_state = 12}, - [998] = {.lex_state = 12}, - [999] = {.lex_state = 12}, - [1000] = {.lex_state = 12}, - [1001] = {.lex_state = 12}, - [1002] = {.lex_state = 12}, - [1003] = {.lex_state = 12}, - [1004] = {.lex_state = 12}, - [1005] = {.lex_state = 12}, - [1006] = {.lex_state = 12}, - [1007] = {.lex_state = 12}, - [1008] = {.lex_state = 12}, - [1009] = {.lex_state = 12}, - [1010] = {.lex_state = 12}, - [1011] = {.lex_state = 23}, - [1012] = {.lex_state = 23}, - [1013] = {.lex_state = 23}, - [1014] = {.lex_state = 23}, - [1015] = {.lex_state = 32}, - [1016] = {.lex_state = 32}, - [1017] = {.lex_state = 23}, - [1018] = {.lex_state = 23}, - [1019] = {.lex_state = 32}, - [1020] = {.lex_state = 32}, - [1021] = {.lex_state = 23}, - [1022] = {.lex_state = 32}, - [1023] = {.lex_state = 23}, - [1024] = {.lex_state = 17}, - [1025] = {.lex_state = 23}, - [1026] = {.lex_state = 17}, - [1027] = {.lex_state = 23}, - [1028] = {.lex_state = 23}, - [1029] = {.lex_state = 32}, - [1030] = {.lex_state = 32}, - [1031] = {.lex_state = 32}, - [1032] = {.lex_state = 23}, - [1033] = {.lex_state = 23}, - [1034] = {.lex_state = 23}, - [1035] = {.lex_state = 32}, - [1036] = {.lex_state = 32}, - [1037] = {.lex_state = 32}, - [1038] = {.lex_state = 32}, - [1039] = {.lex_state = 32}, - [1040] = {.lex_state = 23}, - [1041] = {.lex_state = 23}, - [1042] = {.lex_state = 23}, - [1043] = {.lex_state = 23}, - [1044] = {.lex_state = 32}, - [1045] = {.lex_state = 23}, - [1046] = {.lex_state = 23}, - [1047] = {.lex_state = 23}, - [1048] = {.lex_state = 23}, - [1049] = {.lex_state = 23}, - [1050] = {.lex_state = 23}, - [1051] = {.lex_state = 23}, - [1052] = {.lex_state = 23}, - [1053] = {.lex_state = 23}, - [1054] = {.lex_state = 23}, - [1055] = {.lex_state = 32}, - [1056] = {.lex_state = 23}, - [1057] = {.lex_state = 32}, - [1058] = {.lex_state = 23}, - [1059] = {.lex_state = 23}, - [1060] = {.lex_state = 23}, - [1061] = {.lex_state = 23}, - [1062] = {.lex_state = 32}, - [1063] = {.lex_state = 95}, - [1064] = {.lex_state = 95}, - [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 95}, - [1067] = {.lex_state = 0}, - [1068] = {.lex_state = 95}, - [1069] = {.lex_state = 0}, - [1070] = {.lex_state = 95}, - [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 95}, - [1073] = {.lex_state = 0}, - [1074] = {.lex_state = 95}, - [1075] = {.lex_state = 23}, - [1076] = {.lex_state = 23}, - [1077] = {.lex_state = 0}, - [1078] = {.lex_state = 0}, - [1079] = {.lex_state = 95}, - [1080] = {.lex_state = 95, .external_lex_state = 4}, - [1081] = {.lex_state = 95, .external_lex_state = 4}, - [1082] = {.lex_state = 95}, - [1083] = {.lex_state = 23}, - [1084] = {.lex_state = 95}, - [1085] = {.lex_state = 95, .external_lex_state = 4}, - [1086] = {.lex_state = 23}, - [1087] = {.lex_state = 95}, - [1088] = {.lex_state = 0, .external_lex_state = 4}, - [1089] = {.lex_state = 23}, - [1090] = {.lex_state = 23}, - [1091] = {.lex_state = 0, .external_lex_state = 4}, - [1092] = {.lex_state = 95, .external_lex_state = 4}, - [1093] = {.lex_state = 95}, - [1094] = {.lex_state = 95, .external_lex_state = 4}, - [1095] = {.lex_state = 95, .external_lex_state = 4}, - [1096] = {.lex_state = 95}, - [1097] = {.lex_state = 95}, - [1098] = {.lex_state = 23}, - [1099] = {.lex_state = 0, .external_lex_state = 4}, - [1100] = {.lex_state = 95, .external_lex_state = 4}, - [1101] = {.lex_state = 23}, - [1102] = {.lex_state = 23}, - [1103] = {.lex_state = 95}, - [1104] = {.lex_state = 20, .external_lex_state = 5}, - [1105] = {.lex_state = 23}, - [1106] = {.lex_state = 23}, - [1107] = {.lex_state = 23}, - [1108] = {.lex_state = 23}, - [1109] = {.lex_state = 23}, - [1110] = {.lex_state = 23}, - [1111] = {.lex_state = 95, .external_lex_state = 4}, - [1112] = {.lex_state = 23}, - [1113] = {.lex_state = 23}, - [1114] = {.lex_state = 20, .external_lex_state = 5}, - [1115] = {.lex_state = 20, .external_lex_state = 5}, - [1116] = {.lex_state = 95}, - [1117] = {.lex_state = 20, .external_lex_state = 5}, - [1118] = {.lex_state = 95, .external_lex_state = 4}, - [1119] = {.lex_state = 23}, - [1120] = {.lex_state = 20, .external_lex_state = 5}, - [1121] = {.lex_state = 0, .external_lex_state = 4}, - [1122] = {.lex_state = 95, .external_lex_state = 4}, - [1123] = {.lex_state = 23}, - [1124] = {.lex_state = 23}, - [1125] = {.lex_state = 12}, - [1126] = {.lex_state = 0, .external_lex_state = 4}, - [1127] = {.lex_state = 95}, - [1128] = {.lex_state = 12}, - [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, - [1131] = {.lex_state = 95}, - [1132] = {.lex_state = 23}, - [1133] = {.lex_state = 23}, - [1134] = {.lex_state = 0}, - [1135] = {.lex_state = 23}, - [1136] = {.lex_state = 23}, - [1137] = {.lex_state = 95}, - [1138] = {.lex_state = 95}, - [1139] = {.lex_state = 23}, - [1140] = {.lex_state = 23}, - [1141] = {.lex_state = 23}, - [1142] = {.lex_state = 23}, - [1143] = {.lex_state = 23}, - [1144] = {.lex_state = 23}, - [1145] = {.lex_state = 95}, - [1146] = {.lex_state = 95, .external_lex_state = 4}, - [1147] = {.lex_state = 23}, - [1148] = {.lex_state = 23}, - [1149] = {.lex_state = 95}, - [1150] = {.lex_state = 95}, - [1151] = {.lex_state = 23}, - [1152] = {.lex_state = 23}, - [1153] = {.lex_state = 0}, - [1154] = {.lex_state = 0}, - [1155] = {.lex_state = 95}, - [1156] = {.lex_state = 23}, - [1157] = {.lex_state = 0}, - [1158] = {.lex_state = 23}, - [1159] = {.lex_state = 95}, - [1160] = {.lex_state = 23}, - [1161] = {.lex_state = 0}, - [1162] = {.lex_state = 95}, - [1163] = {.lex_state = 95}, - [1164] = {.lex_state = 22}, - [1165] = {.lex_state = 23}, - [1166] = {.lex_state = 22}, - [1167] = {.lex_state = 19}, - [1168] = {.lex_state = 22}, - [1169] = {.lex_state = 19}, - [1170] = {.lex_state = 19}, - [1171] = {.lex_state = 0, .external_lex_state = 4}, - [1172] = {.lex_state = 95}, - [1173] = {.lex_state = 95}, - [1174] = {.lex_state = 95}, - [1175] = {.lex_state = 22}, - [1176] = {.lex_state = 19}, - [1177] = {.lex_state = 22}, - [1178] = {.lex_state = 19}, - [1179] = {.lex_state = 0}, - [1180] = {.lex_state = 95}, - [1181] = {.lex_state = 95}, - [1182] = {.lex_state = 10}, - [1183] = {.lex_state = 95}, - [1184] = {.lex_state = 0, .external_lex_state = 4}, - [1185] = {.lex_state = 10}, - [1186] = {.lex_state = 10}, - [1187] = {.lex_state = 95}, - [1188] = {.lex_state = 22}, - [1189] = {.lex_state = 19}, - [1190] = {.lex_state = 19}, - [1191] = {.lex_state = 95}, - [1192] = {.lex_state = 22}, - [1193] = {.lex_state = 0}, - [1194] = {.lex_state = 0}, - [1195] = {.lex_state = 22}, - [1196] = {.lex_state = 19}, - [1197] = {.lex_state = 95}, - [1198] = {.lex_state = 95}, - [1199] = {.lex_state = 95}, - [1200] = {.lex_state = 95}, - [1201] = {.lex_state = 95}, - [1202] = {.lex_state = 10}, - [1203] = {.lex_state = 0}, - [1204] = {.lex_state = 95}, - [1205] = {.lex_state = 0, .external_lex_state = 4}, - [1206] = {.lex_state = 95}, - [1207] = {.lex_state = 95, .external_lex_state = 4}, - [1208] = {.lex_state = 95}, - [1209] = {.lex_state = 95}, - [1210] = {.lex_state = 95}, - [1211] = {.lex_state = 95}, - [1212] = {.lex_state = 0}, - [1213] = {.lex_state = 95}, - [1214] = {.lex_state = 19}, - [1215] = {.lex_state = 23}, - [1216] = {.lex_state = 20, .external_lex_state = 5}, - [1217] = {.lex_state = 22}, - [1218] = {.lex_state = 10}, - [1219] = {.lex_state = 95}, - [1220] = {.lex_state = 23}, - [1221] = {.lex_state = 95}, - [1222] = {.lex_state = 10}, - [1223] = {.lex_state = 0, .external_lex_state = 4}, - [1224] = {.lex_state = 0}, - [1225] = {.lex_state = 0, .external_lex_state = 4}, - [1226] = {.lex_state = 0}, - [1227] = {.lex_state = 95}, - [1228] = {.lex_state = 95}, - [1229] = {.lex_state = 95}, - [1230] = {.lex_state = 95}, - [1231] = {.lex_state = 0}, - [1232] = {.lex_state = 0, .external_lex_state = 4}, - [1233] = {.lex_state = 0, .external_lex_state = 4}, - [1234] = {.lex_state = 0, .external_lex_state = 4}, - [1235] = {.lex_state = 0, .external_lex_state = 4}, - [1236] = {.lex_state = 23}, - [1237] = {.lex_state = 95}, - [1238] = {.lex_state = 95}, - [1239] = {.lex_state = 0}, - [1240] = {.lex_state = 0}, - [1241] = {.lex_state = 95}, - [1242] = {.lex_state = 95}, - [1243] = {.lex_state = 0, .external_lex_state = 4}, - [1244] = {.lex_state = 0}, - [1245] = {.lex_state = 0}, - [1246] = {.lex_state = 0}, - [1247] = {.lex_state = 95}, - [1248] = {.lex_state = 95}, - [1249] = {.lex_state = 0}, - [1250] = {.lex_state = 95}, - [1251] = {.lex_state = 0}, - [1252] = {.lex_state = 0}, - [1253] = {.lex_state = 0}, - [1254] = {.lex_state = 0}, - [1255] = {.lex_state = 0}, - [1256] = {.lex_state = 0}, - [1257] = {.lex_state = 0}, - [1258] = {.lex_state = 0}, - [1259] = {.lex_state = 0}, - [1260] = {.lex_state = 0}, - [1261] = {.lex_state = 0, .external_lex_state = 4}, - [1262] = {.lex_state = 32}, - [1263] = {.lex_state = 32}, - [1264] = {.lex_state = 0}, - [1265] = {.lex_state = 0}, - [1266] = {.lex_state = 0}, - [1267] = {.lex_state = 0}, - [1268] = {.lex_state = 12}, - [1269] = {.lex_state = 0}, - [1270] = {.lex_state = 32}, - [1271] = {.lex_state = 0}, - [1272] = {.lex_state = 0}, - [1273] = {.lex_state = 32}, - [1274] = {.lex_state = 0}, - [1275] = {.lex_state = 95}, - [1276] = {.lex_state = 95}, - [1277] = {.lex_state = 95}, - [1278] = {.lex_state = 0}, - [1279] = {.lex_state = 95, .external_lex_state = 4}, - [1280] = {.lex_state = 95}, - [1281] = {.lex_state = 95}, - [1282] = {.lex_state = 0}, - [1283] = {.lex_state = 95}, - [1284] = {.lex_state = 0}, - [1285] = {.lex_state = 95}, - [1286] = {.lex_state = 0}, - [1287] = {.lex_state = 32}, - [1288] = {.lex_state = 32}, - [1289] = {.lex_state = 95, .external_lex_state = 4}, - [1290] = {.lex_state = 32}, - [1291] = {.lex_state = 32}, - [1292] = {.lex_state = 32}, - [1293] = {.lex_state = 32}, - [1294] = {.lex_state = 0}, - [1295] = {.lex_state = 32}, - [1296] = {.lex_state = 32}, - [1297] = {.lex_state = 0}, - [1298] = {.lex_state = 0}, - [1299] = {.lex_state = 0}, - [1300] = {.lex_state = 0}, - [1301] = {.lex_state = 0}, - [1302] = {.lex_state = 0}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 0}, - [1305] = {.lex_state = 32}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 95}, - [1308] = {.lex_state = 0}, - [1309] = {.lex_state = 0}, - [1310] = {.lex_state = 0}, - [1311] = {.lex_state = 0}, - [1312] = {.lex_state = 0}, - [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 0}, - [1315] = {.lex_state = 0}, - [1316] = {.lex_state = 95, .external_lex_state = 4}, - [1317] = {.lex_state = 0}, - [1318] = {.lex_state = 95}, - [1319] = {.lex_state = 95, .external_lex_state = 4}, - [1320] = {.lex_state = 95}, - [1321] = {.lex_state = 0}, - [1322] = {.lex_state = 95, .external_lex_state = 4}, - [1323] = {.lex_state = 95, .external_lex_state = 4}, - [1324] = {.lex_state = 95}, - [1325] = {.lex_state = 0}, - [1326] = {.lex_state = 12}, - [1327] = {.lex_state = 12}, - [1328] = {.lex_state = 95}, - [1329] = {.lex_state = 95, .external_lex_state = 4}, - [1330] = {.lex_state = 95}, - [1331] = {.lex_state = 12}, - [1332] = {.lex_state = 0}, - [1333] = {.lex_state = 32}, - [1334] = {.lex_state = 0}, - [1335] = {.lex_state = 95}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 0}, - [1338] = {.lex_state = 32}, - [1339] = {.lex_state = 32}, - [1340] = {.lex_state = 95}, - [1341] = {.lex_state = 0}, - [1342] = {.lex_state = 0}, - [1343] = {.lex_state = 12}, - [1344] = {.lex_state = 10}, - [1345] = {.lex_state = 32}, - [1346] = {.lex_state = 95, .external_lex_state = 4}, - [1347] = {.lex_state = 0}, - [1348] = {.lex_state = 0}, - [1349] = {.lex_state = 0}, - [1350] = {.lex_state = 12}, - [1351] = {.lex_state = 0}, - [1352] = {.lex_state = 0}, - [1353] = {.lex_state = 0}, - [1354] = {.lex_state = 0}, - [1355] = {.lex_state = 0}, - [1356] = {.lex_state = 0}, - [1357] = {.lex_state = 95}, - [1358] = {.lex_state = 95}, - [1359] = {.lex_state = 0}, - [1360] = {.lex_state = 0}, - [1361] = {.lex_state = 0}, - [1362] = {.lex_state = 12}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 23}, - [1365] = {.lex_state = 0}, - [1366] = {.lex_state = 0}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 0, .external_lex_state = 4}, - [1369] = {.lex_state = 0}, - [1370] = {.lex_state = 0}, - [1371] = {.lex_state = 0, .external_lex_state = 4}, - [1372] = {.lex_state = 0}, - [1373] = {.lex_state = 10}, - [1374] = {.lex_state = 0}, - [1375] = {.lex_state = 95}, - [1376] = {.lex_state = 12}, - [1377] = {.lex_state = 0}, - [1378] = {.lex_state = 0}, - [1379] = {.lex_state = 0}, - [1380] = {.lex_state = 0, .external_lex_state = 4}, - [1381] = {.lex_state = 0}, - [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 0}, - [1384] = {.lex_state = 0}, - [1385] = {.lex_state = 0}, - [1386] = {.lex_state = 0}, - [1387] = {.lex_state = 0}, - [1388] = {.lex_state = 0}, - [1389] = {.lex_state = 0}, - [1390] = {.lex_state = 0, .external_lex_state = 4}, - [1391] = {.lex_state = 0}, - [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 0}, - [1394] = {.lex_state = 0}, - [1395] = {.lex_state = 0}, - [1396] = {.lex_state = 0}, - [1397] = {.lex_state = 95}, - [1398] = {.lex_state = 12}, - [1399] = {.lex_state = 0}, - [1400] = {.lex_state = 0}, - [1401] = {.lex_state = 0}, - [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 0}, - [1405] = {.lex_state = 0, .external_lex_state = 4}, - [1406] = {.lex_state = 0}, - [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 0}, - [1409] = {.lex_state = 0}, - [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 0}, - [1412] = {.lex_state = 0}, - [1413] = {.lex_state = 0}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 0}, - [1416] = {.lex_state = 12}, - [1417] = {.lex_state = 0, .external_lex_state = 4}, - [1418] = {.lex_state = 0}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 0, .external_lex_state = 4}, - [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 0}, - [1424] = {.lex_state = 0}, - [1425] = {.lex_state = 0}, - [1426] = {.lex_state = 0}, - [1427] = {.lex_state = 0}, - [1428] = {.lex_state = 0}, - [1429] = {.lex_state = 0}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 0}, - [1432] = {.lex_state = 0, .external_lex_state = 4}, - [1433] = {.lex_state = 0}, - [1434] = {.lex_state = 0}, - [1435] = {.lex_state = 0}, - [1436] = {.lex_state = 95}, - [1437] = {.lex_state = 0}, - [1438] = {.lex_state = 0}, - [1439] = {.lex_state = 0}, - [1440] = {.lex_state = 0}, - [1441] = {.lex_state = 0}, - [1442] = {.lex_state = 0, .external_lex_state = 4}, - [1443] = {.lex_state = 0}, - [1444] = {.lex_state = 0}, - [1445] = {.lex_state = 0}, - [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 0}, - [1449] = {.lex_state = 0}, - [1450] = {.lex_state = 0}, - [1451] = {.lex_state = 0}, - [1452] = {.lex_state = 0}, - [1453] = {.lex_state = 0}, - [1454] = {.lex_state = 0}, - [1455] = {.lex_state = 0}, - [1456] = {.lex_state = 0, .external_lex_state = 4}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 0, .external_lex_state = 4}, - [1459] = {.lex_state = 0}, - [1460] = {.lex_state = 95}, - [1461] = {.lex_state = 0}, - [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 0}, - [1464] = {.lex_state = 0}, - [1465] = {.lex_state = 0}, - [1466] = {.lex_state = 0}, - [1467] = {.lex_state = 0}, - [1468] = {.lex_state = 0, .external_lex_state = 4}, - [1469] = {.lex_state = 0}, - [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 0, .external_lex_state = 4}, - [1472] = {.lex_state = 0}, - [1473] = {.lex_state = 0}, - [1474] = {.lex_state = 0, .external_lex_state = 4}, - [1475] = {.lex_state = 0}, - [1476] = {.lex_state = 0, .external_lex_state = 4}, - [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 0}, - [1479] = {.lex_state = 95}, - [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 0}, - [1482] = {.lex_state = 0}, - [1483] = {.lex_state = 0}, - [1484] = {.lex_state = 0}, - [1485] = {.lex_state = 0}, - [1486] = {.lex_state = 0}, - [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 0}, - [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 0}, - [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 0}, - [1494] = {.lex_state = 0}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 0}, - [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 0}, - [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 0}, - [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 0, .external_lex_state = 4}, - [1508] = {.lex_state = 0}, - [1509] = {.lex_state = 95}, - [1510] = {.lex_state = 0}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 0, .external_lex_state = 4}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 0}, - [1517] = {.lex_state = 0}, - [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 95}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 0, .external_lex_state = 4}, - [1531] = {.lex_state = 0}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 95}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 12}, - [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 0}, - [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 95}, - [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 95}, - [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 12}, - [1550] = {.lex_state = 0, .external_lex_state = 4}, - [1551] = {.lex_state = 0, .external_lex_state = 4}, - [1552] = {.lex_state = 0}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 95}, - [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 0}, - [1557] = {.lex_state = 0}, - [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 95}, - [1562] = {.lex_state = 95}, - [1563] = {.lex_state = 95}, - [1564] = {.lex_state = 95}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 0}, - [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 0}, - [1569] = {.lex_state = 0}, - [1570] = {.lex_state = 95}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 0}, - [1573] = {.lex_state = 95}, - [1574] = {.lex_state = 0}, - [1575] = {.lex_state = 0}, - [1576] = {.lex_state = 95}, - [1577] = {.lex_state = 95}, - [1578] = {.lex_state = 95}, - [1579] = {.lex_state = 95}, - [1580] = {.lex_state = 95}, - [1581] = {.lex_state = 11}, - [1582] = {.lex_state = 95}, - [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 95}, - [1586] = {.lex_state = 95}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 95}, - [1590] = {.lex_state = 95}, - [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 95}, - [1593] = {.lex_state = 95}, - [1594] = {.lex_state = 0}, - [1595] = {.lex_state = 95}, - [1596] = {.lex_state = 95}, - [1597] = {.lex_state = 95}, - [1598] = {.lex_state = 95}, - [1599] = {.lex_state = 0}, - [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 0}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 17}, - [1604] = {.lex_state = 0}, - [1605] = {.lex_state = 0}, - [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 0}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 0}, - [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 0}, - [1612] = {.lex_state = 0}, - [1613] = {.lex_state = 0}, - [1614] = {.lex_state = 0}, - [1615] = {.lex_state = 95}, - [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 95}, - [1618] = {.lex_state = 95}, - [1619] = {.lex_state = 11}, - [1620] = {.lex_state = 95}, - [1621] = {.lex_state = 11}, - [1622] = {.lex_state = 95}, - [1623] = {.lex_state = 95}, - [1624] = {.lex_state = 95}, - [1625] = {.lex_state = 95}, - [1626] = {.lex_state = 0}, - [1627] = {.lex_state = 0}, - [1628] = {.lex_state = 95}, - [1629] = {.lex_state = 95}, - [1630] = {.lex_state = 95}, - [1631] = {.lex_state = 95}, - [1632] = {.lex_state = 95}, - [1633] = {.lex_state = 95}, - [1634] = {.lex_state = 95}, - [1635] = {.lex_state = 95}, - [1636] = {.lex_state = 95}, - [1637] = {.lex_state = 0}, - [1638] = {.lex_state = 17}, - [1639] = {.lex_state = 0}, - [1640] = {.lex_state = 95}, - [1641] = {.lex_state = 95}, - [1642] = {.lex_state = 95}, - [1643] = {.lex_state = 11}, - [1644] = {.lex_state = 95}, - [1645] = {.lex_state = 95}, - [1646] = {.lex_state = 95}, - [1647] = {.lex_state = 17}, - [1648] = {.lex_state = 0}, - [1649] = {.lex_state = 0}, - [1650] = {.lex_state = 0}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 95}, - [1653] = {.lex_state = 95}, - [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 95}, - [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 0}, - [1658] = {.lex_state = 95}, - [1659] = {.lex_state = 95}, - [1660] = {.lex_state = 95}, - [1661] = {.lex_state = 0}, - [1662] = {.lex_state = 95}, - [1663] = {.lex_state = 0}, - [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 17}, - [1666] = {.lex_state = 0}, - [1667] = {.lex_state = 95}, - [1668] = {.lex_state = 0}, - [1669] = {.lex_state = 95}, - [1670] = {.lex_state = 0}, - [1671] = {.lex_state = 0}, - [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 0}, + [1] = {.lex_state = 158, .external_lex_state = 2}, + [2] = {.lex_state = 15, .external_lex_state = 2}, + [3] = {.lex_state = 15, .external_lex_state = 2}, + [4] = {.lex_state = 15, .external_lex_state = 2}, + [5] = {.lex_state = 15, .external_lex_state = 2}, + [6] = {.lex_state = 15, .external_lex_state = 2}, + [7] = {.lex_state = 158, .external_lex_state = 2}, + [8] = {.lex_state = 158, .external_lex_state = 2}, + [9] = {.lex_state = 158, .external_lex_state = 2}, + [10] = {.lex_state = 158, .external_lex_state = 2}, + [11] = {.lex_state = 158, .external_lex_state = 2}, + [12] = {.lex_state = 158, .external_lex_state = 2}, + [13] = {.lex_state = 158, .external_lex_state = 2}, + [14] = {.lex_state = 158, .external_lex_state = 2}, + [15] = {.lex_state = 158, .external_lex_state = 2}, + [16] = {.lex_state = 158, .external_lex_state = 2}, + [17] = {.lex_state = 158, .external_lex_state = 2}, + [18] = {.lex_state = 158, .external_lex_state = 2}, + [19] = {.lex_state = 158, .external_lex_state = 2}, + [20] = {.lex_state = 158, .external_lex_state = 2}, + [21] = {.lex_state = 158, .external_lex_state = 2}, + [22] = {.lex_state = 158, .external_lex_state = 2}, + [23] = {.lex_state = 158, .external_lex_state = 2}, + [24] = {.lex_state = 158, .external_lex_state = 2}, + [25] = {.lex_state = 158, .external_lex_state = 2}, + [26] = {.lex_state = 158, .external_lex_state = 2}, + [27] = {.lex_state = 158, .external_lex_state = 2}, + [28] = {.lex_state = 158, .external_lex_state = 2}, + [29] = {.lex_state = 158, .external_lex_state = 2}, + [30] = {.lex_state = 158, .external_lex_state = 2}, + [31] = {.lex_state = 158, .external_lex_state = 2}, + [32] = {.lex_state = 158, .external_lex_state = 2}, + [33] = {.lex_state = 158, .external_lex_state = 2}, + [34] = {.lex_state = 158, .external_lex_state = 2}, + [35] = {.lex_state = 158, .external_lex_state = 2}, + [36] = {.lex_state = 158, .external_lex_state = 2}, + [37] = {.lex_state = 158, .external_lex_state = 2}, + [38] = {.lex_state = 158, .external_lex_state = 2}, + [39] = {.lex_state = 158, .external_lex_state = 2}, + [40] = {.lex_state = 158, .external_lex_state = 2}, + [41] = {.lex_state = 158, .external_lex_state = 2}, + [42] = {.lex_state = 158, .external_lex_state = 2}, + [43] = {.lex_state = 158, .external_lex_state = 2}, + [44] = {.lex_state = 158, .external_lex_state = 2}, + [45] = {.lex_state = 158, .external_lex_state = 2}, + [46] = {.lex_state = 158, .external_lex_state = 2}, + [47] = {.lex_state = 158, .external_lex_state = 2}, + [48] = {.lex_state = 158, .external_lex_state = 2}, + [49] = {.lex_state = 158, .external_lex_state = 2}, + [50] = {.lex_state = 158, .external_lex_state = 2}, + [51] = {.lex_state = 158, .external_lex_state = 2}, + [52] = {.lex_state = 158, .external_lex_state = 2}, + [53] = {.lex_state = 158, .external_lex_state = 2}, + [54] = {.lex_state = 158, .external_lex_state = 2}, + [55] = {.lex_state = 158, .external_lex_state = 2}, + [56] = {.lex_state = 158, .external_lex_state = 2}, + [57] = {.lex_state = 158, .external_lex_state = 2}, + [58] = {.lex_state = 14, .external_lex_state = 3}, + [59] = {.lex_state = 14, .external_lex_state = 4}, + [60] = {.lex_state = 14, .external_lex_state = 4}, + [61] = {.lex_state = 14, .external_lex_state = 3}, + [62] = {.lex_state = 14, .external_lex_state = 3}, + [63] = {.lex_state = 157, .external_lex_state = 4}, + [64] = {.lex_state = 157, .external_lex_state = 4}, + [65] = {.lex_state = 157, .external_lex_state = 4}, + [66] = {.lex_state = 157, .external_lex_state = 4}, + [67] = {.lex_state = 157, .external_lex_state = 4}, + [68] = {.lex_state = 157, .external_lex_state = 4}, + [69] = {.lex_state = 157, .external_lex_state = 4}, + [70] = {.lex_state = 157, .external_lex_state = 4}, + [71] = {.lex_state = 157, .external_lex_state = 4}, + [72] = {.lex_state = 157, .external_lex_state = 4}, + [73] = {.lex_state = 157, .external_lex_state = 4}, + [74] = {.lex_state = 157, .external_lex_state = 4}, + [75] = {.lex_state = 157, .external_lex_state = 4}, + [76] = {.lex_state = 157, .external_lex_state = 4}, + [77] = {.lex_state = 157, .external_lex_state = 4}, + [78] = {.lex_state = 16, .external_lex_state = 2}, + [79] = {.lex_state = 16, .external_lex_state = 2}, + [80] = {.lex_state = 16, .external_lex_state = 2}, + [81] = {.lex_state = 16, .external_lex_state = 2}, + [82] = {.lex_state = 16, .external_lex_state = 2}, + [83] = {.lex_state = 16, .external_lex_state = 2}, + [84] = {.lex_state = 16, .external_lex_state = 2}, + [85] = {.lex_state = 16, .external_lex_state = 2}, + [86] = {.lex_state = 16, .external_lex_state = 2}, + [87] = {.lex_state = 16, .external_lex_state = 2}, + [88] = {.lex_state = 16, .external_lex_state = 2}, + [89] = {.lex_state = 16, .external_lex_state = 2}, + [90] = {.lex_state = 16, .external_lex_state = 2}, + [91] = {.lex_state = 16, .external_lex_state = 2}, + [92] = {.lex_state = 16, .external_lex_state = 2}, + [93] = {.lex_state = 16, .external_lex_state = 2}, + [94] = {.lex_state = 16, .external_lex_state = 2}, + [95] = {.lex_state = 16, .external_lex_state = 2}, + [96] = {.lex_state = 16, .external_lex_state = 2}, + [97] = {.lex_state = 16, .external_lex_state = 2}, + [98] = {.lex_state = 16, .external_lex_state = 2}, + [99] = {.lex_state = 16, .external_lex_state = 2}, + [100] = {.lex_state = 16, .external_lex_state = 2}, + [101] = {.lex_state = 16, .external_lex_state = 2}, + [102] = {.lex_state = 16, .external_lex_state = 2}, + [103] = {.lex_state = 16, .external_lex_state = 2}, + [104] = {.lex_state = 16, .external_lex_state = 2}, + [105] = {.lex_state = 16, .external_lex_state = 2}, + [106] = {.lex_state = 16, .external_lex_state = 2}, + [107] = {.lex_state = 16, .external_lex_state = 2}, + [108] = {.lex_state = 16, .external_lex_state = 2}, + [109] = {.lex_state = 16, .external_lex_state = 2}, + [110] = {.lex_state = 16, .external_lex_state = 2}, + [111] = {.lex_state = 16, .external_lex_state = 2}, + [112] = {.lex_state = 16, .external_lex_state = 2}, + [113] = {.lex_state = 16, .external_lex_state = 5}, + [114] = {.lex_state = 16, .external_lex_state = 2}, + [115] = {.lex_state = 16, .external_lex_state = 2}, + [116] = {.lex_state = 16, .external_lex_state = 2}, + [117] = {.lex_state = 16, .external_lex_state = 2}, + [118] = {.lex_state = 16, .external_lex_state = 2}, + [119] = {.lex_state = 16, .external_lex_state = 2}, + [120] = {.lex_state = 16, .external_lex_state = 2}, + [121] = {.lex_state = 16, .external_lex_state = 2}, + [122] = {.lex_state = 16, .external_lex_state = 2}, + [123] = {.lex_state = 16, .external_lex_state = 2}, + [124] = {.lex_state = 16, .external_lex_state = 2}, + [125] = {.lex_state = 16, .external_lex_state = 2}, + [126] = {.lex_state = 16, .external_lex_state = 2}, + [127] = {.lex_state = 16, .external_lex_state = 2}, + [128] = {.lex_state = 16, .external_lex_state = 2}, + [129] = {.lex_state = 16, .external_lex_state = 2}, + [130] = {.lex_state = 16, .external_lex_state = 2}, + [131] = {.lex_state = 16, .external_lex_state = 2}, + [132] = {.lex_state = 16, .external_lex_state = 2}, + [133] = {.lex_state = 16, .external_lex_state = 2}, + [134] = {.lex_state = 16, .external_lex_state = 2}, + [135] = {.lex_state = 16, .external_lex_state = 2}, + [136] = {.lex_state = 16, .external_lex_state = 2}, + [137] = {.lex_state = 16, .external_lex_state = 2}, + [138] = {.lex_state = 16, .external_lex_state = 2}, + [139] = {.lex_state = 16, .external_lex_state = 2}, + [140] = {.lex_state = 16, .external_lex_state = 2}, + [141] = {.lex_state = 16, .external_lex_state = 2}, + [142] = {.lex_state = 16, .external_lex_state = 2}, + [143] = {.lex_state = 16, .external_lex_state = 2}, + [144] = {.lex_state = 17, .external_lex_state = 2}, + [145] = {.lex_state = 16, .external_lex_state = 2}, + [146] = {.lex_state = 17, .external_lex_state = 2}, + [147] = {.lex_state = 16, .external_lex_state = 2}, + [148] = {.lex_state = 16, .external_lex_state = 2}, + [149] = {.lex_state = 16, .external_lex_state = 2}, + [150] = {.lex_state = 16, .external_lex_state = 2}, + [151] = {.lex_state = 16, .external_lex_state = 2}, + [152] = {.lex_state = 17, .external_lex_state = 2}, + [153] = {.lex_state = 16, .external_lex_state = 2}, + [154] = {.lex_state = 16, .external_lex_state = 2}, + [155] = {.lex_state = 16, .external_lex_state = 2}, + [156] = {.lex_state = 16, .external_lex_state = 2}, + [157] = {.lex_state = 16, .external_lex_state = 2}, + [158] = {.lex_state = 16, .external_lex_state = 2}, + [159] = {.lex_state = 16, .external_lex_state = 2}, + [160] = {.lex_state = 17, .external_lex_state = 2}, + [161] = {.lex_state = 17, .external_lex_state = 2}, + [162] = {.lex_state = 16, .external_lex_state = 2}, + [163] = {.lex_state = 16, .external_lex_state = 2}, + [164] = {.lex_state = 16, .external_lex_state = 2}, + [165] = {.lex_state = 16, .external_lex_state = 2}, + [166] = {.lex_state = 16, .external_lex_state = 2}, + [167] = {.lex_state = 16, .external_lex_state = 2}, + [168] = {.lex_state = 16, .external_lex_state = 2}, + [169] = {.lex_state = 16, .external_lex_state = 2}, + [170] = {.lex_state = 16, .external_lex_state = 2}, + [171] = {.lex_state = 16, .external_lex_state = 2}, + [172] = {.lex_state = 16, .external_lex_state = 2}, + [173] = {.lex_state = 16, .external_lex_state = 2}, + [174] = {.lex_state = 16, .external_lex_state = 2}, + [175] = {.lex_state = 16, .external_lex_state = 2}, + [176] = {.lex_state = 16, .external_lex_state = 2}, + [177] = {.lex_state = 16, .external_lex_state = 2}, + [178] = {.lex_state = 16, .external_lex_state = 2}, + [179] = {.lex_state = 16, .external_lex_state = 2}, + [180] = {.lex_state = 16, .external_lex_state = 2}, + [181] = {.lex_state = 16, .external_lex_state = 2}, + [182] = {.lex_state = 16, .external_lex_state = 2}, + [183] = {.lex_state = 16, .external_lex_state = 2}, + [184] = {.lex_state = 16, .external_lex_state = 2}, + [185] = {.lex_state = 16, .external_lex_state = 2}, + [186] = {.lex_state = 16, .external_lex_state = 2}, + [187] = {.lex_state = 16, .external_lex_state = 2}, + [188] = {.lex_state = 16, .external_lex_state = 2}, + [189] = {.lex_state = 16, .external_lex_state = 2}, + [190] = {.lex_state = 16, .external_lex_state = 2}, + [191] = {.lex_state = 16, .external_lex_state = 2}, + [192] = {.lex_state = 16, .external_lex_state = 2}, + [193] = {.lex_state = 16, .external_lex_state = 2}, + [194] = {.lex_state = 16, .external_lex_state = 2}, + [195] = {.lex_state = 16, .external_lex_state = 2}, + [196] = {.lex_state = 16, .external_lex_state = 2}, + [197] = {.lex_state = 16, .external_lex_state = 2}, + [198] = {.lex_state = 16, .external_lex_state = 2}, + [199] = {.lex_state = 16, .external_lex_state = 2}, + [200] = {.lex_state = 16, .external_lex_state = 2}, + [201] = {.lex_state = 16, .external_lex_state = 2}, + [202] = {.lex_state = 16, .external_lex_state = 2}, + [203] = {.lex_state = 16, .external_lex_state = 2}, + [204] = {.lex_state = 16, .external_lex_state = 2}, + [205] = {.lex_state = 16, .external_lex_state = 2}, + [206] = {.lex_state = 16, .external_lex_state = 2}, + [207] = {.lex_state = 16, .external_lex_state = 2}, + [208] = {.lex_state = 16, .external_lex_state = 2}, + [209] = {.lex_state = 16, .external_lex_state = 2}, + [210] = {.lex_state = 16, .external_lex_state = 2}, + [211] = {.lex_state = 16, .external_lex_state = 2}, + [212] = {.lex_state = 16, .external_lex_state = 2}, + [213] = {.lex_state = 16, .external_lex_state = 2}, + [214] = {.lex_state = 16, .external_lex_state = 2}, + [215] = {.lex_state = 16, .external_lex_state = 2}, + [216] = {.lex_state = 16, .external_lex_state = 2}, + [217] = {.lex_state = 16, .external_lex_state = 2}, + [218] = {.lex_state = 16, .external_lex_state = 2}, + [219] = {.lex_state = 16, .external_lex_state = 2}, + [220] = {.lex_state = 16, .external_lex_state = 2}, + [221] = {.lex_state = 16, .external_lex_state = 2}, + [222] = {.lex_state = 16, .external_lex_state = 2}, + [223] = {.lex_state = 16, .external_lex_state = 2}, + [224] = {.lex_state = 16, .external_lex_state = 2}, + [225] = {.lex_state = 16, .external_lex_state = 2}, + [226] = {.lex_state = 16, .external_lex_state = 2}, + [227] = {.lex_state = 16, .external_lex_state = 2}, + [228] = {.lex_state = 16, .external_lex_state = 2}, + [229] = {.lex_state = 16, .external_lex_state = 2}, + [230] = {.lex_state = 16, .external_lex_state = 2}, + [231] = {.lex_state = 16, .external_lex_state = 2}, + [232] = {.lex_state = 16, .external_lex_state = 2}, + [233] = {.lex_state = 16, .external_lex_state = 2}, + [234] = {.lex_state = 16, .external_lex_state = 2}, + [235] = {.lex_state = 16, .external_lex_state = 2}, + [236] = {.lex_state = 16, .external_lex_state = 2}, + [237] = {.lex_state = 16, .external_lex_state = 2}, + [238] = {.lex_state = 16, .external_lex_state = 2}, + [239] = {.lex_state = 16, .external_lex_state = 2}, + [240] = {.lex_state = 16, .external_lex_state = 2}, + [241] = {.lex_state = 16, .external_lex_state = 2}, + [242] = {.lex_state = 16, .external_lex_state = 2}, + [243] = {.lex_state = 16, .external_lex_state = 2}, + [244] = {.lex_state = 16, .external_lex_state = 2}, + [245] = {.lex_state = 16, .external_lex_state = 2}, + [246] = {.lex_state = 16, .external_lex_state = 2}, + [247] = {.lex_state = 16, .external_lex_state = 2}, + [248] = {.lex_state = 16, .external_lex_state = 2}, + [249] = {.lex_state = 16, .external_lex_state = 2}, + [250] = {.lex_state = 16, .external_lex_state = 2}, + [251] = {.lex_state = 16, .external_lex_state = 2}, + [252] = {.lex_state = 16, .external_lex_state = 2}, + [253] = {.lex_state = 16, .external_lex_state = 2}, + [254] = {.lex_state = 16, .external_lex_state = 2}, + [255] = {.lex_state = 16, .external_lex_state = 2}, + [256] = {.lex_state = 16, .external_lex_state = 2}, + [257] = {.lex_state = 16, .external_lex_state = 2}, + [258] = {.lex_state = 16, .external_lex_state = 2}, + [259] = {.lex_state = 16, .external_lex_state = 2}, + [260] = {.lex_state = 16, .external_lex_state = 2}, + [261] = {.lex_state = 16, .external_lex_state = 2}, + [262] = {.lex_state = 16, .external_lex_state = 2}, + [263] = {.lex_state = 16, .external_lex_state = 2}, + [264] = {.lex_state = 16, .external_lex_state = 2}, + [265] = {.lex_state = 16, .external_lex_state = 2}, + [266] = {.lex_state = 16, .external_lex_state = 2}, + [267] = {.lex_state = 16, .external_lex_state = 2}, + [268] = {.lex_state = 16, .external_lex_state = 2}, + [269] = {.lex_state = 16, .external_lex_state = 2}, + [270] = {.lex_state = 16, .external_lex_state = 2}, + [271] = {.lex_state = 16, .external_lex_state = 2}, + [272] = {.lex_state = 16, .external_lex_state = 2}, + [273] = {.lex_state = 16, .external_lex_state = 2}, + [274] = {.lex_state = 16, .external_lex_state = 2}, + [275] = {.lex_state = 16, .external_lex_state = 2}, + [276] = {.lex_state = 16, .external_lex_state = 2}, + [277] = {.lex_state = 16, .external_lex_state = 2}, + [278] = {.lex_state = 16, .external_lex_state = 2}, + [279] = {.lex_state = 16, .external_lex_state = 2}, + [280] = {.lex_state = 16, .external_lex_state = 2}, + [281] = {.lex_state = 16, .external_lex_state = 2}, + [282] = {.lex_state = 16, .external_lex_state = 2}, + [283] = {.lex_state = 16, .external_lex_state = 2}, + [284] = {.lex_state = 16, .external_lex_state = 2}, + [285] = {.lex_state = 16, .external_lex_state = 2}, + [286] = {.lex_state = 16, .external_lex_state = 2}, + [287] = {.lex_state = 16, .external_lex_state = 2}, + [288] = {.lex_state = 16, .external_lex_state = 2}, + [289] = {.lex_state = 16, .external_lex_state = 2}, + [290] = {.lex_state = 16, .external_lex_state = 2}, + [291] = {.lex_state = 16, .external_lex_state = 2}, + [292] = {.lex_state = 16, .external_lex_state = 2}, + [293] = {.lex_state = 16, .external_lex_state = 2}, + [294] = {.lex_state = 16, .external_lex_state = 2}, + [295] = {.lex_state = 16, .external_lex_state = 2}, + [296] = {.lex_state = 16, .external_lex_state = 2}, + [297] = {.lex_state = 18, .external_lex_state = 4}, + [298] = {.lex_state = 18, .external_lex_state = 4}, + [299] = {.lex_state = 18, .external_lex_state = 4}, + [300] = {.lex_state = 18, .external_lex_state = 4}, + [301] = {.lex_state = 18, .external_lex_state = 4}, + [302] = {.lex_state = 18, .external_lex_state = 4}, + [303] = {.lex_state = 18, .external_lex_state = 4}, + [304] = {.lex_state = 18, .external_lex_state = 4}, + [305] = {.lex_state = 18, .external_lex_state = 4}, + [306] = {.lex_state = 18, .external_lex_state = 4}, + [307] = {.lex_state = 18, .external_lex_state = 4}, + [308] = {.lex_state = 18, .external_lex_state = 4}, + [309] = {.lex_state = 18, .external_lex_state = 4}, + [310] = {.lex_state = 18, .external_lex_state = 4}, + [311] = {.lex_state = 18, .external_lex_state = 3}, + [312] = {.lex_state = 18, .external_lex_state = 3}, + [313] = {.lex_state = 158, .external_lex_state = 5}, + [314] = {.lex_state = 158, .external_lex_state = 2}, + [315] = {.lex_state = 158, .external_lex_state = 5}, + [316] = {.lex_state = 158, .external_lex_state = 2}, + [317] = {.lex_state = 158, .external_lex_state = 2}, + [318] = {.lex_state = 18, .external_lex_state = 4}, + [319] = {.lex_state = 18, .external_lex_state = 3}, + [320] = {.lex_state = 158, .external_lex_state = 2}, + [321] = {.lex_state = 18, .external_lex_state = 4}, + [322] = {.lex_state = 18, .external_lex_state = 4}, + [323] = {.lex_state = 18, .external_lex_state = 4}, + [324] = {.lex_state = 18, .external_lex_state = 3}, + [325] = {.lex_state = 18, .external_lex_state = 4}, + [326] = {.lex_state = 18, .external_lex_state = 4}, + [327] = {.lex_state = 18, .external_lex_state = 4}, + [328] = {.lex_state = 18, .external_lex_state = 4}, + [329] = {.lex_state = 18, .external_lex_state = 4}, + [330] = {.lex_state = 18, .external_lex_state = 3}, + [331] = {.lex_state = 158, .external_lex_state = 5}, + [332] = {.lex_state = 158, .external_lex_state = 5}, + [333] = {.lex_state = 158, .external_lex_state = 5}, + [334] = {.lex_state = 18, .external_lex_state = 3}, + [335] = {.lex_state = 158, .external_lex_state = 5}, + [336] = {.lex_state = 158, .external_lex_state = 5}, + [337] = {.lex_state = 158, .external_lex_state = 5}, + [338] = {.lex_state = 158, .external_lex_state = 2}, + [339] = {.lex_state = 158, .external_lex_state = 5}, + [340] = {.lex_state = 158, .external_lex_state = 5}, + [341] = {.lex_state = 158, .external_lex_state = 5}, + [342] = {.lex_state = 158, .external_lex_state = 5}, + [343] = {.lex_state = 158, .external_lex_state = 5}, + [344] = {.lex_state = 158, .external_lex_state = 5}, + [345] = {.lex_state = 158, .external_lex_state = 5}, + [346] = {.lex_state = 158, .external_lex_state = 5}, + [347] = {.lex_state = 158, .external_lex_state = 2}, + [348] = {.lex_state = 158, .external_lex_state = 5}, + [349] = {.lex_state = 18, .external_lex_state = 3}, + [350] = {.lex_state = 158, .external_lex_state = 2}, + [351] = {.lex_state = 158, .external_lex_state = 5}, + [352] = {.lex_state = 158, .external_lex_state = 2}, + [353] = {.lex_state = 158, .external_lex_state = 2}, + [354] = {.lex_state = 158, .external_lex_state = 2}, + [355] = {.lex_state = 158, .external_lex_state = 2}, + [356] = {.lex_state = 18, .external_lex_state = 4}, + [357] = {.lex_state = 158, .external_lex_state = 2}, + [358] = {.lex_state = 158, .external_lex_state = 2}, + [359] = {.lex_state = 158, .external_lex_state = 2}, + [360] = {.lex_state = 158, .external_lex_state = 2}, + [361] = {.lex_state = 158, .external_lex_state = 2}, + [362] = {.lex_state = 158, .external_lex_state = 2}, + [363] = {.lex_state = 158, .external_lex_state = 2}, + [364] = {.lex_state = 158, .external_lex_state = 2}, + [365] = {.lex_state = 158, .external_lex_state = 2}, + [366] = {.lex_state = 158, .external_lex_state = 2}, + [367] = {.lex_state = 158, .external_lex_state = 2}, + [368] = {.lex_state = 158, .external_lex_state = 2}, + [369] = {.lex_state = 158, .external_lex_state = 2}, + [370] = {.lex_state = 158, .external_lex_state = 2}, + [371] = {.lex_state = 158, .external_lex_state = 2}, + [372] = {.lex_state = 158, .external_lex_state = 2}, + [373] = {.lex_state = 158, .external_lex_state = 2}, + [374] = {.lex_state = 158, .external_lex_state = 2}, + [375] = {.lex_state = 158, .external_lex_state = 2}, + [376] = {.lex_state = 18, .external_lex_state = 4}, + [377] = {.lex_state = 158, .external_lex_state = 2}, + [378] = {.lex_state = 18, .external_lex_state = 3}, + [379] = {.lex_state = 158, .external_lex_state = 2}, + [380] = {.lex_state = 158, .external_lex_state = 2}, + [381] = {.lex_state = 158, .external_lex_state = 2}, + [382] = {.lex_state = 158, .external_lex_state = 2}, + [383] = {.lex_state = 158, .external_lex_state = 2}, + [384] = {.lex_state = 158, .external_lex_state = 2}, + [385] = {.lex_state = 158, .external_lex_state = 2}, + [386] = {.lex_state = 158, .external_lex_state = 2}, + [387] = {.lex_state = 158, .external_lex_state = 2}, + [388] = {.lex_state = 158, .external_lex_state = 2}, + [389] = {.lex_state = 158, .external_lex_state = 2}, + [390] = {.lex_state = 158, .external_lex_state = 2}, + [391] = {.lex_state = 158, .external_lex_state = 2}, + [392] = {.lex_state = 158, .external_lex_state = 2}, + [393] = {.lex_state = 158, .external_lex_state = 2}, + [394] = {.lex_state = 158, .external_lex_state = 2}, + [395] = {.lex_state = 158, .external_lex_state = 2}, + [396] = {.lex_state = 158, .external_lex_state = 2}, + [397] = {.lex_state = 18, .external_lex_state = 3}, + [398] = {.lex_state = 158, .external_lex_state = 2}, + [399] = {.lex_state = 158, .external_lex_state = 2}, + [400] = {.lex_state = 158, .external_lex_state = 2}, + [401] = {.lex_state = 158, .external_lex_state = 2}, + [402] = {.lex_state = 158, .external_lex_state = 2}, + [403] = {.lex_state = 158, .external_lex_state = 2}, + [404] = {.lex_state = 158, .external_lex_state = 2}, + [405] = {.lex_state = 158, .external_lex_state = 2}, + [406] = {.lex_state = 158, .external_lex_state = 2}, + [407] = {.lex_state = 158, .external_lex_state = 2}, + [408] = {.lex_state = 158, .external_lex_state = 2}, + [409] = {.lex_state = 158, .external_lex_state = 2}, + [410] = {.lex_state = 158, .external_lex_state = 2}, + [411] = {.lex_state = 158, .external_lex_state = 2}, + [412] = {.lex_state = 158, .external_lex_state = 2}, + [413] = {.lex_state = 158, .external_lex_state = 2}, + [414] = {.lex_state = 158, .external_lex_state = 2}, + [415] = {.lex_state = 158, .external_lex_state = 2}, + [416] = {.lex_state = 158, .external_lex_state = 2}, + [417] = {.lex_state = 158, .external_lex_state = 2}, + [418] = {.lex_state = 158, .external_lex_state = 2}, + [419] = {.lex_state = 158, .external_lex_state = 2}, + [420] = {.lex_state = 158, .external_lex_state = 2}, + [421] = {.lex_state = 158, .external_lex_state = 2}, + [422] = {.lex_state = 18, .external_lex_state = 4}, + [423] = {.lex_state = 18, .external_lex_state = 3}, + [424] = {.lex_state = 18, .external_lex_state = 3}, + [425] = {.lex_state = 18, .external_lex_state = 3}, + [426] = {.lex_state = 18, .external_lex_state = 4}, + [427] = {.lex_state = 18, .external_lex_state = 3}, + [428] = {.lex_state = 18, .external_lex_state = 4}, + [429] = {.lex_state = 18, .external_lex_state = 3}, + [430] = {.lex_state = 18, .external_lex_state = 3}, + [431] = {.lex_state = 18, .external_lex_state = 3}, + [432] = {.lex_state = 18, .external_lex_state = 3}, + [433] = {.lex_state = 18, .external_lex_state = 3}, + [434] = {.lex_state = 18, .external_lex_state = 4}, + [435] = {.lex_state = 18, .external_lex_state = 3}, + [436] = {.lex_state = 18, .external_lex_state = 3}, + [437] = {.lex_state = 18, .external_lex_state = 4}, + [438] = {.lex_state = 18, .external_lex_state = 4}, + [439] = {.lex_state = 18, .external_lex_state = 3}, + [440] = {.lex_state = 18, .external_lex_state = 3}, + [441] = {.lex_state = 18, .external_lex_state = 3}, + [442] = {.lex_state = 18, .external_lex_state = 3}, + [443] = {.lex_state = 158, .external_lex_state = 2}, + [444] = {.lex_state = 158, .external_lex_state = 2}, + [445] = {.lex_state = 158, .external_lex_state = 2}, + [446] = {.lex_state = 158, .external_lex_state = 2}, + [447] = {.lex_state = 158, .external_lex_state = 2}, + [448] = {.lex_state = 158, .external_lex_state = 2}, + [449] = {.lex_state = 18, .external_lex_state = 3}, + [450] = {.lex_state = 158, .external_lex_state = 2}, + [451] = {.lex_state = 158, .external_lex_state = 2}, + [452] = {.lex_state = 158, .external_lex_state = 2}, + [453] = {.lex_state = 18, .external_lex_state = 3}, + [454] = {.lex_state = 18, .external_lex_state = 3}, + [455] = {.lex_state = 18, .external_lex_state = 4}, + [456] = {.lex_state = 18, .external_lex_state = 4}, + [457] = {.lex_state = 18, .external_lex_state = 4}, + [458] = {.lex_state = 18, .external_lex_state = 4}, + [459] = {.lex_state = 18, .external_lex_state = 4}, + [460] = {.lex_state = 18, .external_lex_state = 4}, + [461] = {.lex_state = 18, .external_lex_state = 4}, + [462] = {.lex_state = 18, .external_lex_state = 4}, + [463] = {.lex_state = 18, .external_lex_state = 4}, + [464] = {.lex_state = 18, .external_lex_state = 4}, + [465] = {.lex_state = 18, .external_lex_state = 4}, + [466] = {.lex_state = 18, .external_lex_state = 3}, + [467] = {.lex_state = 18, .external_lex_state = 3}, + [468] = {.lex_state = 18, .external_lex_state = 4}, + [469] = {.lex_state = 18, .external_lex_state = 4}, + [470] = {.lex_state = 18, .external_lex_state = 4}, + [471] = {.lex_state = 18, .external_lex_state = 3}, + [472] = {.lex_state = 18, .external_lex_state = 3}, + [473] = {.lex_state = 18, .external_lex_state = 4}, + [474] = {.lex_state = 18, .external_lex_state = 3}, + [475] = {.lex_state = 18, .external_lex_state = 4}, + [476] = {.lex_state = 18, .external_lex_state = 4}, + [477] = {.lex_state = 18, .external_lex_state = 3}, + [478] = {.lex_state = 18, .external_lex_state = 4}, + [479] = {.lex_state = 18, .external_lex_state = 4}, + [480] = {.lex_state = 18, .external_lex_state = 4}, + [481] = {.lex_state = 18, .external_lex_state = 3}, + [482] = {.lex_state = 18, .external_lex_state = 3}, + [483] = {.lex_state = 18, .external_lex_state = 3}, + [484] = {.lex_state = 18, .external_lex_state = 4}, + [485] = {.lex_state = 18, .external_lex_state = 3}, + [486] = {.lex_state = 18, .external_lex_state = 3}, + [487] = {.lex_state = 18, .external_lex_state = 3}, + [488] = {.lex_state = 18, .external_lex_state = 3}, + [489] = {.lex_state = 18, .external_lex_state = 4}, + [490] = {.lex_state = 18, .external_lex_state = 3}, + [491] = {.lex_state = 18, .external_lex_state = 3}, + [492] = {.lex_state = 18, .external_lex_state = 3}, + [493] = {.lex_state = 18, .external_lex_state = 3}, + [494] = {.lex_state = 18, .external_lex_state = 3}, + [495] = {.lex_state = 18, .external_lex_state = 3}, + [496] = {.lex_state = 18, .external_lex_state = 3}, + [497] = {.lex_state = 18, .external_lex_state = 3}, + [498] = {.lex_state = 18, .external_lex_state = 3}, + [499] = {.lex_state = 18, .external_lex_state = 3}, + [500] = {.lex_state = 18, .external_lex_state = 3}, + [501] = {.lex_state = 18, .external_lex_state = 3}, + [502] = {.lex_state = 18, .external_lex_state = 3}, + [503] = {.lex_state = 18, .external_lex_state = 3}, + [504] = {.lex_state = 18, .external_lex_state = 3}, + [505] = {.lex_state = 19, .external_lex_state = 3}, + [506] = {.lex_state = 19, .external_lex_state = 3}, + [507] = {.lex_state = 19, .external_lex_state = 3}, + [508] = {.lex_state = 19, .external_lex_state = 4}, + [509] = {.lex_state = 19, .external_lex_state = 3}, + [510] = {.lex_state = 19, .external_lex_state = 3}, + [511] = {.lex_state = 19, .external_lex_state = 4}, + [512] = {.lex_state = 16, .external_lex_state = 2}, + [513] = {.lex_state = 19, .external_lex_state = 3}, + [514] = {.lex_state = 19, .external_lex_state = 4}, + [515] = {.lex_state = 19, .external_lex_state = 3}, + [516] = {.lex_state = 19, .external_lex_state = 3}, + [517] = {.lex_state = 20, .external_lex_state = 3}, + [518] = {.lex_state = 19, .external_lex_state = 3}, + [519] = {.lex_state = 19, .external_lex_state = 3}, + [520] = {.lex_state = 19, .external_lex_state = 3}, + [521] = {.lex_state = 19, .external_lex_state = 3}, + [522] = {.lex_state = 19, .external_lex_state = 3}, + [523] = {.lex_state = 19, .external_lex_state = 3}, + [524] = {.lex_state = 19, .external_lex_state = 3}, + [525] = {.lex_state = 19, .external_lex_state = 3}, + [526] = {.lex_state = 19, .external_lex_state = 3}, + [527] = {.lex_state = 19, .external_lex_state = 3}, + [528] = {.lex_state = 19, .external_lex_state = 3}, + [529] = {.lex_state = 19, .external_lex_state = 3}, + [530] = {.lex_state = 19, .external_lex_state = 3}, + [531] = {.lex_state = 19, .external_lex_state = 3}, + [532] = {.lex_state = 16, .external_lex_state = 2}, + [533] = {.lex_state = 16, .external_lex_state = 2}, + [534] = {.lex_state = 19, .external_lex_state = 3}, + [535] = {.lex_state = 19, .external_lex_state = 3}, + [536] = {.lex_state = 19, .external_lex_state = 3}, + [537] = {.lex_state = 19, .external_lex_state = 3}, + [538] = {.lex_state = 19, .external_lex_state = 3}, + [539] = {.lex_state = 19, .external_lex_state = 3}, + [540] = {.lex_state = 19, .external_lex_state = 3}, + [541] = {.lex_state = 19, .external_lex_state = 3}, + [542] = {.lex_state = 19, .external_lex_state = 3}, + [543] = {.lex_state = 19, .external_lex_state = 3}, + [544] = {.lex_state = 19, .external_lex_state = 3}, + [545] = {.lex_state = 19, .external_lex_state = 3}, + [546] = {.lex_state = 19, .external_lex_state = 3}, + [547] = {.lex_state = 19, .external_lex_state = 3}, + [548] = {.lex_state = 19, .external_lex_state = 3}, + [549] = {.lex_state = 19, .external_lex_state = 3}, + [550] = {.lex_state = 19, .external_lex_state = 3}, + [551] = {.lex_state = 19, .external_lex_state = 3}, + [552] = {.lex_state = 19, .external_lex_state = 3}, + [553] = {.lex_state = 19, .external_lex_state = 3}, + [554] = {.lex_state = 19, .external_lex_state = 3}, + [555] = {.lex_state = 19, .external_lex_state = 3}, + [556] = {.lex_state = 19, .external_lex_state = 3}, + [557] = {.lex_state = 19, .external_lex_state = 3}, + [558] = {.lex_state = 16, .external_lex_state = 2}, + [559] = {.lex_state = 19, .external_lex_state = 3}, + [560] = {.lex_state = 19, .external_lex_state = 3}, + [561] = {.lex_state = 16, .external_lex_state = 2}, + [562] = {.lex_state = 19, .external_lex_state = 3}, + [563] = {.lex_state = 19, .external_lex_state = 3}, + [564] = {.lex_state = 19, .external_lex_state = 3}, + [565] = {.lex_state = 19, .external_lex_state = 3}, + [566] = {.lex_state = 19, .external_lex_state = 3}, + [567] = {.lex_state = 19, .external_lex_state = 3}, + [568] = {.lex_state = 19, .external_lex_state = 3}, + [569] = {.lex_state = 19, .external_lex_state = 3}, + [570] = {.lex_state = 19, .external_lex_state = 3}, + [571] = {.lex_state = 19, .external_lex_state = 3}, + [572] = {.lex_state = 19, .external_lex_state = 3}, + [573] = {.lex_state = 19, .external_lex_state = 3}, + [574] = {.lex_state = 19, .external_lex_state = 3}, + [575] = {.lex_state = 19, .external_lex_state = 3}, + [576] = {.lex_state = 19, .external_lex_state = 3}, + [577] = {.lex_state = 19, .external_lex_state = 3}, + [578] = {.lex_state = 19, .external_lex_state = 3}, + [579] = {.lex_state = 19, .external_lex_state = 3}, + [580] = {.lex_state = 19, .external_lex_state = 3}, + [581] = {.lex_state = 19, .external_lex_state = 3}, + [582] = {.lex_state = 19, .external_lex_state = 3}, + [583] = {.lex_state = 19, .external_lex_state = 3}, + [584] = {.lex_state = 19, .external_lex_state = 3}, + [585] = {.lex_state = 19, .external_lex_state = 3}, + [586] = {.lex_state = 19, .external_lex_state = 3}, + [587] = {.lex_state = 19, .external_lex_state = 3}, + [588] = {.lex_state = 19, .external_lex_state = 3}, + [589] = {.lex_state = 19, .external_lex_state = 3}, + [590] = {.lex_state = 19, .external_lex_state = 3}, + [591] = {.lex_state = 19, .external_lex_state = 3}, + [592] = {.lex_state = 19, .external_lex_state = 3}, + [593] = {.lex_state = 19, .external_lex_state = 3}, + [594] = {.lex_state = 19, .external_lex_state = 3}, + [595] = {.lex_state = 19, .external_lex_state = 3}, + [596] = {.lex_state = 19, .external_lex_state = 3}, + [597] = {.lex_state = 19, .external_lex_state = 3}, + [598] = {.lex_state = 19, .external_lex_state = 3}, + [599] = {.lex_state = 19, .external_lex_state = 3}, + [600] = {.lex_state = 19, .external_lex_state = 3}, + [601] = {.lex_state = 19, .external_lex_state = 3}, + [602] = {.lex_state = 19, .external_lex_state = 3}, + [603] = {.lex_state = 19, .external_lex_state = 3}, + [604] = {.lex_state = 19, .external_lex_state = 3}, + [605] = {.lex_state = 19, .external_lex_state = 3}, + [606] = {.lex_state = 19, .external_lex_state = 4}, + [607] = {.lex_state = 19, .external_lex_state = 4}, + [608] = {.lex_state = 19, .external_lex_state = 4}, + [609] = {.lex_state = 19, .external_lex_state = 3}, + [610] = {.lex_state = 19, .external_lex_state = 3}, + [611] = {.lex_state = 19, .external_lex_state = 3}, + [612] = {.lex_state = 19, .external_lex_state = 4}, + [613] = {.lex_state = 19, .external_lex_state = 4}, + [614] = {.lex_state = 19, .external_lex_state = 4}, + [615] = {.lex_state = 19, .external_lex_state = 4}, + [616] = {.lex_state = 19, .external_lex_state = 4}, + [617] = {.lex_state = 19, .external_lex_state = 4}, + [618] = {.lex_state = 19, .external_lex_state = 3}, + [619] = {.lex_state = 19, .external_lex_state = 3}, + [620] = {.lex_state = 19, .external_lex_state = 4}, + [621] = {.lex_state = 19, .external_lex_state = 4}, + [622] = {.lex_state = 19, .external_lex_state = 4}, + [623] = {.lex_state = 19, .external_lex_state = 4}, + [624] = {.lex_state = 19, .external_lex_state = 4}, + [625] = {.lex_state = 19, .external_lex_state = 4}, + [626] = {.lex_state = 19, .external_lex_state = 4}, + [627] = {.lex_state = 19, .external_lex_state = 4}, + [628] = {.lex_state = 19, .external_lex_state = 4}, + [629] = {.lex_state = 19, .external_lex_state = 4}, + [630] = {.lex_state = 19, .external_lex_state = 4}, + [631] = {.lex_state = 19, .external_lex_state = 4}, + [632] = {.lex_state = 19, .external_lex_state = 4}, + [633] = {.lex_state = 19, .external_lex_state = 4}, + [634] = {.lex_state = 19, .external_lex_state = 4}, + [635] = {.lex_state = 19, .external_lex_state = 4}, + [636] = {.lex_state = 19, .external_lex_state = 4}, + [637] = {.lex_state = 19, .external_lex_state = 4}, + [638] = {.lex_state = 19, .external_lex_state = 4}, + [639] = {.lex_state = 19, .external_lex_state = 4}, + [640] = {.lex_state = 19, .external_lex_state = 4}, + [641] = {.lex_state = 19, .external_lex_state = 4}, + [642] = {.lex_state = 19, .external_lex_state = 4}, + [643] = {.lex_state = 19, .external_lex_state = 4}, + [644] = {.lex_state = 19, .external_lex_state = 4}, + [645] = {.lex_state = 19, .external_lex_state = 4}, + [646] = {.lex_state = 19, .external_lex_state = 4}, + [647] = {.lex_state = 19, .external_lex_state = 4}, + [648] = {.lex_state = 19, .external_lex_state = 4}, + [649] = {.lex_state = 19, .external_lex_state = 4}, + [650] = {.lex_state = 19, .external_lex_state = 4}, + [651] = {.lex_state = 19, .external_lex_state = 4}, + [652] = {.lex_state = 19, .external_lex_state = 4}, + [653] = {.lex_state = 19, .external_lex_state = 4}, + [654] = {.lex_state = 19, .external_lex_state = 4}, + [655] = {.lex_state = 19, .external_lex_state = 4}, + [656] = {.lex_state = 19, .external_lex_state = 4}, + [657] = {.lex_state = 19, .external_lex_state = 4}, + [658] = {.lex_state = 19, .external_lex_state = 4}, + [659] = {.lex_state = 19, .external_lex_state = 4}, + [660] = {.lex_state = 19, .external_lex_state = 4}, + [661] = {.lex_state = 19, .external_lex_state = 4}, + [662] = {.lex_state = 19, .external_lex_state = 4}, + [663] = {.lex_state = 19, .external_lex_state = 4}, + [664] = {.lex_state = 19, .external_lex_state = 4}, + [665] = {.lex_state = 19, .external_lex_state = 4}, + [666] = {.lex_state = 19, .external_lex_state = 4}, + [667] = {.lex_state = 19, .external_lex_state = 4}, + [668] = {.lex_state = 19, .external_lex_state = 4}, + [669] = {.lex_state = 19, .external_lex_state = 4}, + [670] = {.lex_state = 19, .external_lex_state = 4}, + [671] = {.lex_state = 19, .external_lex_state = 4}, + [672] = {.lex_state = 19, .external_lex_state = 4}, + [673] = {.lex_state = 19, .external_lex_state = 4}, + [674] = {.lex_state = 19, .external_lex_state = 4}, + [675] = {.lex_state = 19, .external_lex_state = 4}, + [676] = {.lex_state = 19, .external_lex_state = 4}, + [677] = {.lex_state = 19, .external_lex_state = 4}, + [678] = {.lex_state = 19, .external_lex_state = 4}, + [679] = {.lex_state = 19, .external_lex_state = 4}, + [680] = {.lex_state = 19, .external_lex_state = 4}, + [681] = {.lex_state = 19, .external_lex_state = 4}, + [682] = {.lex_state = 19, .external_lex_state = 4}, + [683] = {.lex_state = 19, .external_lex_state = 4}, + [684] = {.lex_state = 19, .external_lex_state = 3}, + [685] = {.lex_state = 19, .external_lex_state = 4}, + [686] = {.lex_state = 19, .external_lex_state = 4}, + [687] = {.lex_state = 19, .external_lex_state = 4}, + [688] = {.lex_state = 19, .external_lex_state = 3}, + [689] = {.lex_state = 19, .external_lex_state = 4}, + [690] = {.lex_state = 19, .external_lex_state = 4}, + [691] = {.lex_state = 19, .external_lex_state = 4}, + [692] = {.lex_state = 19, .external_lex_state = 4}, + [693] = {.lex_state = 19, .external_lex_state = 3}, + [694] = {.lex_state = 19, .external_lex_state = 3}, + [695] = {.lex_state = 19, .external_lex_state = 3}, + [696] = {.lex_state = 19, .external_lex_state = 4}, + [697] = {.lex_state = 19, .external_lex_state = 3}, + [698] = {.lex_state = 19, .external_lex_state = 3}, + [699] = {.lex_state = 19, .external_lex_state = 3}, + [700] = {.lex_state = 19, .external_lex_state = 3}, + [701] = {.lex_state = 19, .external_lex_state = 3}, + [702] = {.lex_state = 19, .external_lex_state = 3}, + [703] = {.lex_state = 19, .external_lex_state = 3}, + [704] = {.lex_state = 19, .external_lex_state = 4}, + [705] = {.lex_state = 19, .external_lex_state = 3}, + [706] = {.lex_state = 19, .external_lex_state = 4}, + [707] = {.lex_state = 19, .external_lex_state = 4}, + [708] = {.lex_state = 19, .external_lex_state = 4}, + [709] = {.lex_state = 19, .external_lex_state = 4}, + [710] = {.lex_state = 19, .external_lex_state = 4}, + [711] = {.lex_state = 19, .external_lex_state = 3}, + [712] = {.lex_state = 19, .external_lex_state = 3}, + [713] = {.lex_state = 19, .external_lex_state = 4}, + [714] = {.lex_state = 19, .external_lex_state = 3}, + [715] = {.lex_state = 19, .external_lex_state = 3}, + [716] = {.lex_state = 19, .external_lex_state = 3}, + [717] = {.lex_state = 19, .external_lex_state = 4}, + [718] = {.lex_state = 19, .external_lex_state = 4}, + [719] = {.lex_state = 19, .external_lex_state = 4}, + [720] = {.lex_state = 19, .external_lex_state = 4}, + [721] = {.lex_state = 19, .external_lex_state = 3}, + [722] = {.lex_state = 19, .external_lex_state = 3}, + [723] = {.lex_state = 19, .external_lex_state = 3}, + [724] = {.lex_state = 19, .external_lex_state = 3}, + [725] = {.lex_state = 19, .external_lex_state = 3}, + [726] = {.lex_state = 19, .external_lex_state = 3}, + [727] = {.lex_state = 19, .external_lex_state = 3}, + [728] = {.lex_state = 19, .external_lex_state = 3}, + [729] = {.lex_state = 19, .external_lex_state = 3}, + [730] = {.lex_state = 19, .external_lex_state = 3}, + [731] = {.lex_state = 19, .external_lex_state = 3}, + [732] = {.lex_state = 19, .external_lex_state = 4}, + [733] = {.lex_state = 19, .external_lex_state = 3}, + [734] = {.lex_state = 19, .external_lex_state = 3}, + [735] = {.lex_state = 19, .external_lex_state = 4}, + [736] = {.lex_state = 19, .external_lex_state = 4}, + [737] = {.lex_state = 19, .external_lex_state = 4}, + [738] = {.lex_state = 19, .external_lex_state = 3}, + [739] = {.lex_state = 19, .external_lex_state = 4}, + [740] = {.lex_state = 19, .external_lex_state = 4}, + [741] = {.lex_state = 19, .external_lex_state = 4}, + [742] = {.lex_state = 19, .external_lex_state = 4}, + [743] = {.lex_state = 19, .external_lex_state = 4}, + [744] = {.lex_state = 19, .external_lex_state = 4}, + [745] = {.lex_state = 19, .external_lex_state = 4}, + [746] = {.lex_state = 19, .external_lex_state = 3}, + [747] = {.lex_state = 19, .external_lex_state = 4}, + [748] = {.lex_state = 19, .external_lex_state = 3}, + [749] = {.lex_state = 19, .external_lex_state = 4}, + [750] = {.lex_state = 19, .external_lex_state = 4}, + [751] = {.lex_state = 19, .external_lex_state = 4}, + [752] = {.lex_state = 19, .external_lex_state = 4}, + [753] = {.lex_state = 19, .external_lex_state = 4}, + [754] = {.lex_state = 19, .external_lex_state = 4}, + [755] = {.lex_state = 19, .external_lex_state = 4}, + [756] = {.lex_state = 19, .external_lex_state = 3}, + [757] = {.lex_state = 19, .external_lex_state = 4}, + [758] = {.lex_state = 19, .external_lex_state = 4}, + [759] = {.lex_state = 19, .external_lex_state = 3}, + [760] = {.lex_state = 19, .external_lex_state = 4}, + [761] = {.lex_state = 19, .external_lex_state = 4}, + [762] = {.lex_state = 19, .external_lex_state = 4}, + [763] = {.lex_state = 19, .external_lex_state = 4}, + [764] = {.lex_state = 19, .external_lex_state = 4}, + [765] = {.lex_state = 19, .external_lex_state = 4}, + [766] = {.lex_state = 19, .external_lex_state = 4}, + [767] = {.lex_state = 19, .external_lex_state = 3}, + [768] = {.lex_state = 19, .external_lex_state = 3}, + [769] = {.lex_state = 20, .external_lex_state = 4}, + [770] = {.lex_state = 19, .external_lex_state = 4}, + [771] = {.lex_state = 19, .external_lex_state = 4}, + [772] = {.lex_state = 19, .external_lex_state = 3}, + [773] = {.lex_state = 19, .external_lex_state = 4}, + [774] = {.lex_state = 19, .external_lex_state = 4}, + [775] = {.lex_state = 19, .external_lex_state = 4}, + [776] = {.lex_state = 19, .external_lex_state = 4}, + [777] = {.lex_state = 19, .external_lex_state = 4}, + [778] = {.lex_state = 19, .external_lex_state = 3}, + [779] = {.lex_state = 19, .external_lex_state = 4}, + [780] = {.lex_state = 20, .external_lex_state = 4}, + [781] = {.lex_state = 19, .external_lex_state = 4}, + [782] = {.lex_state = 19, .external_lex_state = 4}, + [783] = {.lex_state = 19, .external_lex_state = 4}, + [784] = {.lex_state = 19, .external_lex_state = 4}, + [785] = {.lex_state = 19, .external_lex_state = 4}, + [786] = {.lex_state = 19, .external_lex_state = 3}, + [787] = {.lex_state = 19, .external_lex_state = 4}, + [788] = {.lex_state = 19, .external_lex_state = 3}, + [789] = {.lex_state = 19, .external_lex_state = 4}, + [790] = {.lex_state = 19, .external_lex_state = 3}, + [791] = {.lex_state = 19, .external_lex_state = 3}, + [792] = {.lex_state = 19, .external_lex_state = 4}, + [793] = {.lex_state = 19, .external_lex_state = 3}, + [794] = {.lex_state = 19, .external_lex_state = 3}, + [795] = {.lex_state = 19, .external_lex_state = 4}, + [796] = {.lex_state = 19, .external_lex_state = 4}, + [797] = {.lex_state = 19, .external_lex_state = 4}, + [798] = {.lex_state = 19, .external_lex_state = 3}, + [799] = {.lex_state = 19, .external_lex_state = 3}, + [800] = {.lex_state = 19, .external_lex_state = 3}, + [801] = {.lex_state = 19, .external_lex_state = 3}, + [802] = {.lex_state = 19, .external_lex_state = 3}, + [803] = {.lex_state = 19, .external_lex_state = 3}, + [804] = {.lex_state = 19, .external_lex_state = 3}, + [805] = {.lex_state = 19, .external_lex_state = 3}, + [806] = {.lex_state = 19, .external_lex_state = 3}, + [807] = {.lex_state = 19, .external_lex_state = 3}, + [808] = {.lex_state = 19, .external_lex_state = 3}, + [809] = {.lex_state = 19, .external_lex_state = 3}, + [810] = {.lex_state = 19, .external_lex_state = 3}, + [811] = {.lex_state = 19, .external_lex_state = 3}, + [812] = {.lex_state = 19, .external_lex_state = 3}, + [813] = {.lex_state = 19, .external_lex_state = 3}, + [814] = {.lex_state = 19, .external_lex_state = 3}, + [815] = {.lex_state = 19, .external_lex_state = 3}, + [816] = {.lex_state = 19, .external_lex_state = 3}, + [817] = {.lex_state = 19, .external_lex_state = 3}, + [818] = {.lex_state = 19, .external_lex_state = 3}, + [819] = {.lex_state = 19, .external_lex_state = 3}, + [820] = {.lex_state = 19, .external_lex_state = 3}, + [821] = {.lex_state = 19, .external_lex_state = 3}, + [822] = {.lex_state = 19, .external_lex_state = 3}, + [823] = {.lex_state = 19, .external_lex_state = 3}, + [824] = {.lex_state = 19, .external_lex_state = 4}, + [825] = {.lex_state = 19, .external_lex_state = 3}, + [826] = {.lex_state = 19, .external_lex_state = 3}, + [827] = {.lex_state = 19, .external_lex_state = 3}, + [828] = {.lex_state = 19, .external_lex_state = 3}, + [829] = {.lex_state = 19, .external_lex_state = 3}, + [830] = {.lex_state = 19, .external_lex_state = 3}, + [831] = {.lex_state = 19, .external_lex_state = 4}, + [832] = {.lex_state = 19, .external_lex_state = 4}, + [833] = {.lex_state = 19, .external_lex_state = 3}, + [834] = {.lex_state = 19, .external_lex_state = 3}, + [835] = {.lex_state = 19, .external_lex_state = 3}, + [836] = {.lex_state = 19, .external_lex_state = 3}, + [837] = {.lex_state = 19, .external_lex_state = 3}, + [838] = {.lex_state = 19, .external_lex_state = 3}, + [839] = {.lex_state = 19, .external_lex_state = 3}, + [840] = {.lex_state = 19, .external_lex_state = 3}, + [841] = {.lex_state = 19, .external_lex_state = 3}, + [842] = {.lex_state = 19, .external_lex_state = 3}, + [843] = {.lex_state = 19, .external_lex_state = 3}, + [844] = {.lex_state = 19, .external_lex_state = 3}, + [845] = {.lex_state = 19, .external_lex_state = 3}, + [846] = {.lex_state = 19, .external_lex_state = 3}, + [847] = {.lex_state = 19, .external_lex_state = 3}, + [848] = {.lex_state = 19, .external_lex_state = 3}, + [849] = {.lex_state = 19, .external_lex_state = 3}, + [850] = {.lex_state = 19, .external_lex_state = 3}, + [851] = {.lex_state = 19, .external_lex_state = 3}, + [852] = {.lex_state = 19, .external_lex_state = 3}, + [853] = {.lex_state = 19, .external_lex_state = 3}, + [854] = {.lex_state = 19, .external_lex_state = 3}, + [855] = {.lex_state = 19, .external_lex_state = 3}, + [856] = {.lex_state = 19, .external_lex_state = 3}, + [857] = {.lex_state = 19, .external_lex_state = 3}, + [858] = {.lex_state = 19, .external_lex_state = 3}, + [859] = {.lex_state = 19, .external_lex_state = 3}, + [860] = {.lex_state = 19, .external_lex_state = 3}, + [861] = {.lex_state = 19, .external_lex_state = 3}, + [862] = {.lex_state = 19, .external_lex_state = 3}, + [863] = {.lex_state = 19, .external_lex_state = 3}, + [864] = {.lex_state = 19, .external_lex_state = 3}, + [865] = {.lex_state = 19, .external_lex_state = 3}, + [866] = {.lex_state = 19, .external_lex_state = 3}, + [867] = {.lex_state = 19, .external_lex_state = 3}, + [868] = {.lex_state = 19, .external_lex_state = 3}, + [869] = {.lex_state = 19, .external_lex_state = 3}, + [870] = {.lex_state = 20, .external_lex_state = 3}, + [871] = {.lex_state = 23, .external_lex_state = 2}, + [872] = {.lex_state = 19, .external_lex_state = 3}, + [873] = {.lex_state = 23, .external_lex_state = 2}, + [874] = {.lex_state = 23, .external_lex_state = 2}, + [875] = {.lex_state = 19, .external_lex_state = 3}, + [876] = {.lex_state = 19, .external_lex_state = 3}, + [877] = {.lex_state = 23, .external_lex_state = 2}, + [878] = {.lex_state = 23, .external_lex_state = 2}, + [879] = {.lex_state = 23, .external_lex_state = 2}, + [880] = {.lex_state = 19, .external_lex_state = 3}, + [881] = {.lex_state = 23, .external_lex_state = 2}, + [882] = {.lex_state = 23, .external_lex_state = 2}, + [883] = {.lex_state = 23, .external_lex_state = 2}, + [884] = {.lex_state = 23, .external_lex_state = 2}, + [885] = {.lex_state = 23, .external_lex_state = 2}, + [886] = {.lex_state = 23, .external_lex_state = 2}, + [887] = {.lex_state = 23, .external_lex_state = 2}, + [888] = {.lex_state = 23, .external_lex_state = 2}, + [889] = {.lex_state = 23, .external_lex_state = 2}, + [890] = {.lex_state = 23, .external_lex_state = 2}, + [891] = {.lex_state = 23, .external_lex_state = 2}, + [892] = {.lex_state = 16, .external_lex_state = 2}, + [893] = {.lex_state = 23, .external_lex_state = 2}, + [894] = {.lex_state = 16, .external_lex_state = 2}, + [895] = {.lex_state = 16, .external_lex_state = 2}, + [896] = {.lex_state = 14, .external_lex_state = 2}, + [897] = {.lex_state = 14, .external_lex_state = 2}, + [898] = {.lex_state = 14, .external_lex_state = 2}, + [899] = {.lex_state = 14, .external_lex_state = 2}, + [900] = {.lex_state = 14, .external_lex_state = 2}, + [901] = {.lex_state = 14, .external_lex_state = 2}, + [902] = {.lex_state = 14, .external_lex_state = 2}, + [903] = {.lex_state = 14, .external_lex_state = 2}, + [904] = {.lex_state = 14, .external_lex_state = 2}, + [905] = {.lex_state = 14, .external_lex_state = 2}, + [906] = {.lex_state = 14, .external_lex_state = 2}, + [907] = {.lex_state = 14, .external_lex_state = 2}, + [908] = {.lex_state = 14, .external_lex_state = 2}, + [909] = {.lex_state = 14, .external_lex_state = 2}, + [910] = {.lex_state = 14, .external_lex_state = 5}, + [911] = {.lex_state = 14, .external_lex_state = 2}, + [912] = {.lex_state = 14, .external_lex_state = 2}, + [913] = {.lex_state = 14, .external_lex_state = 2}, + [914] = {.lex_state = 14, .external_lex_state = 2}, + [915] = {.lex_state = 14, .external_lex_state = 2}, + [916] = {.lex_state = 14, .external_lex_state = 2}, + [917] = {.lex_state = 14, .external_lex_state = 2}, + [918] = {.lex_state = 14, .external_lex_state = 2}, + [919] = {.lex_state = 23, .external_lex_state = 2}, + [920] = {.lex_state = 23, .external_lex_state = 2}, + [921] = {.lex_state = 14, .external_lex_state = 5}, + [922] = {.lex_state = 23, .external_lex_state = 2}, + [923] = {.lex_state = 14, .external_lex_state = 5}, + [924] = {.lex_state = 14, .external_lex_state = 2}, + [925] = {.lex_state = 14, .external_lex_state = 2}, + [926] = {.lex_state = 14, .external_lex_state = 5}, + [927] = {.lex_state = 14, .external_lex_state = 5}, + [928] = {.lex_state = 14, .external_lex_state = 5}, + [929] = {.lex_state = 14, .external_lex_state = 2}, + [930] = {.lex_state = 14, .external_lex_state = 2}, + [931] = {.lex_state = 23, .external_lex_state = 5}, + [932] = {.lex_state = 23, .external_lex_state = 2}, + [933] = {.lex_state = 23, .external_lex_state = 2}, + [934] = {.lex_state = 23, .external_lex_state = 2}, + [935] = {.lex_state = 22, .external_lex_state = 2}, + [936] = {.lex_state = 23, .external_lex_state = 2}, + [937] = {.lex_state = 23, .external_lex_state = 5}, + [938] = {.lex_state = 14, .external_lex_state = 5}, + [939] = {.lex_state = 23, .external_lex_state = 2}, + [940] = {.lex_state = 23, .external_lex_state = 2}, + [941] = {.lex_state = 23, .external_lex_state = 2}, + [942] = {.lex_state = 23, .external_lex_state = 2}, + [943] = {.lex_state = 23, .external_lex_state = 2}, + [944] = {.lex_state = 23, .external_lex_state = 2}, + [945] = {.lex_state = 14, .external_lex_state = 2}, + [946] = {.lex_state = 23, .external_lex_state = 2}, + [947] = {.lex_state = 23, .external_lex_state = 2}, + [948] = {.lex_state = 23, .external_lex_state = 2}, + [949] = {.lex_state = 23, .external_lex_state = 2}, + [950] = {.lex_state = 14, .external_lex_state = 5}, + [951] = {.lex_state = 23, .external_lex_state = 2}, + [952] = {.lex_state = 23, .external_lex_state = 2}, + [953] = {.lex_state = 23, .external_lex_state = 2}, + [954] = {.lex_state = 14, .external_lex_state = 5}, + [955] = {.lex_state = 23, .external_lex_state = 2}, + [956] = {.lex_state = 23, .external_lex_state = 2}, + [957] = {.lex_state = 23, .external_lex_state = 2}, + [958] = {.lex_state = 14, .external_lex_state = 5}, + [959] = {.lex_state = 23, .external_lex_state = 2}, + [960] = {.lex_state = 23, .external_lex_state = 2}, + [961] = {.lex_state = 23, .external_lex_state = 2}, + [962] = {.lex_state = 23, .external_lex_state = 2}, + [963] = {.lex_state = 14, .external_lex_state = 5}, + [964] = {.lex_state = 14, .external_lex_state = 5}, + [965] = {.lex_state = 23, .external_lex_state = 2}, + [966] = {.lex_state = 23, .external_lex_state = 2}, + [967] = {.lex_state = 23, .external_lex_state = 2}, + [968] = {.lex_state = 23, .external_lex_state = 2}, + [969] = {.lex_state = 23, .external_lex_state = 2}, + [970] = {.lex_state = 23, .external_lex_state = 2}, + [971] = {.lex_state = 23, .external_lex_state = 2}, + [972] = {.lex_state = 23, .external_lex_state = 2}, + [973] = {.lex_state = 22, .external_lex_state = 2}, + [974] = {.lex_state = 23, .external_lex_state = 2}, + [975] = {.lex_state = 23, .external_lex_state = 2}, + [976] = {.lex_state = 23, .external_lex_state = 2}, + [977] = {.lex_state = 23, .external_lex_state = 2}, + [978] = {.lex_state = 23, .external_lex_state = 2}, + [979] = {.lex_state = 23, .external_lex_state = 2}, + [980] = {.lex_state = 23, .external_lex_state = 2}, + [981] = {.lex_state = 14, .external_lex_state = 2}, + [982] = {.lex_state = 14, .external_lex_state = 2}, + [983] = {.lex_state = 14, .external_lex_state = 2}, + [984] = {.lex_state = 14, .external_lex_state = 2}, + [985] = {.lex_state = 158, .external_lex_state = 2}, + [986] = {.lex_state = 14, .external_lex_state = 2}, + [987] = {.lex_state = 14, .external_lex_state = 2}, + [988] = {.lex_state = 14, .external_lex_state = 2}, + [989] = {.lex_state = 14, .external_lex_state = 2}, + [990] = {.lex_state = 14, .external_lex_state = 2}, + [991] = {.lex_state = 14, .external_lex_state = 2}, + [992] = {.lex_state = 14, .external_lex_state = 2}, + [993] = {.lex_state = 14, .external_lex_state = 2}, + [994] = {.lex_state = 14, .external_lex_state = 2}, + [995] = {.lex_state = 14, .external_lex_state = 2}, + [996] = {.lex_state = 14, .external_lex_state = 2}, + [997] = {.lex_state = 14, .external_lex_state = 2}, + [998] = {.lex_state = 14, .external_lex_state = 2}, + [999] = {.lex_state = 14, .external_lex_state = 2}, + [1000] = {.lex_state = 23, .external_lex_state = 2}, + [1001] = {.lex_state = 14, .external_lex_state = 2}, + [1002] = {.lex_state = 23, .external_lex_state = 2}, + [1003] = {.lex_state = 14, .external_lex_state = 2}, + [1004] = {.lex_state = 14, .external_lex_state = 2}, + [1005] = {.lex_state = 14, .external_lex_state = 2}, + [1006] = {.lex_state = 14, .external_lex_state = 2}, + [1007] = {.lex_state = 14, .external_lex_state = 2}, + [1008] = {.lex_state = 23, .external_lex_state = 2}, + [1009] = {.lex_state = 14, .external_lex_state = 2}, + [1010] = {.lex_state = 14, .external_lex_state = 2}, + [1011] = {.lex_state = 158, .external_lex_state = 2}, + [1012] = {.lex_state = 158, .external_lex_state = 2}, + [1013] = {.lex_state = 14, .external_lex_state = 2}, + [1014] = {.lex_state = 14, .external_lex_state = 2}, + [1015] = {.lex_state = 23, .external_lex_state = 2}, + [1016] = {.lex_state = 14, .external_lex_state = 2}, + [1017] = {.lex_state = 23, .external_lex_state = 2}, + [1018] = {.lex_state = 14, .external_lex_state = 2}, + [1019] = {.lex_state = 23, .external_lex_state = 2}, + [1020] = {.lex_state = 14, .external_lex_state = 2}, + [1021] = {.lex_state = 14, .external_lex_state = 2}, + [1022] = {.lex_state = 14, .external_lex_state = 2}, + [1023] = {.lex_state = 14, .external_lex_state = 2}, + [1024] = {.lex_state = 14, .external_lex_state = 2}, + [1025] = {.lex_state = 14, .external_lex_state = 2}, + [1026] = {.lex_state = 14, .external_lex_state = 2}, + [1027] = {.lex_state = 14, .external_lex_state = 2}, + [1028] = {.lex_state = 14, .external_lex_state = 2}, + [1029] = {.lex_state = 14, .external_lex_state = 2}, + [1030] = {.lex_state = 14, .external_lex_state = 2}, + [1031] = {.lex_state = 14, .external_lex_state = 2}, + [1032] = {.lex_state = 14, .external_lex_state = 2}, + [1033] = {.lex_state = 14, .external_lex_state = 2}, + [1034] = {.lex_state = 14, .external_lex_state = 2}, + [1035] = {.lex_state = 14, .external_lex_state = 2}, + [1036] = {.lex_state = 18, .external_lex_state = 2}, + [1037] = {.lex_state = 14, .external_lex_state = 2}, + [1038] = {.lex_state = 18, .external_lex_state = 2}, + [1039] = {.lex_state = 14, .external_lex_state = 2}, + [1040] = {.lex_state = 14, .external_lex_state = 2}, + [1041] = {.lex_state = 14, .external_lex_state = 2}, + [1042] = {.lex_state = 14, .external_lex_state = 2}, + [1043] = {.lex_state = 18, .external_lex_state = 2}, + [1044] = {.lex_state = 18, .external_lex_state = 2}, + [1045] = {.lex_state = 14, .external_lex_state = 2}, + [1046] = {.lex_state = 14, .external_lex_state = 2}, + [1047] = {.lex_state = 18, .external_lex_state = 2}, + [1048] = {.lex_state = 14, .external_lex_state = 2}, + [1049] = {.lex_state = 158, .external_lex_state = 2}, + [1050] = {.lex_state = 25, .external_lex_state = 2}, + [1051] = {.lex_state = 25, .external_lex_state = 2}, + [1052] = {.lex_state = 22, .external_lex_state = 6}, + [1053] = {.lex_state = 22, .external_lex_state = 6}, + [1054] = {.lex_state = 22, .external_lex_state = 6}, + [1055] = {.lex_state = 22, .external_lex_state = 6}, + [1056] = {.lex_state = 25, .external_lex_state = 2}, + [1057] = {.lex_state = 22, .external_lex_state = 6}, + [1058] = {.lex_state = 22, .external_lex_state = 6}, + [1059] = {.lex_state = 22, .external_lex_state = 6}, + [1060] = {.lex_state = 25, .external_lex_state = 2}, + [1061] = {.lex_state = 22, .external_lex_state = 6}, + [1062] = {.lex_state = 25, .external_lex_state = 2}, + [1063] = {.lex_state = 25, .external_lex_state = 2}, + [1064] = {.lex_state = 25, .external_lex_state = 2}, + [1065] = {.lex_state = 25, .external_lex_state = 2}, + [1066] = {.lex_state = 25, .external_lex_state = 2}, + [1067] = {.lex_state = 25, .external_lex_state = 2}, + [1068] = {.lex_state = 25, .external_lex_state = 2}, + [1069] = {.lex_state = 22, .external_lex_state = 6}, + [1070] = {.lex_state = 25, .external_lex_state = 2}, + [1071] = {.lex_state = 25, .external_lex_state = 2}, + [1072] = {.lex_state = 25, .external_lex_state = 2}, + [1073] = {.lex_state = 25, .external_lex_state = 2}, + [1074] = {.lex_state = 25, .external_lex_state = 2}, + [1075] = {.lex_state = 25, .external_lex_state = 2}, + [1076] = {.lex_state = 25, .external_lex_state = 2}, + [1077] = {.lex_state = 25, .external_lex_state = 2}, + [1078] = {.lex_state = 25, .external_lex_state = 2}, + [1079] = {.lex_state = 25, .external_lex_state = 2}, + [1080] = {.lex_state = 25, .external_lex_state = 2}, + [1081] = {.lex_state = 25, .external_lex_state = 2}, + [1082] = {.lex_state = 25, .external_lex_state = 2}, + [1083] = {.lex_state = 25, .external_lex_state = 2}, + [1084] = {.lex_state = 25, .external_lex_state = 2}, + [1085] = {.lex_state = 25, .external_lex_state = 2}, + [1086] = {.lex_state = 25, .external_lex_state = 2}, + [1087] = {.lex_state = 25, .external_lex_state = 2}, + [1088] = {.lex_state = 25, .external_lex_state = 2}, + [1089] = {.lex_state = 25, .external_lex_state = 2}, + [1090] = {.lex_state = 25, .external_lex_state = 2}, + [1091] = {.lex_state = 25, .external_lex_state = 2}, + [1092] = {.lex_state = 25, .external_lex_state = 2}, + [1093] = {.lex_state = 25, .external_lex_state = 2}, + [1094] = {.lex_state = 158, .external_lex_state = 2}, + [1095] = {.lex_state = 158, .external_lex_state = 2}, + [1096] = {.lex_state = 158, .external_lex_state = 2}, + [1097] = {.lex_state = 158, .external_lex_state = 2}, + [1098] = {.lex_state = 158, .external_lex_state = 2}, + [1099] = {.lex_state = 158, .external_lex_state = 2}, + [1100] = {.lex_state = 158, .external_lex_state = 2}, + [1101] = {.lex_state = 158, .external_lex_state = 2}, + [1102] = {.lex_state = 158, .external_lex_state = 2}, + [1103] = {.lex_state = 158, .external_lex_state = 2}, + [1104] = {.lex_state = 158, .external_lex_state = 2}, + [1105] = {.lex_state = 25, .external_lex_state = 2}, + [1106] = {.lex_state = 158, .external_lex_state = 2}, + [1107] = {.lex_state = 158, .external_lex_state = 2}, + [1108] = {.lex_state = 158, .external_lex_state = 2}, + [1109] = {.lex_state = 158, .external_lex_state = 5}, + [1110] = {.lex_state = 158, .external_lex_state = 5}, + [1111] = {.lex_state = 158, .external_lex_state = 2}, + [1112] = {.lex_state = 158, .external_lex_state = 2}, + [1113] = {.lex_state = 158, .external_lex_state = 2}, + [1114] = {.lex_state = 158, .external_lex_state = 2}, + [1115] = {.lex_state = 158, .external_lex_state = 2}, + [1116] = {.lex_state = 158, .external_lex_state = 2}, + [1117] = {.lex_state = 158, .external_lex_state = 2}, + [1118] = {.lex_state = 158, .external_lex_state = 2}, + [1119] = {.lex_state = 158, .external_lex_state = 2}, + [1120] = {.lex_state = 158, .external_lex_state = 2}, + [1121] = {.lex_state = 158, .external_lex_state = 2}, + [1122] = {.lex_state = 158, .external_lex_state = 5}, + [1123] = {.lex_state = 158, .external_lex_state = 5}, + [1124] = {.lex_state = 158, .external_lex_state = 5}, + [1125] = {.lex_state = 31, .external_lex_state = 7}, + [1126] = {.lex_state = 158, .external_lex_state = 5}, + [1127] = {.lex_state = 158, .external_lex_state = 2}, + [1128] = {.lex_state = 158, .external_lex_state = 2}, + [1129] = {.lex_state = 31, .external_lex_state = 7}, + [1130] = {.lex_state = 158, .external_lex_state = 2}, + [1131] = {.lex_state = 158, .external_lex_state = 2}, + [1132] = {.lex_state = 158, .external_lex_state = 5}, + [1133] = {.lex_state = 158, .external_lex_state = 2}, + [1134] = {.lex_state = 158, .external_lex_state = 5}, + [1135] = {.lex_state = 158, .external_lex_state = 5}, + [1136] = {.lex_state = 158, .external_lex_state = 5}, + [1137] = {.lex_state = 158, .external_lex_state = 5}, + [1138] = {.lex_state = 158, .external_lex_state = 5}, + [1139] = {.lex_state = 25, .external_lex_state = 2}, + [1140] = {.lex_state = 25, .external_lex_state = 2}, + [1141] = {.lex_state = 158, .external_lex_state = 2}, + [1142] = {.lex_state = 158, .external_lex_state = 2}, + [1143] = {.lex_state = 158, .external_lex_state = 2}, + [1144] = {.lex_state = 158, .external_lex_state = 2}, + [1145] = {.lex_state = 158, .external_lex_state = 2}, + [1146] = {.lex_state = 31, .external_lex_state = 7}, + [1147] = {.lex_state = 158, .external_lex_state = 2}, + [1148] = {.lex_state = 158, .external_lex_state = 5}, + [1149] = {.lex_state = 31, .external_lex_state = 7}, + [1150] = {.lex_state = 31, .external_lex_state = 7}, + [1151] = {.lex_state = 158, .external_lex_state = 5}, + [1152] = {.lex_state = 25, .external_lex_state = 2}, + [1153] = {.lex_state = 158, .external_lex_state = 2}, + [1154] = {.lex_state = 158, .external_lex_state = 2}, + [1155] = {.lex_state = 22, .external_lex_state = 6}, + [1156] = {.lex_state = 22, .external_lex_state = 6}, + [1157] = {.lex_state = 25, .external_lex_state = 2}, + [1158] = {.lex_state = 22, .external_lex_state = 6}, + [1159] = {.lex_state = 158, .external_lex_state = 2}, + [1160] = {.lex_state = 22, .external_lex_state = 6}, + [1161] = {.lex_state = 22, .external_lex_state = 6}, + [1162] = {.lex_state = 158, .external_lex_state = 2}, + [1163] = {.lex_state = 158, .external_lex_state = 2}, + [1164] = {.lex_state = 158, .external_lex_state = 2}, + [1165] = {.lex_state = 158, .external_lex_state = 2}, + [1166] = {.lex_state = 22, .external_lex_state = 6}, + [1167] = {.lex_state = 158, .external_lex_state = 2}, + [1168] = {.lex_state = 25, .external_lex_state = 2}, + [1169] = {.lex_state = 14, .external_lex_state = 2}, + [1170] = {.lex_state = 158, .external_lex_state = 2}, + [1171] = {.lex_state = 25, .external_lex_state = 2}, + [1172] = {.lex_state = 158, .external_lex_state = 2}, + [1173] = {.lex_state = 22, .external_lex_state = 6}, + [1174] = {.lex_state = 158, .external_lex_state = 2}, + [1175] = {.lex_state = 158, .external_lex_state = 2}, + [1176] = {.lex_state = 25, .external_lex_state = 2}, + [1177] = {.lex_state = 25, .external_lex_state = 2}, + [1178] = {.lex_state = 22, .external_lex_state = 6}, + [1179] = {.lex_state = 22, .external_lex_state = 6}, + [1180] = {.lex_state = 22, .external_lex_state = 6}, + [1181] = {.lex_state = 22, .external_lex_state = 6}, + [1182] = {.lex_state = 22, .external_lex_state = 6}, + [1183] = {.lex_state = 22, .external_lex_state = 6}, + [1184] = {.lex_state = 25, .external_lex_state = 2}, + [1185] = {.lex_state = 158, .external_lex_state = 2}, + [1186] = {.lex_state = 158, .external_lex_state = 5}, + [1187] = {.lex_state = 158, .external_lex_state = 2}, + [1188] = {.lex_state = 158, .external_lex_state = 5}, + [1189] = {.lex_state = 22, .external_lex_state = 6}, + [1190] = {.lex_state = 158, .external_lex_state = 2}, + [1191] = {.lex_state = 25, .external_lex_state = 2}, + [1192] = {.lex_state = 22, .external_lex_state = 6}, + [1193] = {.lex_state = 25, .external_lex_state = 2}, + [1194] = {.lex_state = 25, .external_lex_state = 2}, + [1195] = {.lex_state = 158, .external_lex_state = 2}, + [1196] = {.lex_state = 25, .external_lex_state = 2}, + [1197] = {.lex_state = 25, .external_lex_state = 2}, + [1198] = {.lex_state = 25, .external_lex_state = 2}, + [1199] = {.lex_state = 158, .external_lex_state = 2}, + [1200] = {.lex_state = 158, .external_lex_state = 2}, + [1201] = {.lex_state = 25, .external_lex_state = 2}, + [1202] = {.lex_state = 158, .external_lex_state = 5}, + [1203] = {.lex_state = 25, .external_lex_state = 2}, + [1204] = {.lex_state = 25, .external_lex_state = 2}, + [1205] = {.lex_state = 22, .external_lex_state = 6}, + [1206] = {.lex_state = 25, .external_lex_state = 2}, + [1207] = {.lex_state = 25, .external_lex_state = 2}, + [1208] = {.lex_state = 25, .external_lex_state = 2}, + [1209] = {.lex_state = 25, .external_lex_state = 2}, + [1210] = {.lex_state = 22, .external_lex_state = 6}, + [1211] = {.lex_state = 158, .external_lex_state = 2}, + [1212] = {.lex_state = 158, .external_lex_state = 2}, + [1213] = {.lex_state = 25, .external_lex_state = 2}, + [1214] = {.lex_state = 14, .external_lex_state = 2}, + [1215] = {.lex_state = 25, .external_lex_state = 2}, + [1216] = {.lex_state = 25, .external_lex_state = 2}, + [1217] = {.lex_state = 25, .external_lex_state = 2}, + [1218] = {.lex_state = 158, .external_lex_state = 5}, + [1219] = {.lex_state = 25, .external_lex_state = 2}, + [1220] = {.lex_state = 24, .external_lex_state = 2}, + [1221] = {.lex_state = 158, .external_lex_state = 2}, + [1222] = {.lex_state = 158, .external_lex_state = 2}, + [1223] = {.lex_state = 158, .external_lex_state = 2}, + [1224] = {.lex_state = 35, .external_lex_state = 8}, + [1225] = {.lex_state = 27, .external_lex_state = 8}, + [1226] = {.lex_state = 27, .external_lex_state = 8}, + [1227] = {.lex_state = 35, .external_lex_state = 8}, + [1228] = {.lex_state = 158, .external_lex_state = 2}, + [1229] = {.lex_state = 35, .external_lex_state = 8}, + [1230] = {.lex_state = 27, .external_lex_state = 8}, + [1231] = {.lex_state = 35, .external_lex_state = 8}, + [1232] = {.lex_state = 24, .external_lex_state = 2}, + [1233] = {.lex_state = 33, .external_lex_state = 2}, + [1234] = {.lex_state = 27, .external_lex_state = 8}, + [1235] = {.lex_state = 35, .external_lex_state = 8}, + [1236] = {.lex_state = 158, .external_lex_state = 5}, + [1237] = {.lex_state = 158, .external_lex_state = 5}, + [1238] = {.lex_state = 158, .external_lex_state = 5}, + [1239] = {.lex_state = 158, .external_lex_state = 2}, + [1240] = {.lex_state = 35, .external_lex_state = 8}, + [1241] = {.lex_state = 27, .external_lex_state = 8}, + [1242] = {.lex_state = 27, .external_lex_state = 8}, + [1243] = {.lex_state = 158, .external_lex_state = 2}, + [1244] = {.lex_state = 31, .external_lex_state = 7}, + [1245] = {.lex_state = 158, .external_lex_state = 5}, + [1246] = {.lex_state = 158, .external_lex_state = 2}, + [1247] = {.lex_state = 158, .external_lex_state = 2}, + [1248] = {.lex_state = 158, .external_lex_state = 2}, + [1249] = {.lex_state = 158, .external_lex_state = 2}, + [1250] = {.lex_state = 158, .external_lex_state = 2}, + [1251] = {.lex_state = 158, .external_lex_state = 2}, + [1252] = {.lex_state = 158, .external_lex_state = 2}, + [1253] = {.lex_state = 158, .external_lex_state = 2}, + [1254] = {.lex_state = 158, .external_lex_state = 2}, + [1255] = {.lex_state = 158, .external_lex_state = 5}, + [1256] = {.lex_state = 158, .external_lex_state = 2}, + [1257] = {.lex_state = 158, .external_lex_state = 2}, + [1258] = {.lex_state = 24, .external_lex_state = 2}, + [1259] = {.lex_state = 158, .external_lex_state = 5}, + [1260] = {.lex_state = 158, .external_lex_state = 5}, + [1261] = {.lex_state = 33, .external_lex_state = 2}, + [1262] = {.lex_state = 35, .external_lex_state = 8}, + [1263] = {.lex_state = 158, .external_lex_state = 5}, + [1264] = {.lex_state = 158, .external_lex_state = 5}, + [1265] = {.lex_state = 27, .external_lex_state = 8}, + [1266] = {.lex_state = 158, .external_lex_state = 5}, + [1267] = {.lex_state = 158, .external_lex_state = 2}, + [1268] = {.lex_state = 158, .external_lex_state = 2}, + [1269] = {.lex_state = 158, .external_lex_state = 2}, + [1270] = {.lex_state = 158, .external_lex_state = 2}, + [1271] = {.lex_state = 33, .external_lex_state = 2}, + [1272] = {.lex_state = 158, .external_lex_state = 2}, + [1273] = {.lex_state = 158, .external_lex_state = 2}, + [1274] = {.lex_state = 158, .external_lex_state = 2}, + [1275] = {.lex_state = 158, .external_lex_state = 2}, + [1276] = {.lex_state = 158, .external_lex_state = 2}, + [1277] = {.lex_state = 158, .external_lex_state = 5}, + [1278] = {.lex_state = 158, .external_lex_state = 2}, + [1279] = {.lex_state = 158, .external_lex_state = 5}, + [1280] = {.lex_state = 158, .external_lex_state = 2}, + [1281] = {.lex_state = 158, .external_lex_state = 2}, + [1282] = {.lex_state = 27, .external_lex_state = 8}, + [1283] = {.lex_state = 35, .external_lex_state = 8}, + [1284] = {.lex_state = 27, .external_lex_state = 8}, + [1285] = {.lex_state = 35, .external_lex_state = 8}, + [1286] = {.lex_state = 158, .external_lex_state = 2}, + [1287] = {.lex_state = 158, .external_lex_state = 2}, + [1288] = {.lex_state = 158, .external_lex_state = 5}, + [1289] = {.lex_state = 158, .external_lex_state = 5}, + [1290] = {.lex_state = 158, .external_lex_state = 5}, + [1291] = {.lex_state = 158, .external_lex_state = 5}, + [1292] = {.lex_state = 158, .external_lex_state = 2}, + [1293] = {.lex_state = 158, .external_lex_state = 2}, + [1294] = {.lex_state = 158, .external_lex_state = 2}, + [1295] = {.lex_state = 158, .external_lex_state = 2}, + [1296] = {.lex_state = 158, .external_lex_state = 2}, + [1297] = {.lex_state = 158, .external_lex_state = 2}, + [1298] = {.lex_state = 158, .external_lex_state = 2}, + [1299] = {.lex_state = 158, .external_lex_state = 2}, + [1300] = {.lex_state = 158, .external_lex_state = 2}, + [1301] = {.lex_state = 158, .external_lex_state = 2}, + [1302] = {.lex_state = 158, .external_lex_state = 2}, + [1303] = {.lex_state = 158, .external_lex_state = 2}, + [1304] = {.lex_state = 158, .external_lex_state = 2}, + [1305] = {.lex_state = 158, .external_lex_state = 2}, + [1306] = {.lex_state = 158, .external_lex_state = 2}, + [1307] = {.lex_state = 158, .external_lex_state = 2}, + [1308] = {.lex_state = 158, .external_lex_state = 2}, + [1309] = {.lex_state = 158, .external_lex_state = 2}, + [1310] = {.lex_state = 158, .external_lex_state = 2}, + [1311] = {.lex_state = 158, .external_lex_state = 2}, + [1312] = {.lex_state = 158, .external_lex_state = 5}, + [1313] = {.lex_state = 158, .external_lex_state = 2}, + [1314] = {.lex_state = 158, .external_lex_state = 5}, + [1315] = {.lex_state = 158, .external_lex_state = 2}, + [1316] = {.lex_state = 14, .external_lex_state = 2}, + [1317] = {.lex_state = 158, .external_lex_state = 2}, + [1318] = {.lex_state = 158, .external_lex_state = 2}, + [1319] = {.lex_state = 12, .external_lex_state = 2}, + [1320] = {.lex_state = 12, .external_lex_state = 2}, + [1321] = {.lex_state = 158, .external_lex_state = 2}, + [1322] = {.lex_state = 158, .external_lex_state = 2}, + [1323] = {.lex_state = 158, .external_lex_state = 2}, + [1324] = {.lex_state = 158, .external_lex_state = 2}, + [1325] = {.lex_state = 158, .external_lex_state = 2}, + [1326] = {.lex_state = 158, .external_lex_state = 2}, + [1327] = {.lex_state = 158, .external_lex_state = 2}, + [1328] = {.lex_state = 158, .external_lex_state = 2}, + [1329] = {.lex_state = 158, .external_lex_state = 2}, + [1330] = {.lex_state = 158, .external_lex_state = 2}, + [1331] = {.lex_state = 158, .external_lex_state = 2}, + [1332] = {.lex_state = 158, .external_lex_state = 2}, + [1333] = {.lex_state = 158, .external_lex_state = 2}, + [1334] = {.lex_state = 158, .external_lex_state = 2}, + [1335] = {.lex_state = 158, .external_lex_state = 2}, + [1336] = {.lex_state = 158, .external_lex_state = 2}, + [1337] = {.lex_state = 158, .external_lex_state = 2}, + [1338] = {.lex_state = 158, .external_lex_state = 2}, + [1339] = {.lex_state = 158, .external_lex_state = 2}, + [1340] = {.lex_state = 158, .external_lex_state = 2}, + [1341] = {.lex_state = 158, .external_lex_state = 2}, + [1342] = {.lex_state = 158, .external_lex_state = 2}, + [1343] = {.lex_state = 158, .external_lex_state = 2}, + [1344] = {.lex_state = 158, .external_lex_state = 2}, + [1345] = {.lex_state = 158, .external_lex_state = 2}, + [1346] = {.lex_state = 158, .external_lex_state = 2}, + [1347] = {.lex_state = 158, .external_lex_state = 2}, + [1348] = {.lex_state = 158, .external_lex_state = 2}, + [1349] = {.lex_state = 158, .external_lex_state = 2}, + [1350] = {.lex_state = 158, .external_lex_state = 2}, + [1351] = {.lex_state = 158, .external_lex_state = 2}, + [1352] = {.lex_state = 158, .external_lex_state = 2}, + [1353] = {.lex_state = 158, .external_lex_state = 5}, + [1354] = {.lex_state = 158, .external_lex_state = 5}, + [1355] = {.lex_state = 158, .external_lex_state = 2}, + [1356] = {.lex_state = 158, .external_lex_state = 2}, + [1357] = {.lex_state = 12, .external_lex_state = 2}, + [1358] = {.lex_state = 158, .external_lex_state = 2}, + [1359] = {.lex_state = 158, .external_lex_state = 2}, + [1360] = {.lex_state = 158, .external_lex_state = 2}, + [1361] = {.lex_state = 158, .external_lex_state = 2}, + [1362] = {.lex_state = 158, .external_lex_state = 2}, + [1363] = {.lex_state = 158, .external_lex_state = 2}, + [1364] = {.lex_state = 158, .external_lex_state = 2}, + [1365] = {.lex_state = 158, .external_lex_state = 2}, + [1366] = {.lex_state = 158, .external_lex_state = 5}, + [1367] = {.lex_state = 158, .external_lex_state = 2}, + [1368] = {.lex_state = 158, .external_lex_state = 2}, + [1369] = {.lex_state = 158, .external_lex_state = 2}, + [1370] = {.lex_state = 158, .external_lex_state = 5}, + [1371] = {.lex_state = 158, .external_lex_state = 2}, + [1372] = {.lex_state = 12, .external_lex_state = 2}, + [1373] = {.lex_state = 158, .external_lex_state = 2}, + [1374] = {.lex_state = 158, .external_lex_state = 2}, + [1375] = {.lex_state = 158, .external_lex_state = 2}, + [1376] = {.lex_state = 158, .external_lex_state = 2}, + [1377] = {.lex_state = 12, .external_lex_state = 2}, + [1378] = {.lex_state = 158, .external_lex_state = 2}, + [1379] = {.lex_state = 14, .external_lex_state = 2}, + [1380] = {.lex_state = 158, .external_lex_state = 2}, + [1381] = {.lex_state = 12, .external_lex_state = 2}, + [1382] = {.lex_state = 158, .external_lex_state = 2}, + [1383] = {.lex_state = 158, .external_lex_state = 2}, + [1384] = {.lex_state = 158, .external_lex_state = 5}, + [1385] = {.lex_state = 158, .external_lex_state = 5}, + [1386] = {.lex_state = 158, .external_lex_state = 2}, + [1387] = {.lex_state = 158, .external_lex_state = 2}, + [1388] = {.lex_state = 158, .external_lex_state = 5}, + [1389] = {.lex_state = 158, .external_lex_state = 5}, + [1390] = {.lex_state = 158, .external_lex_state = 2}, + [1391] = {.lex_state = 158, .external_lex_state = 2}, + [1392] = {.lex_state = 158, .external_lex_state = 2}, + [1393] = {.lex_state = 158, .external_lex_state = 2}, + [1394] = {.lex_state = 158, .external_lex_state = 2}, + [1395] = {.lex_state = 158, .external_lex_state = 2}, + [1396] = {.lex_state = 158, .external_lex_state = 2}, + [1397] = {.lex_state = 158, .external_lex_state = 2}, + [1398] = {.lex_state = 158, .external_lex_state = 2}, + [1399] = {.lex_state = 12, .external_lex_state = 2}, + [1400] = {.lex_state = 158, .external_lex_state = 2}, + [1401] = {.lex_state = 158, .external_lex_state = 2}, + [1402] = {.lex_state = 158, .external_lex_state = 2}, + [1403] = {.lex_state = 158, .external_lex_state = 5}, + [1404] = {.lex_state = 158, .external_lex_state = 5}, + [1405] = {.lex_state = 158, .external_lex_state = 2}, + [1406] = {.lex_state = 158, .external_lex_state = 2}, + [1407] = {.lex_state = 158, .external_lex_state = 2}, + [1408] = {.lex_state = 158, .external_lex_state = 2}, + [1409] = {.lex_state = 158, .external_lex_state = 2}, + [1410] = {.lex_state = 158, .external_lex_state = 2}, + [1411] = {.lex_state = 158, .external_lex_state = 2}, + [1412] = {.lex_state = 158, .external_lex_state = 2}, + [1413] = {.lex_state = 158, .external_lex_state = 2}, + [1414] = {.lex_state = 158, .external_lex_state = 2}, + [1415] = {.lex_state = 158, .external_lex_state = 5}, + [1416] = {.lex_state = 14, .external_lex_state = 2}, + [1417] = {.lex_state = 158, .external_lex_state = 2}, + [1418] = {.lex_state = 14, .external_lex_state = 2}, + [1419] = {.lex_state = 158, .external_lex_state = 2}, + [1420] = {.lex_state = 158, .external_lex_state = 5}, + [1421] = {.lex_state = 158, .external_lex_state = 5}, + [1422] = {.lex_state = 158, .external_lex_state = 2}, + [1423] = {.lex_state = 158, .external_lex_state = 2}, + [1424] = {.lex_state = 158, .external_lex_state = 2}, + [1425] = {.lex_state = 158, .external_lex_state = 2}, + [1426] = {.lex_state = 158, .external_lex_state = 2}, + [1427] = {.lex_state = 158, .external_lex_state = 2}, + [1428] = {.lex_state = 158, .external_lex_state = 2}, + [1429] = {.lex_state = 158, .external_lex_state = 2}, + [1430] = {.lex_state = 158, .external_lex_state = 2}, + [1431] = {.lex_state = 158, .external_lex_state = 2}, + [1432] = {.lex_state = 158, .external_lex_state = 2}, + [1433] = {.lex_state = 158, .external_lex_state = 2}, + [1434] = {.lex_state = 158, .external_lex_state = 2}, + [1435] = {.lex_state = 158, .external_lex_state = 2}, + [1436] = {.lex_state = 158, .external_lex_state = 2}, + [1437] = {.lex_state = 158, .external_lex_state = 2}, + [1438] = {.lex_state = 158, .external_lex_state = 2}, + [1439] = {.lex_state = 158, .external_lex_state = 2}, + [1440] = {.lex_state = 158, .external_lex_state = 2}, + [1441] = {.lex_state = 158, .external_lex_state = 2}, + [1442] = {.lex_state = 158, .external_lex_state = 2}, + [1443] = {.lex_state = 158, .external_lex_state = 2}, + [1444] = {.lex_state = 158, .external_lex_state = 2}, + [1445] = {.lex_state = 158, .external_lex_state = 2}, + [1446] = {.lex_state = 158, .external_lex_state = 2}, + [1447] = {.lex_state = 158, .external_lex_state = 2}, + [1448] = {.lex_state = 158, .external_lex_state = 2}, + [1449] = {.lex_state = 158, .external_lex_state = 2}, + [1450] = {.lex_state = 158, .external_lex_state = 2}, + [1451] = {.lex_state = 158, .external_lex_state = 2}, + [1452] = {.lex_state = 158, .external_lex_state = 2}, + [1453] = {.lex_state = 158, .external_lex_state = 2}, + [1454] = {.lex_state = 158, .external_lex_state = 2}, + [1455] = {.lex_state = 158, .external_lex_state = 2}, + [1456] = {.lex_state = 158, .external_lex_state = 2}, + [1457] = {.lex_state = 158, .external_lex_state = 2}, + [1458] = {.lex_state = 158, .external_lex_state = 2}, + [1459] = {.lex_state = 158, .external_lex_state = 2}, + [1460] = {.lex_state = 158, .external_lex_state = 2}, + [1461] = {.lex_state = 158, .external_lex_state = 2}, + [1462] = {.lex_state = 158, .external_lex_state = 2}, + [1463] = {.lex_state = 158, .external_lex_state = 2}, + [1464] = {.lex_state = 158, .external_lex_state = 2}, + [1465] = {.lex_state = 158, .external_lex_state = 2}, + [1466] = {.lex_state = 158, .external_lex_state = 2}, + [1467] = {.lex_state = 158, .external_lex_state = 5}, + [1468] = {.lex_state = 158, .external_lex_state = 2}, + [1469] = {.lex_state = 158, .external_lex_state = 2}, + [1470] = {.lex_state = 158, .external_lex_state = 2}, + [1471] = {.lex_state = 158, .external_lex_state = 2}, + [1472] = {.lex_state = 158, .external_lex_state = 2}, + [1473] = {.lex_state = 158, .external_lex_state = 2}, + [1474] = {.lex_state = 158, .external_lex_state = 2}, + [1475] = {.lex_state = 158, .external_lex_state = 2}, + [1476] = {.lex_state = 158, .external_lex_state = 2}, + [1477] = {.lex_state = 158, .external_lex_state = 2}, + [1478] = {.lex_state = 158, .external_lex_state = 2}, + [1479] = {.lex_state = 158, .external_lex_state = 2}, + [1480] = {.lex_state = 158, .external_lex_state = 2}, + [1481] = {.lex_state = 158, .external_lex_state = 2}, + [1482] = {.lex_state = 158, .external_lex_state = 2}, + [1483] = {.lex_state = 158, .external_lex_state = 5}, + [1484] = {.lex_state = 158, .external_lex_state = 2}, + [1485] = {.lex_state = 158, .external_lex_state = 2}, + [1486] = {.lex_state = 158, .external_lex_state = 5}, + [1487] = {.lex_state = 158, .external_lex_state = 2}, + [1488] = {.lex_state = 158, .external_lex_state = 2}, + [1489] = {.lex_state = 158, .external_lex_state = 2}, + [1490] = {.lex_state = 158, .external_lex_state = 2}, + [1491] = {.lex_state = 158, .external_lex_state = 2}, + [1492] = {.lex_state = 158, .external_lex_state = 2}, + [1493] = {.lex_state = 158, .external_lex_state = 2}, + [1494] = {.lex_state = 158, .external_lex_state = 2}, + [1495] = {.lex_state = 158, .external_lex_state = 2}, + [1496] = {.lex_state = 158, .external_lex_state = 2}, + [1497] = {.lex_state = 158, .external_lex_state = 2}, + [1498] = {.lex_state = 158, .external_lex_state = 2}, + [1499] = {.lex_state = 158, .external_lex_state = 2}, + [1500] = {.lex_state = 158, .external_lex_state = 2}, + [1501] = {.lex_state = 158, .external_lex_state = 2}, + [1502] = {.lex_state = 158, .external_lex_state = 2}, + [1503] = {.lex_state = 158, .external_lex_state = 2}, + [1504] = {.lex_state = 158, .external_lex_state = 2}, + [1505] = {.lex_state = 158, .external_lex_state = 2}, + [1506] = {.lex_state = 158, .external_lex_state = 2}, + [1507] = {.lex_state = 158, .external_lex_state = 2}, + [1508] = {.lex_state = 158, .external_lex_state = 2}, + [1509] = {.lex_state = 158, .external_lex_state = 2}, + [1510] = {.lex_state = 158, .external_lex_state = 2}, + [1511] = {.lex_state = 158, .external_lex_state = 2}, + [1512] = {.lex_state = 158, .external_lex_state = 2}, + [1513] = {.lex_state = 158, .external_lex_state = 2}, + [1514] = {.lex_state = 158, .external_lex_state = 2}, + [1515] = {.lex_state = 158, .external_lex_state = 2}, + [1516] = {.lex_state = 158, .external_lex_state = 2}, + [1517] = {.lex_state = 158, .external_lex_state = 2}, + [1518] = {.lex_state = 158, .external_lex_state = 2}, + [1519] = {.lex_state = 158, .external_lex_state = 2}, + [1520] = {.lex_state = 158, .external_lex_state = 2}, + [1521] = {.lex_state = 158, .external_lex_state = 5}, + [1522] = {.lex_state = 158, .external_lex_state = 2}, + [1523] = {.lex_state = 158, .external_lex_state = 2}, + [1524] = {.lex_state = 158, .external_lex_state = 5}, + [1525] = {.lex_state = 158, .external_lex_state = 2}, + [1526] = {.lex_state = 158, .external_lex_state = 2}, + [1527] = {.lex_state = 158, .external_lex_state = 2}, + [1528] = {.lex_state = 158, .external_lex_state = 2}, + [1529] = {.lex_state = 158, .external_lex_state = 5}, + [1530] = {.lex_state = 158, .external_lex_state = 5}, + [1531] = {.lex_state = 158, .external_lex_state = 2}, + [1532] = {.lex_state = 158, .external_lex_state = 2}, + [1533] = {.lex_state = 158, .external_lex_state = 5}, + [1534] = {.lex_state = 158, .external_lex_state = 2}, + [1535] = {.lex_state = 158, .external_lex_state = 2}, + [1536] = {.lex_state = 158, .external_lex_state = 2}, + [1537] = {.lex_state = 158, .external_lex_state = 2}, + [1538] = {.lex_state = 158, .external_lex_state = 2}, + [1539] = {.lex_state = 158, .external_lex_state = 2}, + [1540] = {.lex_state = 158, .external_lex_state = 2}, + [1541] = {.lex_state = 158, .external_lex_state = 2}, + [1542] = {.lex_state = 158, .external_lex_state = 2}, + [1543] = {.lex_state = 158, .external_lex_state = 2}, + [1544] = {.lex_state = 158, .external_lex_state = 2}, + [1545] = {.lex_state = 158, .external_lex_state = 2}, + [1546] = {.lex_state = 158, .external_lex_state = 2}, + [1547] = {.lex_state = 158, .external_lex_state = 2}, + [1548] = {.lex_state = 158, .external_lex_state = 2}, + [1549] = {.lex_state = 158, .external_lex_state = 2}, + [1550] = {.lex_state = 158, .external_lex_state = 2}, + [1551] = {.lex_state = 158, .external_lex_state = 5}, + [1552] = {.lex_state = 158, .external_lex_state = 5}, + [1553] = {.lex_state = 158, .external_lex_state = 2}, + [1554] = {.lex_state = 158, .external_lex_state = 2}, + [1555] = {.lex_state = 25, .external_lex_state = 2}, + [1556] = {.lex_state = 158, .external_lex_state = 2}, + [1557] = {.lex_state = 158, .external_lex_state = 2}, + [1558] = {.lex_state = 158, .external_lex_state = 2}, + [1559] = {.lex_state = 158, .external_lex_state = 2}, + [1560] = {.lex_state = 158, .external_lex_state = 2}, + [1561] = {.lex_state = 158, .external_lex_state = 2}, + [1562] = {.lex_state = 158, .external_lex_state = 2}, + [1563] = {.lex_state = 158, .external_lex_state = 2}, + [1564] = {.lex_state = 158, .external_lex_state = 2}, + [1565] = {.lex_state = 158, .external_lex_state = 2}, + [1566] = {.lex_state = 158, .external_lex_state = 2}, + [1567] = {.lex_state = 158, .external_lex_state = 2}, + [1568] = {.lex_state = 158, .external_lex_state = 2}, + [1569] = {.lex_state = 158, .external_lex_state = 2}, + [1570] = {.lex_state = 158, .external_lex_state = 2}, + [1571] = {.lex_state = 158, .external_lex_state = 2}, + [1572] = {.lex_state = 158, .external_lex_state = 2}, + [1573] = {.lex_state = 158, .external_lex_state = 2}, + [1574] = {.lex_state = 158, .external_lex_state = 2}, + [1575] = {.lex_state = 158, .external_lex_state = 2}, + [1576] = {.lex_state = 158, .external_lex_state = 2}, + [1577] = {.lex_state = 158, .external_lex_state = 2}, + [1578] = {.lex_state = 158, .external_lex_state = 2}, + [1579] = {.lex_state = 158, .external_lex_state = 2}, + [1580] = {.lex_state = 158, .external_lex_state = 2}, + [1581] = {.lex_state = 158, .external_lex_state = 5}, + [1582] = {.lex_state = 158, .external_lex_state = 2}, + [1583] = {.lex_state = 158, .external_lex_state = 2}, + [1584] = {.lex_state = 158, .external_lex_state = 2}, + [1585] = {.lex_state = 158, .external_lex_state = 2}, + [1586] = {.lex_state = 158, .external_lex_state = 2}, + [1587] = {.lex_state = 158, .external_lex_state = 2}, + [1588] = {.lex_state = 158, .external_lex_state = 2}, + [1589] = {.lex_state = 158, .external_lex_state = 2}, + [1590] = {.lex_state = 158, .external_lex_state = 2}, + [1591] = {.lex_state = 158, .external_lex_state = 2}, + [1592] = {.lex_state = 158, .external_lex_state = 2}, + [1593] = {.lex_state = 158, .external_lex_state = 2}, + [1594] = {.lex_state = 158, .external_lex_state = 5}, + [1595] = {.lex_state = 158, .external_lex_state = 2}, + [1596] = {.lex_state = 14, .external_lex_state = 2}, + [1597] = {.lex_state = 158, .external_lex_state = 5}, + [1598] = {.lex_state = 158, .external_lex_state = 2}, + [1599] = {.lex_state = 158, .external_lex_state = 2}, + [1600] = {.lex_state = 158, .external_lex_state = 2}, + [1601] = {.lex_state = 158, .external_lex_state = 2}, + [1602] = {.lex_state = 158, .external_lex_state = 2}, + [1603] = {.lex_state = 158, .external_lex_state = 2}, + [1604] = {.lex_state = 158, .external_lex_state = 2}, + [1605] = {.lex_state = 158, .external_lex_state = 2}, + [1606] = {.lex_state = 158, .external_lex_state = 2}, + [1607] = {.lex_state = 14, .external_lex_state = 2}, + [1608] = {.lex_state = 158, .external_lex_state = 2}, + [1609] = {.lex_state = 158, .external_lex_state = 2}, + [1610] = {.lex_state = 158, .external_lex_state = 2}, + [1611] = {.lex_state = 158, .external_lex_state = 5}, + [1612] = {.lex_state = 158, .external_lex_state = 2}, + [1613] = {.lex_state = 158, .external_lex_state = 2}, + [1614] = {.lex_state = 158, .external_lex_state = 2}, + [1615] = {.lex_state = 158, .external_lex_state = 2}, + [1616] = {.lex_state = 158, .external_lex_state = 2}, + [1617] = {.lex_state = 158, .external_lex_state = 5}, + [1618] = {.lex_state = 158, .external_lex_state = 2}, + [1619] = {.lex_state = 158, .external_lex_state = 2}, + [1620] = {.lex_state = 158, .external_lex_state = 2}, + [1621] = {.lex_state = 158, .external_lex_state = 2}, + [1622] = {.lex_state = 158, .external_lex_state = 2}, + [1623] = {.lex_state = 158, .external_lex_state = 2}, + [1624] = {.lex_state = 158, .external_lex_state = 2}, + [1625] = {.lex_state = 158, .external_lex_state = 2}, + [1626] = {.lex_state = 158, .external_lex_state = 2}, + [1627] = {.lex_state = 158, .external_lex_state = 2}, + [1628] = {.lex_state = 158, .external_lex_state = 2}, + [1629] = {.lex_state = 158, .external_lex_state = 2}, + [1630] = {.lex_state = 158, .external_lex_state = 2}, + [1631] = {.lex_state = 158, .external_lex_state = 2}, + [1632] = {.lex_state = 158, .external_lex_state = 2}, + [1633] = {.lex_state = 158, .external_lex_state = 2}, + [1634] = {.lex_state = 158, .external_lex_state = 2}, + [1635] = {.lex_state = 158, .external_lex_state = 2}, + [1636] = {.lex_state = 158, .external_lex_state = 5}, + [1637] = {.lex_state = 158, .external_lex_state = 2}, + [1638] = {.lex_state = 158, .external_lex_state = 5}, + [1639] = {.lex_state = 158, .external_lex_state = 2}, + [1640] = {.lex_state = 158, .external_lex_state = 2}, + [1641] = {.lex_state = 158, .external_lex_state = 2}, + [1642] = {.lex_state = 158, .external_lex_state = 2}, + [1643] = {.lex_state = 158, .external_lex_state = 2}, + [1644] = {.lex_state = 158, .external_lex_state = 2}, + [1645] = {.lex_state = 158, .external_lex_state = 2}, + [1646] = {.lex_state = 158, .external_lex_state = 2}, + [1647] = {.lex_state = 158, .external_lex_state = 2}, + [1648] = {.lex_state = 158, .external_lex_state = 2}, + [1649] = {.lex_state = 158, .external_lex_state = 2}, + [1650] = {.lex_state = 158, .external_lex_state = 2}, + [1651] = {.lex_state = 158, .external_lex_state = 2}, + [1652] = {.lex_state = 158, .external_lex_state = 2}, + [1653] = {.lex_state = 158, .external_lex_state = 2}, + [1654] = {.lex_state = 158, .external_lex_state = 2}, + [1655] = {.lex_state = 13, .external_lex_state = 9}, + [1656] = {.lex_state = 158, .external_lex_state = 2}, + [1657] = {.lex_state = 158, .external_lex_state = 2}, + [1658] = {.lex_state = 13, .external_lex_state = 9}, + [1659] = {.lex_state = 158, .external_lex_state = 2}, + [1660] = {.lex_state = 158, .external_lex_state = 2}, + [1661] = {.lex_state = 158, .external_lex_state = 2}, + [1662] = {.lex_state = 158, .external_lex_state = 2}, + [1663] = {.lex_state = 158, .external_lex_state = 2}, + [1664] = {.lex_state = 158, .external_lex_state = 2}, + [1665] = {.lex_state = 158, .external_lex_state = 2}, + [1666] = {.lex_state = 158, .external_lex_state = 2}, + [1667] = {.lex_state = 158, .external_lex_state = 2}, + [1668] = {.lex_state = 158, .external_lex_state = 2}, + [1669] = {.lex_state = 47, .external_lex_state = 2}, + [1670] = {.lex_state = 158, .external_lex_state = 2}, + [1671] = {.lex_state = 158, .external_lex_state = 2}, + [1672] = {.lex_state = 158, .external_lex_state = 2}, + [1673] = {.lex_state = 158, .external_lex_state = 2}, + [1674] = {.lex_state = 158, .external_lex_state = 2}, + [1675] = {.lex_state = 158, .external_lex_state = 2}, + [1676] = {.lex_state = 158, .external_lex_state = 2}, + [1677] = {.lex_state = 158, .external_lex_state = 2}, + [1678] = {.lex_state = 158, .external_lex_state = 2}, + [1679] = {.lex_state = 158, .external_lex_state = 2}, + [1680] = {.lex_state = 158, .external_lex_state = 2}, + [1681] = {.lex_state = 158, .external_lex_state = 2}, + [1682] = {.lex_state = 158, .external_lex_state = 2}, + [1683] = {.lex_state = 158, .external_lex_state = 2}, + [1684] = {.lex_state = 158, .external_lex_state = 2}, + [1685] = {.lex_state = 158, .external_lex_state = 2}, + [1686] = {.lex_state = 158, .external_lex_state = 2}, + [1687] = {.lex_state = 158, .external_lex_state = 2}, + [1688] = {.lex_state = 158, .external_lex_state = 2}, + [1689] = {.lex_state = 158, .external_lex_state = 2}, + [1690] = {.lex_state = 158, .external_lex_state = 2}, + [1691] = {.lex_state = 158, .external_lex_state = 2}, + [1692] = {.lex_state = 158, .external_lex_state = 2}, + [1693] = {.lex_state = 158, .external_lex_state = 2}, + [1694] = {.lex_state = 158, .external_lex_state = 2}, + [1695] = {.lex_state = 158, .external_lex_state = 2}, + [1696] = {.lex_state = 158, .external_lex_state = 2}, + [1697] = {.lex_state = 158, .external_lex_state = 2}, + [1698] = {.lex_state = 158, .external_lex_state = 2}, + [1699] = {.lex_state = 158, .external_lex_state = 2}, + [1700] = {.lex_state = 158, .external_lex_state = 2}, + [1701] = {.lex_state = 158, .external_lex_state = 2}, + [1702] = {.lex_state = 158, .external_lex_state = 2}, + [1703] = {.lex_state = 158, .external_lex_state = 2}, + [1704] = {.lex_state = 158, .external_lex_state = 2}, + [1705] = {.lex_state = 158, .external_lex_state = 2}, + [1706] = {.lex_state = 158, .external_lex_state = 2}, + [1707] = {.lex_state = 47, .external_lex_state = 2}, + [1708] = {.lex_state = 158, .external_lex_state = 2}, + [1709] = {.lex_state = 158, .external_lex_state = 2}, + [1710] = {.lex_state = 158, .external_lex_state = 2}, + [1711] = {.lex_state = 158, .external_lex_state = 2}, + [1712] = {.lex_state = 158, .external_lex_state = 2}, + [1713] = {.lex_state = 158, .external_lex_state = 2}, + [1714] = {.lex_state = 158, .external_lex_state = 2}, + [1715] = {.lex_state = 158, .external_lex_state = 2}, + [1716] = {.lex_state = 47, .external_lex_state = 2}, + [1717] = {.lex_state = 158, .external_lex_state = 2}, + [1718] = {.lex_state = 158, .external_lex_state = 2}, + [1719] = {.lex_state = 158, .external_lex_state = 2}, + [1720] = {.lex_state = 158, .external_lex_state = 2}, + [1721] = {.lex_state = 158, .external_lex_state = 2}, + [1722] = {.lex_state = 158, .external_lex_state = 2}, + [1723] = {.lex_state = 158, .external_lex_state = 2}, + [1724] = {.lex_state = 158, .external_lex_state = 2}, + [1725] = {.lex_state = 158, .external_lex_state = 2}, + [1726] = {.lex_state = 158, .external_lex_state = 2}, + [1727] = {.lex_state = 158, .external_lex_state = 2}, + [1728] = {.lex_state = 158, .external_lex_state = 2}, + [1729] = {.lex_state = 158, .external_lex_state = 2}, + [1730] = {.lex_state = 158, .external_lex_state = 2}, + [1731] = {.lex_state = 158, .external_lex_state = 2}, + [1732] = {.lex_state = 158, .external_lex_state = 2}, + [1733] = {.lex_state = 158, .external_lex_state = 2}, + [1734] = {.lex_state = 158, .external_lex_state = 2}, + [1735] = {.lex_state = 158, .external_lex_state = 2}, + [1736] = {.lex_state = 13, .external_lex_state = 9}, + [1737] = {.lex_state = 158, .external_lex_state = 2}, + [1738] = {.lex_state = 158, .external_lex_state = 2}, + [1739] = {.lex_state = 47, .external_lex_state = 2}, + [1740] = {.lex_state = 13, .external_lex_state = 9}, + [1741] = {.lex_state = 158, .external_lex_state = 2}, + [1742] = {.lex_state = 158, .external_lex_state = 2}, + [1743] = {.lex_state = 158, .external_lex_state = 2}, + [1744] = {.lex_state = 158, .external_lex_state = 2}, + [1745] = {.lex_state = 158, .external_lex_state = 2}, + [1746] = {.lex_state = 158, .external_lex_state = 2}, + [1747] = {.lex_state = 158, .external_lex_state = 2}, + [1748] = {.lex_state = 158, .external_lex_state = 2}, + [1749] = {.lex_state = 158, .external_lex_state = 2}, + [1750] = {.lex_state = 158, .external_lex_state = 2}, }; enum { 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, + ts_external_token_regex_pattern = 6, + ts_external_token_jsx_text = 7, }; 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, + [ts_external_token_regex_pattern] = sym_regex_pattern, + [ts_external_token_jsx_text] = sym_jsx_text, }; -static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[10][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, + [ts_external_token_jsx_text] = true, }, [2] = { - [ts_external_token__ternary_qmark] = true, + [ts_external_token_html_comment] = true, }, [3] = { - [ts_external_token__automatic_semicolon] = true, [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_html_comment] = true, + [ts_external_token_jsx_text] = true, + }, + [7] = { [ts_external_token__template_chars] = true, + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, + [8] = { + [ts_external_token_html_comment] = true, + [ts_external_token_escape_sequence] = true, + }, + [9] = { + [ts_external_token_html_comment] = true, + [ts_external_token_regex_pattern] = true, }, }; @@ -8046,12 +8958,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_export] = ACTIONS(1), [anon_sym_STAR] = ACTIONS(1), [anon_sym_default] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), [anon_sym_LBRACE] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_as] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), [anon_sym_from] = ACTIONS(1), + [anon_sym_with] = ACTIONS(1), [anon_sym_var] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), @@ -8060,6 +8973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), [anon_sym_RPAREN] = ACTIONS(1), [anon_sym_await] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), @@ -8067,13 +8981,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(1), [anon_sym_do] = ACTIONS(1), [anon_sym_try] = ACTIONS(1), - [anon_sym_with] = ACTIONS(1), [anon_sym_break] = ACTIONS(1), [anon_sym_continue] = ACTIONS(1), [anon_sym_debugger] = ACTIONS(1), [anon_sym_return] = ACTIONS(1), [anon_sym_throw] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [anon_sym_case] = ACTIONS(1), [anon_sym_catch] = ACTIONS(1), @@ -8082,11 +8994,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_LTtemplate_GT] = ACTIONS(1), + [sym_glimmer_opening_tag] = ACTIONS(1), [anon_sym_LT] = ACTIONS(1), [anon_sym_GT] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), + [anon_sym_LT_SLASH] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), [anon_sym_class] = ACTIONS(1), [anon_sym_extends] = ACTIONS(1), [anon_sym_async] = ACTIONS(1), @@ -8097,6 +9011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), [anon_sym_PERCENT_EQ] = ACTIONS(1), [anon_sym_CARET_EQ] = ACTIONS(1), [anon_sym_AMP_EQ] = ACTIONS(1), @@ -8119,6 +9034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), [anon_sym_STAR_STAR] = ACTIONS(1), [anon_sym_LT_EQ] = ACTIONS(1), @@ -8136,8 +9052,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1), [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1), @@ -8146,6 +9060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_number] = ACTIONS(1), [sym_private_property_identifier] = ACTIONS(1), [anon_sym_target] = ACTIONS(1), + [anon_sym_meta] = ACTIONS(1), [sym_this] = ACTIONS(1), [sym_super] = ACTIONS(1), [sym_true] = ACTIONS(1), @@ -8154,3846 +9069,2880 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), [anon_sym_static] = ACTIONS(1), + [aux_sym_method_definition_token1] = ACTIONS(1), [anon_sym_get] = ACTIONS(1), [anon_sym_set] = ACTIONS(1), [sym_preproc] = ACTIONS(1), [sym__automatic_semicolon] = ACTIONS(1), [sym__template_chars] = ACTIONS(1), [sym__ternary_qmark] = ACTIONS(1), + [sym_html_comment] = ACTIONS(5), + [sym_jsx_text] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(1612), - [sym_export_statement] = STATE(24), - [sym_declaration] = STATE(24), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [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(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(1145), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(91), + [sym_program] = STATE(1728), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(20), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(1195), + [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_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [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(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1591), - [sym_object_assignment_pattern] = STATE(1274), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1591), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1591), - [sym_spread_element] = STATE(1257), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(793), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [sym_rest_pattern] = STATE(1274), - [sym_method_definition] = STATE(1257), - [sym_pair] = STATE(1257), - [sym_pair_pattern] = STATE(1274), - [sym__property_name] = STATE(1260), - [sym_computed_property_name] = STATE(1260), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(914), - [aux_sym_object_repeat1] = STATE(1256), - [aux_sym_object_pattern_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(93), - [anon_sym_export] = ACTIONS(95), - [anon_sym_STAR] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(101), - [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(103), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(105), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(111), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(113), - [anon_sym_get] = ACTIONS(115), - [anon_sym_set] = ACTIONS(115), - [sym_preproc] = ACTIONS(117), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(26), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1715), + [sym_object_assignment_pattern] = STATE(1356), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1715), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1715), + [sym_spread_element] = STATE(1322), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(831), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [sym_rest_pattern] = STATE(1356), + [sym_method_definition] = STATE(1322), + [sym_pair] = STATE(1322), + [sym_pair_pattern] = STATE(1356), + [sym__property_name] = STATE(1350), + [sym_computed_property_name] = STATE(1350), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(919), + [aux_sym_object_repeat1] = STATE(1329), + [aux_sym_object_pattern_repeat1] = STATE(1341), + [sym_identifier] = ACTIONS(99), + [anon_sym_export] = ACTIONS(101), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(109), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(113), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(117), + [sym_private_property_identifier] = ACTIONS(119), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(121), + [aux_sym_method_definition_token1] = ACTIONS(123), + [anon_sym_get] = ACTIONS(125), + [anon_sym_set] = ACTIONS(125), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [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(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1591), - [sym_object_assignment_pattern] = STATE(1274), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1591), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1591), - [sym_spread_element] = STATE(1264), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(793), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [sym_rest_pattern] = STATE(1274), - [sym_method_definition] = STATE(1264), - [sym_pair] = STATE(1264), - [sym_pair_pattern] = STATE(1274), - [sym__property_name] = STATE(1260), - [sym_computed_property_name] = STATE(1260), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(914), - [aux_sym_object_repeat1] = STATE(1253), - [aux_sym_object_pattern_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(119), - [anon_sym_export] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(123), - [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(103), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(125), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(111), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(127), - [anon_sym_get] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [sym_preproc] = ACTIONS(131), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(21), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1715), + [sym_object_assignment_pattern] = STATE(1356), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1715), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1715), + [sym_spread_element] = STATE(1352), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(831), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [sym_rest_pattern] = STATE(1356), + [sym_method_definition] = STATE(1352), + [sym_pair] = STATE(1352), + [sym_pair_pattern] = STATE(1356), + [sym__property_name] = STATE(1350), + [sym_computed_property_name] = STATE(1350), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(919), + [aux_sym_object_repeat1] = STATE(1342), + [aux_sym_object_pattern_repeat1] = STATE(1341), + [sym_identifier] = ACTIONS(127), + [anon_sym_export] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(133), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(135), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(117), + [sym_private_property_identifier] = ACTIONS(119), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(137), + [aux_sym_method_definition_token1] = ACTIONS(123), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(23), - [sym_declaration] = STATE(23), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_for_in_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_try_statement] = STATE(23), - [sym_with_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_debugger_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_throw_statement] = STATE(23), - [sym_empty_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1591), - [sym_object_assignment_pattern] = STATE(1274), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1591), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1591), - [sym_spread_element] = STATE(1264), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(793), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [sym_rest_pattern] = STATE(1274), - [sym_method_definition] = STATE(1264), - [sym_pair] = STATE(1264), - [sym_pair_pattern] = STATE(1274), - [sym__property_name] = STATE(1260), - [sym_computed_property_name] = STATE(1260), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(914), - [aux_sym_object_repeat1] = STATE(1253), - [aux_sym_object_pattern_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(119), - [anon_sym_export] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(133), - [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(103), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(125), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(111), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(127), - [anon_sym_get] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [sym_preproc] = ACTIONS(135), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(21), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1715), + [sym_object_assignment_pattern] = STATE(1356), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1715), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1715), + [sym_spread_element] = STATE(1352), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(831), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [sym_rest_pattern] = STATE(1356), + [sym_method_definition] = STATE(1352), + [sym_pair] = STATE(1352), + [sym_pair_pattern] = STATE(1356), + [sym__property_name] = STATE(1350), + [sym_computed_property_name] = STATE(1350), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(919), + [aux_sym_object_repeat1] = STATE(1342), + [aux_sym_object_pattern_repeat1] = STATE(1341), + [sym_identifier] = ACTIONS(127), + [anon_sym_export] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(141), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(133), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(135), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(117), + [sym_private_property_identifier] = ACTIONS(119), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(137), + [aux_sym_method_definition_token1] = ACTIONS(123), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [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(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1591), - [sym_object_assignment_pattern] = STATE(1274), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1591), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1591), - [sym_spread_element] = STATE(1257), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(793), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [sym_rest_pattern] = STATE(1274), - [sym_method_definition] = STATE(1257), - [sym_pair] = STATE(1257), - [sym_pair_pattern] = STATE(1274), - [sym__property_name] = STATE(1260), - [sym_computed_property_name] = STATE(1260), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(914), - [aux_sym_object_repeat1] = STATE(1256), - [aux_sym_object_pattern_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(137), - [anon_sym_export] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(99), - [anon_sym_RBRACE] = ACTIONS(101), - [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(103), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(141), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(111), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(143), - [anon_sym_get] = ACTIONS(145), - [anon_sym_set] = ACTIONS(145), - [sym_preproc] = ACTIONS(117), - }, - [6] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [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(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1591), - [sym_object_assignment_pattern] = STATE(1274), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1591), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1591), - [sym_spread_element] = STATE(1264), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(793), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [sym_rest_pattern] = STATE(1274), - [sym_method_definition] = STATE(1264), - [sym_pair] = STATE(1264), - [sym_pair_pattern] = STATE(1274), - [sym__property_name] = STATE(1260), - [sym_computed_property_name] = STATE(1260), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(914), - [aux_sym_object_repeat1] = STATE(1253), - [aux_sym_object_pattern_repeat1] = STATE(1249), - [sym_identifier] = ACTIONS(119), - [anon_sym_export] = ACTIONS(121), - [anon_sym_STAR] = ACTIONS(97), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(99), - [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(103), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(125), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(109), - [sym_private_property_identifier] = ACTIONS(111), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(127), - [anon_sym_get] = ACTIONS(129), - [anon_sym_set] = ACTIONS(129), - [sym_preproc] = ACTIONS(131), - }, - [7] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(149), - [sym_identifier] = ACTIONS(151), - [anon_sym_export] = ACTIONS(154), - [anon_sym_default] = ACTIONS(157), - [anon_sym_LBRACE] = ACTIONS(159), - [anon_sym_RBRACE] = ACTIONS(149), - [anon_sym_import] = ACTIONS(162), - [anon_sym_var] = ACTIONS(165), - [anon_sym_let] = ACTIONS(168), - [anon_sym_const] = ACTIONS(168), - [anon_sym_if] = ACTIONS(171), - [anon_sym_switch] = ACTIONS(174), - [anon_sym_for] = ACTIONS(177), - [anon_sym_LPAREN] = ACTIONS(180), - [anon_sym_await] = ACTIONS(183), - [anon_sym_while] = ACTIONS(186), - [anon_sym_do] = ACTIONS(189), - [anon_sym_try] = ACTIONS(192), - [anon_sym_with] = ACTIONS(195), - [anon_sym_break] = ACTIONS(198), - [anon_sym_continue] = ACTIONS(201), - [anon_sym_debugger] = ACTIONS(204), - [anon_sym_return] = ACTIONS(207), - [anon_sym_throw] = ACTIONS(210), - [anon_sym_SEMI] = ACTIONS(213), - [anon_sym_case] = ACTIONS(157), - [anon_sym_yield] = ACTIONS(216), - [anon_sym_LBRACK] = ACTIONS(219), - [anon_sym_LTtemplate_GT] = ACTIONS(222), - [anon_sym_LT] = ACTIONS(225), - [anon_sym_SLASH] = ACTIONS(228), - [anon_sym_class] = ACTIONS(231), - [anon_sym_async] = ACTIONS(234), - [anon_sym_function] = ACTIONS(237), - [anon_sym_new] = ACTIONS(240), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_BANG] = ACTIONS(246), - [anon_sym_TILDE] = ACTIONS(246), - [anon_sym_typeof] = ACTIONS(243), - [anon_sym_void] = ACTIONS(243), - [anon_sym_delete] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(249), - [anon_sym_DASH_DASH] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(252), - [anon_sym_SQUOTE] = ACTIONS(255), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(258), - [sym_number] = ACTIONS(261), - [sym_this] = ACTIONS(264), - [sym_super] = ACTIONS(264), - [sym_true] = ACTIONS(264), - [sym_false] = ACTIONS(264), - [sym_null] = ACTIONS(264), - [sym_undefined] = ACTIONS(267), - [anon_sym_AT] = ACTIONS(270), - [anon_sym_static] = ACTIONS(273), - [anon_sym_get] = ACTIONS(273), - [anon_sym_set] = ACTIONS(273), - [sym_preproc] = ACTIONS(276), - }, - [8] = { - [sym_export_statement] = STATE(9), - [sym_declaration] = STATE(9), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_switch_statement] = STATE(9), - [sym_for_statement] = STATE(9), - [sym_for_in_statement] = STATE(9), - [sym_while_statement] = STATE(9), - [sym_do_statement] = STATE(9), - [sym_try_statement] = STATE(9), - [sym_with_statement] = STATE(9), - [sym_break_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_debugger_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_throw_statement] = STATE(9), - [sym_empty_statement] = STATE(9), - [sym_labeled_statement] = STATE(9), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(279), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(281), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(279), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(283), - }, - [9] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(287), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(285), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(289), - }, - [10] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [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(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(291), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(293), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(21), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_continue] = ACTIONS(41), - [anon_sym_debugger] = ACTIONS(43), - [anon_sym_return] = ACTIONS(45), - [anon_sym_throw] = ACTIONS(47), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(291), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(295), - }, - [11] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1715), + [sym_object_assignment_pattern] = STATE(1356), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1715), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1715), + [sym_spread_element] = STATE(1352), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(831), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [sym_rest_pattern] = STATE(1356), + [sym_method_definition] = STATE(1352), + [sym_pair] = STATE(1352), + [sym_pair_pattern] = STATE(1356), + [sym__property_name] = STATE(1350), + [sym_computed_property_name] = STATE(1350), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(919), + [aux_sym_object_repeat1] = STATE(1342), + [aux_sym_object_pattern_repeat1] = STATE(1341), + [sym_identifier] = ACTIONS(127), + [anon_sym_export] = ACTIONS(129), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(143), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(133), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(135), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(117), + [sym_private_property_identifier] = ACTIONS(119), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(137), + [aux_sym_method_definition_token1] = ACTIONS(123), + [anon_sym_get] = ACTIONS(139), + [anon_sym_set] = ACTIONS(139), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [6] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(26), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1715), + [sym_object_assignment_pattern] = STATE(1356), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1715), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1715), + [sym_spread_element] = STATE(1322), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(831), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [sym_rest_pattern] = STATE(1356), + [sym_method_definition] = STATE(1322), + [sym_pair] = STATE(1322), + [sym_pair_pattern] = STATE(1356), + [sym__property_name] = STATE(1350), + [sym_computed_property_name] = STATE(1350), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(919), + [aux_sym_object_repeat1] = STATE(1329), + [aux_sym_object_pattern_repeat1] = STATE(1341), + [sym_identifier] = ACTIONS(145), + [anon_sym_export] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(103), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_COMMA] = ACTIONS(105), + [anon_sym_RBRACE] = ACTIONS(107), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(149), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(111), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(151), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(117), + [sym_private_property_identifier] = ACTIONS(119), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(153), + [aux_sym_method_definition_token1] = ACTIONS(123), + [anon_sym_get] = ACTIONS(155), + [anon_sym_set] = ACTIONS(155), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [7] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1195), + [ts_builtin_sym_end] = ACTIONS(157), + [sym_identifier] = ACTIONS(159), + [anon_sym_export] = ACTIONS(162), + [anon_sym_default] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(167), + [anon_sym_RBRACE] = ACTIONS(157), + [anon_sym_import] = ACTIONS(170), + [anon_sym_with] = ACTIONS(173), + [anon_sym_var] = ACTIONS(176), + [anon_sym_let] = ACTIONS(179), + [anon_sym_const] = ACTIONS(182), + [anon_sym_if] = ACTIONS(185), + [anon_sym_switch] = ACTIONS(188), + [anon_sym_for] = ACTIONS(191), + [anon_sym_LPAREN] = ACTIONS(194), + [anon_sym_SEMI] = ACTIONS(197), + [anon_sym_await] = ACTIONS(200), + [anon_sym_while] = ACTIONS(203), + [anon_sym_do] = ACTIONS(206), + [anon_sym_try] = ACTIONS(209), + [anon_sym_break] = ACTIONS(212), + [anon_sym_continue] = ACTIONS(215), + [anon_sym_debugger] = ACTIONS(218), + [anon_sym_return] = ACTIONS(221), + [anon_sym_throw] = ACTIONS(224), + [anon_sym_case] = ACTIONS(165), + [anon_sym_yield] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(230), + [sym_glimmer_opening_tag] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(236), + [anon_sym_DQUOTE] = ACTIONS(239), + [anon_sym_SQUOTE] = ACTIONS(242), + [anon_sym_class] = ACTIONS(245), + [anon_sym_async] = ACTIONS(248), + [anon_sym_function] = ACTIONS(251), + [anon_sym_new] = ACTIONS(254), + [anon_sym_PLUS] = ACTIONS(257), + [anon_sym_DASH] = ACTIONS(257), + [anon_sym_SLASH] = ACTIONS(260), + [anon_sym_BANG] = ACTIONS(263), + [anon_sym_TILDE] = ACTIONS(263), + [anon_sym_typeof] = ACTIONS(257), + [anon_sym_void] = ACTIONS(257), + [anon_sym_delete] = ACTIONS(257), + [anon_sym_PLUS_PLUS] = ACTIONS(266), + [anon_sym_DASH_DASH] = ACTIONS(266), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(269), + [sym_number] = ACTIONS(272), + [sym_private_property_identifier] = ACTIONS(275), + [sym_this] = ACTIONS(278), + [sym_super] = ACTIONS(278), + [sym_true] = ACTIONS(278), + [sym_false] = ACTIONS(278), + [sym_null] = ACTIONS(278), + [sym_undefined] = ACTIONS(281), + [anon_sym_AT] = ACTIONS(284), + [anon_sym_static] = ACTIONS(287), + [anon_sym_get] = ACTIONS(287), + [anon_sym_set] = ACTIONS(287), + [sym_preproc] = ACTIONS(290), + [sym_html_comment] = ACTIONS(5), + }, + [8] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_case] = ACTIONS(293), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [9] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), [anon_sym_default] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(299), - [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_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), [anon_sym_case] = ACTIONS(297), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(289), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [10] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(9), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(9), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(301), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_case] = ACTIONS(301), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [11] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(8), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_default] = ACTIONS(305), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(307), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_case] = ACTIONS(305), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(301), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(289), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(303), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(289), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(23), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(1195), + [ts_builtin_sym_end] = ACTIONS(311), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(15), - [sym_declaration] = STATE(15), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(15), - [sym_expression_statement] = STATE(15), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [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(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(305), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(117), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(12), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(307), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(289), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(13), - [sym_declaration] = STATE(13), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_for_in_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_try_statement] = STATE(13), - [sym_with_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_debugger_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_throw_statement] = STATE(13), - [sym_empty_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(309), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(311), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_switch_statement] = STATE(12), - [sym_for_statement] = STATE(12), - [sym_for_in_statement] = STATE(12), - [sym_while_statement] = STATE(12), - [sym_do_statement] = STATE(12), - [sym_try_statement] = STATE(12), - [sym_with_statement] = STATE(12), - [sym_break_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_debugger_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_throw_statement] = STATE(12), - [sym_empty_statement] = STATE(12), - [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(313), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(315), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(18), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(317), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(289), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(319), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(289), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(21), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(25), - [sym_declaration] = STATE(25), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(25), - [sym_if_statement] = STATE(25), - [sym_switch_statement] = STATE(25), - [sym_for_statement] = STATE(25), - [sym_for_in_statement] = STATE(25), - [sym_while_statement] = STATE(25), - [sym_do_statement] = STATE(25), - [sym_try_statement] = STATE(25), - [sym_with_statement] = STATE(25), - [sym_break_statement] = STATE(25), - [sym_continue_statement] = STATE(25), - [sym_debugger_statement] = STATE(25), - [sym_return_statement] = STATE(25), - [sym_throw_statement] = STATE(25), - [sym_empty_statement] = STATE(25), - [sym_labeled_statement] = STATE(25), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(321), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(323), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1195), + [ts_builtin_sym_end] = ACTIONS(311), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(19), - [sym_declaration] = STATE(19), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(19), - [sym_if_statement] = STATE(19), - [sym_switch_statement] = STATE(19), - [sym_for_statement] = STATE(19), - [sym_for_in_statement] = STATE(19), - [sym_while_statement] = STATE(19), - [sym_do_statement] = STATE(19), - [sym_try_statement] = STATE(19), - [sym_with_statement] = STATE(19), - [sym_break_statement] = STATE(19), - [sym_continue_statement] = STATE(19), - [sym_debugger_statement] = STATE(19), - [sym_return_statement] = STATE(19), - [sym_throw_statement] = STATE(19), - [sym_empty_statement] = STATE(19), - [sym_labeled_statement] = STATE(19), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), [anon_sym_RBRACE] = ACTIONS(325), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(327), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [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(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(329), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(131), + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(15), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(331), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(289), - }, - [24] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(309), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(289), - }, - [25] = { - [sym_export_statement] = STATE(7), - [sym_declaration] = STATE(7), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(7), - [sym_if_statement] = STATE(7), - [sym_switch_statement] = STATE(7), - [sym_for_statement] = STATE(7), - [sym_for_in_statement] = STATE(7), - [sym_while_statement] = STATE(7), - [sym_do_statement] = STATE(7), - [sym_try_statement] = STATE(7), - [sym_with_statement] = STATE(7), - [sym_break_statement] = STATE(7), - [sym_continue_statement] = STATE(7), - [sym_debugger_statement] = STATE(7), - [sym_return_statement] = STATE(7), - [sym_throw_statement] = STATE(7), - [sym_empty_statement] = STATE(7), - [sym_labeled_statement] = STATE(7), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(333), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(289), - }, - [26] = { - [sym_export_statement] = STATE(23), - [sym_declaration] = STATE(23), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(23), - [sym_if_statement] = STATE(23), - [sym_switch_statement] = STATE(23), - [sym_for_statement] = STATE(23), - [sym_for_in_statement] = STATE(23), - [sym_while_statement] = STATE(23), - [sym_do_statement] = STATE(23), - [sym_try_statement] = STATE(23), - [sym_with_statement] = STATE(23), - [sym_break_statement] = STATE(23), - [sym_continue_statement] = STATE(23), - [sym_debugger_statement] = STATE(23), - [sym_return_statement] = STATE(23), - [sym_throw_statement] = STATE(23), - [sym_empty_statement] = STATE(23), - [sym_labeled_statement] = STATE(23), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(1145), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(335), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(135), - }, - [27] = { - [sym_export_statement] = STATE(366), - [sym_declaration] = STATE(366), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(366), - [sym_expression_statement] = STATE(366), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_switch_statement] = STATE(366), - [sym_for_statement] = STATE(366), - [sym_for_in_statement] = STATE(366), - [sym_while_statement] = STATE(366), - [sym_do_statement] = STATE(366), - [sym_try_statement] = STATE(366), - [sym_with_statement] = STATE(366), - [sym_break_statement] = STATE(366), - [sym_continue_statement] = STATE(366), - [sym_debugger_statement] = STATE(366), - [sym_return_statement] = STATE(366), - [sym_throw_statement] = STATE(366), - [sym_empty_statement] = STATE(366), - [sym_labeled_statement] = STATE(366), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1137), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(349), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(353), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(357), - [anon_sym_get] = ACTIONS(357), - [anon_sym_set] = ACTIONS(357), - [sym_preproc] = ACTIONS(359), - }, - [28] = { - [sym_export_statement] = STATE(1250), - [sym_declaration] = STATE(1250), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(1250), - [sym_expression_statement] = STATE(1250), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_switch_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_for_in_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_do_statement] = STATE(1250), - [sym_try_statement] = STATE(1250), - [sym_with_statement] = STATE(1250), - [sym_break_statement] = STATE(1250), - [sym_continue_statement] = STATE(1250), - [sym_debugger_statement] = STATE(1250), - [sym_return_statement] = STATE(1250), - [sym_throw_statement] = STATE(1250), - [sym_empty_statement] = STATE(1250), - [sym_labeled_statement] = STATE(1250), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1137), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(349), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(353), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(357), - [anon_sym_get] = ACTIONS(357), - [anon_sym_set] = ACTIONS(357), - [sym_preproc] = ACTIONS(361), - }, - [29] = { - [sym_export_statement] = STATE(373), - [sym_declaration] = STATE(373), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_switch_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_for_in_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_with_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_debugger_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_empty_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1145), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(363), - }, - [30] = { - [sym_export_statement] = STATE(366), - [sym_declaration] = STATE(366), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(366), - [sym_expression_statement] = STATE(366), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_switch_statement] = STATE(366), - [sym_for_statement] = STATE(366), - [sym_for_in_statement] = STATE(366), - [sym_while_statement] = STATE(366), - [sym_do_statement] = STATE(366), - [sym_try_statement] = STATE(366), - [sym_with_statement] = STATE(366), - [sym_break_statement] = STATE(366), - [sym_continue_statement] = STATE(366), - [sym_debugger_statement] = STATE(366), - [sym_return_statement] = STATE(366), - [sym_throw_statement] = STATE(366), - [sym_empty_statement] = STATE(366), - [sym_labeled_statement] = STATE(366), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1145), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(359), - }, - [31] = { [sym_export_statement] = STATE(367), [sym_declaration] = STATE(367), - [sym_import] = STATE(736), + [sym_import] = STATE(1130), [sym_import_statement] = STATE(367), + [sym_statement] = STATE(7), [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), [sym_statement_block] = STATE(367), [sym_if_statement] = STATE(367), [sym_switch_statement] = STATE(367), @@ -12010,974 +11959,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(367), [sym_empty_statement] = STATE(367), [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1145), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(365), - }, - [32] = { - [sym_export_statement] = STATE(378), - [sym_declaration] = STATE(378), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(378), - [sym_expression_statement] = STATE(378), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(378), - [sym_if_statement] = STATE(378), - [sym_switch_statement] = STATE(378), - [sym_for_statement] = STATE(378), - [sym_for_in_statement] = STATE(378), - [sym_while_statement] = STATE(378), - [sym_do_statement] = STATE(378), - [sym_try_statement] = STATE(378), - [sym_with_statement] = STATE(378), - [sym_break_statement] = STATE(378), - [sym_continue_statement] = STATE(378), - [sym_debugger_statement] = STATE(378), - [sym_return_statement] = STATE(378), - [sym_throw_statement] = STATE(378), - [sym_empty_statement] = STATE(378), - [sym_labeled_statement] = STATE(378), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1137), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(349), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(353), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(357), - [anon_sym_get] = ACTIONS(357), - [anon_sym_set] = ACTIONS(357), - [sym_preproc] = ACTIONS(367), - }, - [33] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(359), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1145), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(369), - }, - [34] = { - [sym_export_statement] = STATE(422), - [sym_declaration] = STATE(422), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(422), - [sym_expression_statement] = STATE(422), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(422), - [sym_if_statement] = STATE(422), - [sym_switch_statement] = STATE(422), - [sym_for_statement] = STATE(422), - [sym_for_in_statement] = STATE(422), - [sym_while_statement] = STATE(422), - [sym_do_statement] = STATE(422), - [sym_try_statement] = STATE(422), - [sym_with_statement] = STATE(422), - [sym_break_statement] = STATE(422), - [sym_continue_statement] = STATE(422), - [sym_debugger_statement] = STATE(422), - [sym_return_statement] = STATE(422), - [sym_throw_statement] = STATE(422), - [sym_empty_statement] = STATE(422), - [sym_labeled_statement] = STATE(422), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1137), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(349), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(353), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(357), - [anon_sym_get] = ACTIONS(357), - [anon_sym_set] = ACTIONS(357), - [sym_preproc] = ACTIONS(371), - }, - [35] = { - [sym_export_statement] = STATE(402), - [sym_declaration] = STATE(401), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(400), - [sym_expression_statement] = STATE(399), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(398), - [sym_if_statement] = STATE(397), - [sym_switch_statement] = STATE(396), - [sym_for_statement] = STATE(395), - [sym_for_in_statement] = STATE(394), - [sym_while_statement] = STATE(393), - [sym_do_statement] = STATE(392), - [sym_try_statement] = STATE(390), - [sym_with_statement] = STATE(389), - [sym_break_statement] = STATE(388), - [sym_continue_statement] = STATE(387), - [sym_debugger_statement] = STATE(386), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(330), - [sym_empty_statement] = STATE(383), - [sym_labeled_statement] = STATE(382), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1145), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(373), - }, - [36] = { - [sym_export_statement] = STATE(1590), - [sym_declaration] = STATE(1590), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(1590), - [sym_expression_statement] = STATE(1590), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(1590), - [sym_if_statement] = STATE(1590), - [sym_switch_statement] = STATE(1590), - [sym_for_statement] = STATE(1590), - [sym_for_in_statement] = STATE(1590), - [sym_while_statement] = STATE(1590), - [sym_do_statement] = STATE(1590), - [sym_try_statement] = STATE(1590), - [sym_with_statement] = STATE(1590), - [sym_break_statement] = STATE(1590), - [sym_continue_statement] = STATE(1590), - [sym_debugger_statement] = STATE(1590), - [sym_return_statement] = STATE(1590), - [sym_throw_statement] = STATE(1590), - [sym_empty_statement] = STATE(1590), - [sym_labeled_statement] = STATE(1590), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1137), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(349), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(353), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(357), - [anon_sym_get] = ACTIONS(357), - [anon_sym_set] = ACTIONS(357), - [sym_preproc] = ACTIONS(375), - }, - [37] = { - [sym_export_statement] = STATE(331), - [sym_declaration] = STATE(332), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(333), - [sym_expression_statement] = STATE(334), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(335), - [sym_if_statement] = STATE(336), - [sym_switch_statement] = STATE(337), - [sym_for_statement] = STATE(338), - [sym_for_in_statement] = STATE(339), - [sym_while_statement] = STATE(329), - [sym_do_statement] = STATE(341), - [sym_try_statement] = STATE(342), - [sym_with_statement] = STATE(343), - [sym_break_statement] = STATE(344), - [sym_continue_statement] = STATE(345), - [sym_debugger_statement] = STATE(346), - [sym_return_statement] = STATE(347), - [sym_throw_statement] = STATE(348), - [sym_empty_statement] = STATE(349), - [sym_labeled_statement] = STATE(350), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1145), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(377), - }, - [38] = { - [sym_export_statement] = STATE(310), - [sym_declaration] = STATE(310), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(310), - [sym_expression_statement] = STATE(310), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(310), - [sym_if_statement] = STATE(310), - [sym_switch_statement] = STATE(310), - [sym_for_statement] = STATE(310), - [sym_for_in_statement] = STATE(310), - [sym_while_statement] = STATE(310), - [sym_do_statement] = STATE(310), - [sym_try_statement] = STATE(310), - [sym_with_statement] = STATE(310), - [sym_break_statement] = STATE(310), - [sym_continue_statement] = STATE(310), - [sym_debugger_statement] = STATE(310), - [sym_return_statement] = STATE(310), - [sym_throw_statement] = STATE(310), - [sym_empty_statement] = STATE(310), - [sym_labeled_statement] = STATE(310), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1145), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(379), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1195), + [ts_builtin_sym_end] = ACTIONS(329), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [39] = { + [24] = { [sym_export_statement] = STATE(367), [sym_declaration] = STATE(367), - [sym_import] = STATE(736), + [sym_import] = STATE(1130), [sym_import_statement] = STATE(367), + [sym_statement] = STATE(16), [sym_expression_statement] = STATE(367), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), [sym_statement_block] = STATE(367), [sym_if_statement] = STATE(367), [sym_switch_statement] = STATE(367), @@ -12994,2190 +12085,5484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(367), [sym_empty_statement] = STATE(367), [sym_labeled_statement] = STATE(367), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1137), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(349), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(353), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(357), - [anon_sym_get] = ACTIONS(357), - [anon_sym_set] = ACTIONS(357), - [sym_preproc] = ACTIONS(365), - }, - [40] = { - [sym_export_statement] = STATE(422), - [sym_declaration] = STATE(422), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(422), - [sym_expression_statement] = STATE(422), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(422), - [sym_if_statement] = STATE(422), - [sym_switch_statement] = STATE(422), - [sym_for_statement] = STATE(422), - [sym_for_in_statement] = STATE(422), - [sym_while_statement] = STATE(422), - [sym_do_statement] = STATE(422), - [sym_try_statement] = STATE(422), - [sym_with_statement] = STATE(422), - [sym_break_statement] = STATE(422), - [sym_continue_statement] = STATE(422), - [sym_debugger_statement] = STATE(422), - [sym_return_statement] = STATE(422), - [sym_throw_statement] = STATE(422), - [sym_empty_statement] = STATE(422), - [sym_labeled_statement] = STATE(422), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1145), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(371), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [41] = { - [sym_export_statement] = STATE(331), - [sym_declaration] = STATE(332), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(333), - [sym_expression_statement] = STATE(334), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(335), - [sym_if_statement] = STATE(336), - [sym_switch_statement] = STATE(337), - [sym_for_statement] = STATE(338), - [sym_for_in_statement] = STATE(339), - [sym_while_statement] = STATE(329), - [sym_do_statement] = STATE(341), - [sym_try_statement] = STATE(342), - [sym_with_statement] = STATE(343), - [sym_break_statement] = STATE(344), - [sym_continue_statement] = STATE(345), - [sym_debugger_statement] = STATE(346), - [sym_return_statement] = STATE(347), - [sym_throw_statement] = STATE(348), - [sym_empty_statement] = STATE(349), - [sym_labeled_statement] = STATE(350), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1137), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(349), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(353), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(357), - [anon_sym_get] = ACTIONS(357), - [anon_sym_set] = ACTIONS(357), - [sym_preproc] = ACTIONS(377), + [25] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(26), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [42] = { - [sym_export_statement] = STATE(378), - [sym_declaration] = STATE(378), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(378), - [sym_expression_statement] = STATE(378), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(378), - [sym_if_statement] = STATE(378), - [sym_switch_statement] = STATE(378), - [sym_for_statement] = STATE(378), - [sym_for_in_statement] = STATE(378), - [sym_while_statement] = STATE(378), - [sym_do_statement] = STATE(378), - [sym_try_statement] = STATE(378), - [sym_with_statement] = STATE(378), - [sym_break_statement] = STATE(378), - [sym_continue_statement] = STATE(378), - [sym_debugger_statement] = STATE(378), - [sym_return_statement] = STATE(378), - [sym_throw_statement] = STATE(378), - [sym_empty_statement] = STATE(378), - [sym_labeled_statement] = STATE(378), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1145), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(367), + [26] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(7), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [43] = { - [sym_export_statement] = STATE(359), - [sym_declaration] = STATE(359), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(359), - [sym_expression_statement] = STATE(359), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(359), - [sym_if_statement] = STATE(359), - [sym_switch_statement] = STATE(359), - [sym_for_statement] = STATE(359), - [sym_for_in_statement] = STATE(359), - [sym_while_statement] = STATE(359), - [sym_do_statement] = STATE(359), - [sym_try_statement] = STATE(359), - [sym_with_statement] = STATE(359), - [sym_break_statement] = STATE(359), - [sym_continue_statement] = STATE(359), - [sym_debugger_statement] = STATE(359), - [sym_return_statement] = STATE(359), - [sym_throw_statement] = STATE(359), - [sym_empty_statement] = STATE(359), - [sym_labeled_statement] = STATE(359), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1137), + [27] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(390), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), [sym_identifier] = ACTIONS(337), [anon_sym_export] = ACTIONS(339), [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(349), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(353), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(357), - [anon_sym_get] = ACTIONS(357), - [anon_sym_set] = ACTIONS(357), - [sym_preproc] = ACTIONS(369), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [44] = { - [sym_export_statement] = STATE(373), - [sym_declaration] = STATE(373), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(373), - [sym_expression_statement] = STATE(373), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(373), - [sym_if_statement] = STATE(373), - [sym_switch_statement] = STATE(373), - [sym_for_statement] = STATE(373), - [sym_for_in_statement] = STATE(373), - [sym_while_statement] = STATE(373), - [sym_do_statement] = STATE(373), - [sym_try_statement] = STATE(373), - [sym_with_statement] = STATE(373), - [sym_break_statement] = STATE(373), - [sym_continue_statement] = STATE(373), - [sym_debugger_statement] = STATE(373), - [sym_return_statement] = STATE(373), - [sym_throw_statement] = STATE(373), - [sym_empty_statement] = STATE(373), - [sym_labeled_statement] = STATE(373), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1137), + [28] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(405), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [29] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(406), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [30] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(386), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), [sym_identifier] = ACTIONS(337), [anon_sym_export] = ACTIONS(339), [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(349), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(353), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(357), - [anon_sym_get] = ACTIONS(357), - [anon_sym_set] = ACTIONS(357), - [sym_preproc] = ACTIONS(363), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [45] = { - [sym_export_statement] = STATE(402), - [sym_declaration] = STATE(401), - [sym_import] = STATE(736), - [sym_import_statement] = STATE(400), - [sym_expression_statement] = STATE(399), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_statement_block] = STATE(398), - [sym_if_statement] = STATE(397), - [sym_switch_statement] = STATE(396), - [sym_for_statement] = STATE(395), - [sym_for_in_statement] = STATE(394), - [sym_while_statement] = STATE(393), - [sym_do_statement] = STATE(392), - [sym_try_statement] = STATE(390), - [sym_with_statement] = STATE(389), - [sym_break_statement] = STATE(388), - [sym_continue_statement] = STATE(387), - [sym_debugger_statement] = STATE(386), - [sym_return_statement] = STATE(385), - [sym_throw_statement] = STATE(330), - [sym_empty_statement] = STATE(383), - [sym_labeled_statement] = STATE(382), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1137), + [31] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(347), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [32] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(354), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), [sym_identifier] = ACTIONS(337), [anon_sym_export] = ACTIONS(339), [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_import] = ACTIONS(15), - [anon_sym_var] = ACTIONS(17), - [anon_sym_let] = ACTIONS(19), - [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(343), - [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(345), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(347), - [anon_sym_do] = ACTIONS(33), - [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(349), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(353), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(357), - [anon_sym_get] = ACTIONS(357), - [anon_sym_set] = ACTIONS(357), - [sym_preproc] = ACTIONS(373), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [46] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(568), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_STAR] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(389), - [anon_sym_await] = ACTIONS(395), - [anon_sym_in] = ACTIONS(397), - [anon_sym_COLON] = ACTIONS(389), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(389), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [sym_optional_chain] = ACTIONS(389), - [anon_sym_new] = ACTIONS(413), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_GT_GT_GT] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_STAR_STAR] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_QMARK_QMARK] = ACTIONS(389), - [anon_sym_instanceof] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(415), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), - [sym__ternary_qmark] = ACTIONS(389), - }, - [47] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(652), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_STAR] = ACTIONS(437), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_in] = ACTIONS(397), - [anon_sym_of] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(389), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [sym_optional_chain] = ACTIONS(389), - [anon_sym_new] = ACTIONS(455), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_GT_GT_GT] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_STAR_STAR] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_QMARK_QMARK] = ACTIONS(389), - [anon_sym_instanceof] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(457), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - [sym__automatic_semicolon] = ACTIONS(389), - [sym__ternary_qmark] = ACTIONS(389), + [33] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(359), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [48] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(647), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_STAR] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_COMMA] = ACTIONS(389), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_in] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(389), - [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(397), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [sym_optional_chain] = ACTIONS(389), - [anon_sym_new] = ACTIONS(67), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_GT_GT_GT] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_STAR_STAR] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_QMARK_QMARK] = ACTIONS(389), - [anon_sym_instanceof] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), - [sym__automatic_semicolon] = ACTIONS(389), - [sym__ternary_qmark] = ACTIONS(389), + [34] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(390), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [49] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(823), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_STAR] = ACTIONS(477), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_in] = ACTIONS(397), - [anon_sym_of] = ACTIONS(397), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [sym_optional_chain] = ACTIONS(389), - [anon_sym_new] = ACTIONS(491), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_GT_GT_GT] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_STAR_STAR] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_QMARK_QMARK] = ACTIONS(389), - [anon_sym_instanceof] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), - [sym__ternary_qmark] = ACTIONS(389), + [35] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(362), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [50] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(771), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_STAR] = ACTIONS(505), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_in] = ACTIONS(397), - [anon_sym_COLON] = ACTIONS(389), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [sym_optional_chain] = ACTIONS(389), - [anon_sym_new] = ACTIONS(513), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_GT_GT_GT] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_STAR_STAR] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(397), - [anon_sym_BANG_EQ_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_QMARK_QMARK] = ACTIONS(389), - [anon_sym_instanceof] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(515), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), - [sym__ternary_qmark] = ACTIONS(389), + [36] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(401), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [51] = { - [ts_builtin_sym_end] = ACTIONS(523), - [sym_identifier] = ACTIONS(525), - [anon_sym_export] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_default] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(529), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_import] = ACTIONS(525), - [anon_sym_var] = ACTIONS(525), - [anon_sym_let] = ACTIONS(525), - [anon_sym_const] = ACTIONS(525), - [anon_sym_else] = ACTIONS(525), - [anon_sym_if] = ACTIONS(525), - [anon_sym_switch] = ACTIONS(525), - [anon_sym_for] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_await] = ACTIONS(525), - [anon_sym_in] = ACTIONS(527), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(525), - [anon_sym_try] = ACTIONS(525), - [anon_sym_with] = ACTIONS(525), - [anon_sym_break] = ACTIONS(525), - [anon_sym_continue] = ACTIONS(525), - [anon_sym_debugger] = ACTIONS(525), - [anon_sym_return] = ACTIONS(525), - [anon_sym_throw] = ACTIONS(525), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_case] = ACTIONS(525), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_EQ] = ACTIONS(531), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_LTtemplate_GT] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(525), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_DOT] = ACTIONS(527), - [anon_sym_class] = ACTIONS(525), - [anon_sym_async] = ACTIONS(525), - [anon_sym_function] = ACTIONS(525), - [sym_optional_chain] = ACTIONS(529), - [anon_sym_new] = ACTIONS(525), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_GT_GT] = ACTIONS(527), - [anon_sym_GT_GT_GT] = ACTIONS(529), - [anon_sym_LT_LT] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(529), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(529), - [anon_sym_STAR_STAR] = ACTIONS(529), - [anon_sym_LT_EQ] = ACTIONS(529), - [anon_sym_EQ_EQ] = ACTIONS(527), - [anon_sym_EQ_EQ_EQ] = ACTIONS(529), - [anon_sym_BANG_EQ] = ACTIONS(527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(529), - [anon_sym_GT_EQ] = ACTIONS(529), - [anon_sym_QMARK_QMARK] = ACTIONS(529), - [anon_sym_instanceof] = ACTIONS(527), - [anon_sym_BANG] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(523), - [anon_sym_typeof] = ACTIONS(525), - [anon_sym_void] = ACTIONS(525), - [anon_sym_delete] = ACTIONS(525), - [anon_sym_PLUS_PLUS] = ACTIONS(523), - [anon_sym_DASH_DASH] = ACTIONS(523), - [anon_sym_DQUOTE] = ACTIONS(523), - [anon_sym_SQUOTE] = ACTIONS(523), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(523), - [sym_number] = ACTIONS(523), - [sym_this] = ACTIONS(525), - [sym_super] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_null] = ACTIONS(525), - [sym_undefined] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(523), - [anon_sym_static] = ACTIONS(525), - [anon_sym_get] = ACTIONS(525), - [anon_sym_set] = ACTIONS(525), - [sym_preproc] = ACTIONS(523), - [sym__automatic_semicolon] = ACTIONS(533), - [sym__ternary_qmark] = ACTIONS(529), + [37] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(386), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [52] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(704), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1251), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_spread_element] = STATE(1259), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1224), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_repeat1] = STATE(1265), - [aux_sym_array_pattern_repeat1] = STATE(1266), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_RBRACK] = ACTIONS(541), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), + [38] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(373), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [53] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(740), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1251), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_spread_element] = STATE(1304), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1224), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_repeat1] = STATE(1308), - [aux_sym_array_pattern_repeat1] = STATE(1266), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_RBRACK] = ACTIONS(547), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), + [39] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(392), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [54] = { - [sym_declaration] = STATE(426), - [sym_import] = STATE(736), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(774), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1228), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(549), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [40] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(401), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [55] = { - [ts_builtin_sym_end] = ACTIONS(551), - [sym_identifier] = ACTIONS(553), - [anon_sym_export] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(555), - [anon_sym_default] = ACTIONS(553), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_RBRACE] = ACTIONS(551), - [anon_sym_import] = ACTIONS(553), - [anon_sym_var] = ACTIONS(553), - [anon_sym_let] = ACTIONS(553), - [anon_sym_const] = ACTIONS(553), - [anon_sym_else] = ACTIONS(553), - [anon_sym_if] = ACTIONS(553), - [anon_sym_switch] = ACTIONS(553), - [anon_sym_for] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(551), - [anon_sym_await] = ACTIONS(553), - [anon_sym_in] = ACTIONS(555), - [anon_sym_while] = ACTIONS(553), - [anon_sym_do] = ACTIONS(553), - [anon_sym_try] = ACTIONS(553), - [anon_sym_with] = ACTIONS(553), - [anon_sym_break] = ACTIONS(553), - [anon_sym_continue] = ACTIONS(553), - [anon_sym_debugger] = ACTIONS(553), - [anon_sym_return] = ACTIONS(553), - [anon_sym_throw] = ACTIONS(553), - [anon_sym_SEMI] = ACTIONS(551), - [anon_sym_case] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(553), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_LTtemplate_GT] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(553), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_SLASH] = ACTIONS(553), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_class] = ACTIONS(553), - [anon_sym_async] = ACTIONS(553), - [anon_sym_function] = ACTIONS(553), - [sym_optional_chain] = ACTIONS(557), - [anon_sym_new] = ACTIONS(553), - [anon_sym_AMP_AMP] = ACTIONS(557), - [anon_sym_PIPE_PIPE] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(557), - [anon_sym_LT_LT] = ACTIONS(557), - [anon_sym_AMP] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(557), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_PLUS] = ACTIONS(553), - [anon_sym_DASH] = ACTIONS(553), - [anon_sym_PERCENT] = ACTIONS(557), - [anon_sym_STAR_STAR] = ACTIONS(557), - [anon_sym_LT_EQ] = ACTIONS(557), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_EQ_EQ_EQ] = ACTIONS(557), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ_EQ] = ACTIONS(557), - [anon_sym_GT_EQ] = ACTIONS(557), - [anon_sym_QMARK_QMARK] = ACTIONS(557), - [anon_sym_instanceof] = ACTIONS(555), - [anon_sym_BANG] = ACTIONS(553), - [anon_sym_TILDE] = ACTIONS(551), - [anon_sym_typeof] = ACTIONS(553), - [anon_sym_void] = ACTIONS(553), - [anon_sym_delete] = ACTIONS(553), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_DQUOTE] = ACTIONS(551), - [anon_sym_SQUOTE] = ACTIONS(551), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(551), - [sym_number] = ACTIONS(551), - [sym_this] = ACTIONS(553), - [sym_super] = ACTIONS(553), - [sym_true] = ACTIONS(553), - [sym_false] = ACTIONS(553), - [sym_null] = ACTIONS(553), - [sym_undefined] = ACTIONS(553), - [anon_sym_AT] = ACTIONS(551), - [anon_sym_static] = ACTIONS(553), - [anon_sym_get] = ACTIONS(553), - [anon_sym_set] = ACTIONS(553), - [sym_preproc] = ACTIONS(551), - [sym__automatic_semicolon] = ACTIONS(559), - [sym__ternary_qmark] = ACTIONS(557), + [41] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(393), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [56] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(740), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1251), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_spread_element] = STATE(1304), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1224), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_repeat1] = STATE(1308), - [aux_sym_array_pattern_repeat1] = STATE(1266), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_RBRACK] = ACTIONS(561), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), + [42] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(418), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [57] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(740), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1251), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_spread_element] = STATE(1304), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1224), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_repeat1] = STATE(1308), - [aux_sym_array_pattern_repeat1] = STATE(1266), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_RBRACK] = ACTIONS(563), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), + [43] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(405), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [58] = { - [ts_builtin_sym_end] = ACTIONS(523), - [sym_identifier] = ACTIONS(525), - [anon_sym_export] = ACTIONS(525), - [anon_sym_STAR] = ACTIONS(525), - [anon_sym_default] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_import] = ACTIONS(525), - [anon_sym_var] = ACTIONS(525), - [anon_sym_let] = ACTIONS(525), - [anon_sym_const] = ACTIONS(525), - [anon_sym_else] = ACTIONS(525), - [anon_sym_if] = ACTIONS(525), - [anon_sym_switch] = ACTIONS(525), - [anon_sym_for] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_await] = ACTIONS(525), - [anon_sym_in] = ACTIONS(525), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(525), - [anon_sym_try] = ACTIONS(525), - [anon_sym_with] = ACTIONS(525), - [anon_sym_break] = ACTIONS(525), - [anon_sym_continue] = ACTIONS(525), - [anon_sym_debugger] = ACTIONS(525), - [anon_sym_return] = ACTIONS(525), - [anon_sym_throw] = ACTIONS(525), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_case] = ACTIONS(525), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_LTtemplate_GT] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(525), - [anon_sym_GT] = ACTIONS(525), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_DOT] = ACTIONS(525), - [anon_sym_class] = ACTIONS(525), - [anon_sym_async] = ACTIONS(525), - [anon_sym_function] = ACTIONS(525), - [sym_optional_chain] = ACTIONS(523), - [anon_sym_new] = ACTIONS(525), - [anon_sym_AMP_AMP] = ACTIONS(523), - [anon_sym_PIPE_PIPE] = ACTIONS(523), - [anon_sym_GT_GT] = ACTIONS(525), - [anon_sym_GT_GT_GT] = ACTIONS(523), - [anon_sym_LT_LT] = ACTIONS(523), - [anon_sym_AMP] = ACTIONS(525), - [anon_sym_CARET] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(525), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(523), - [anon_sym_STAR_STAR] = ACTIONS(523), - [anon_sym_LT_EQ] = ACTIONS(523), - [anon_sym_EQ_EQ] = ACTIONS(525), - [anon_sym_EQ_EQ_EQ] = ACTIONS(523), - [anon_sym_BANG_EQ] = ACTIONS(525), - [anon_sym_BANG_EQ_EQ] = ACTIONS(523), - [anon_sym_GT_EQ] = ACTIONS(523), - [anon_sym_QMARK_QMARK] = ACTIONS(523), - [anon_sym_instanceof] = ACTIONS(525), - [anon_sym_BANG] = ACTIONS(525), - [anon_sym_TILDE] = ACTIONS(523), - [anon_sym_typeof] = ACTIONS(525), - [anon_sym_void] = ACTIONS(525), - [anon_sym_delete] = ACTIONS(525), - [anon_sym_PLUS_PLUS] = ACTIONS(523), - [anon_sym_DASH_DASH] = ACTIONS(523), - [anon_sym_DQUOTE] = ACTIONS(523), - [anon_sym_SQUOTE] = ACTIONS(523), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(523), - [sym_number] = ACTIONS(523), - [sym_this] = ACTIONS(525), - [sym_super] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_null] = ACTIONS(525), - [sym_undefined] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(523), - [anon_sym_static] = ACTIONS(525), - [anon_sym_get] = ACTIONS(525), - [anon_sym_set] = ACTIONS(525), - [sym_preproc] = ACTIONS(523), - [sym__automatic_semicolon] = ACTIONS(565), - [sym__ternary_qmark] = ACTIONS(523), + [44] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(373), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), }, - [59] = { - [sym_import] = STATE(736), - [sym_expression_statement] = STATE(100), - [sym_variable_declaration] = STATE(100), - [sym_lexical_declaration] = STATE(100), - [sym_empty_statement] = STATE(100), - [sym_parenthesized_expression] = STATE(483), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1275), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1275), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1275), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(567), - [anon_sym_export] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), - [anon_sym_import] = ACTIONS(441), - [anon_sym_var] = ACTIONS(573), - [anon_sym_let] = ACTIONS(575), - [anon_sym_const] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(579), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(581), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(569), - [anon_sym_get] = ACTIONS(569), - [anon_sym_set] = ACTIONS(569), + [45] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(1648), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [46] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(406), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [47] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(391), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [48] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(414), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [49] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(359), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [50] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(418), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [51] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(393), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [52] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(354), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [53] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(392), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [54] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(391), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [55] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(414), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [56] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(1348), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1175), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(343), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(345), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(347), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(349), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(351), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(355), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(359), + [anon_sym_get] = ACTIONS(359), + [anon_sym_set] = ACTIONS(359), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [57] = { + [sym_export_statement] = STATE(367), + [sym_declaration] = STATE(367), + [sym_import] = STATE(1130), + [sym_import_statement] = STATE(367), + [sym_statement] = STATE(362), + [sym_expression_statement] = STATE(367), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_statement_block] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_switch_statement] = STATE(367), + [sym_for_statement] = STATE(367), + [sym_for_in_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_do_statement] = STATE(367), + [sym_try_statement] = STATE(367), + [sym_with_statement] = STATE(367), + [sym_break_statement] = STATE(367), + [sym_continue_statement] = STATE(367), + [sym_debugger_statement] = STATE(367), + [sym_return_statement] = STATE(367), + [sym_throw_statement] = STATE(367), + [sym_empty_statement] = STATE(367), + [sym_labeled_statement] = STATE(367), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(665), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1420), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_LBRACE] = ACTIONS(15), + [anon_sym_import] = ACTIONS(17), + [anon_sym_with] = ACTIONS(19), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(23), + [anon_sym_const] = ACTIONS(25), + [anon_sym_if] = ACTIONS(27), + [anon_sym_switch] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_await] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_try] = ACTIONS(43), + [anon_sym_break] = ACTIONS(45), + [anon_sym_continue] = ACTIONS(47), + [anon_sym_debugger] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_throw] = ACTIONS(53), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(87), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [sym_preproc] = ACTIONS(97), + [sym_html_comment] = ACTIONS(5), + }, + [58] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(571), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_RPAREN] = ACTIONS(369), + [anon_sym_await] = ACTIONS(375), + [anon_sym_in] = ACTIONS(377), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_RBRACK] = ACTIONS(369), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [sym_optional_chain] = ACTIONS(369), + [anon_sym_new] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_GT_GT_GT] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_STAR_STAR] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ_EQ] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_QMARK_QMARK] = ACTIONS(369), + [anon_sym_instanceof] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(399), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym__ternary_qmark] = ACTIONS(369), + [sym_html_comment] = ACTIONS(5), + }, + [59] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(674), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_STAR] = ACTIONS(421), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_await] = ACTIONS(427), + [anon_sym_in] = ACTIONS(377), + [anon_sym_of] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [sym_optional_chain] = ACTIONS(369), + [anon_sym_new] = ACTIONS(437), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_GT_GT_GT] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_STAR_STAR] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ_EQ] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_QMARK_QMARK] = ACTIONS(369), + [anon_sym_instanceof] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(439), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym__automatic_semicolon] = ACTIONS(369), + [sym__ternary_qmark] = ACTIONS(369), + [sym_html_comment] = ACTIONS(5), }, [60] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(647), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_STAR] = ACTIONS(455), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_await] = ACTIONS(37), + [anon_sym_in] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [sym_optional_chain] = ACTIONS(369), + [anon_sym_new] = ACTIONS(73), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_GT_GT_GT] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_STAR_STAR] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ_EQ] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_QMARK_QMARK] = ACTIONS(369), + [anon_sym_instanceof] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(75), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym__automatic_semicolon] = ACTIONS(369), + [sym__ternary_qmark] = ACTIONS(369), + [sym_html_comment] = ACTIONS(5), + }, + [61] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(817), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_STAR] = ACTIONS(465), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_in] = ACTIONS(377), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [sym_optional_chain] = ACTIONS(369), + [anon_sym_new] = ACTIONS(477), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_GT_GT_GT] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_STAR_STAR] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ_EQ] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_QMARK_QMARK] = ACTIONS(369), + [anon_sym_instanceof] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(479), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym__ternary_qmark] = ACTIONS(369), + [sym_html_comment] = ACTIONS(5), + }, + [62] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(857), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_in] = ACTIONS(377), + [anon_sym_of] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [sym_optional_chain] = ACTIONS(369), + [anon_sym_new] = ACTIONS(501), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_GT_GT_GT] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_AMP] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(369), + [anon_sym_PIPE] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_PERCENT] = ACTIONS(369), + [anon_sym_STAR_STAR] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ_EQ] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_QMARK_QMARK] = ACTIONS(369), + [anon_sym_instanceof] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(503), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym__ternary_qmark] = ACTIONS(369), + [sym_html_comment] = ACTIONS(5), + }, + [63] = { + [ts_builtin_sym_end] = ACTIONS(515), + [sym_identifier] = ACTIONS(517), + [anon_sym_export] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(519), + [anon_sym_default] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(521), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_import] = ACTIONS(517), + [anon_sym_with] = ACTIONS(517), + [anon_sym_var] = ACTIONS(517), + [anon_sym_let] = ACTIONS(517), + [anon_sym_const] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_await] = ACTIONS(517), + [anon_sym_in] = ACTIONS(519), + [anon_sym_while] = ACTIONS(517), + [anon_sym_do] = ACTIONS(517), + [anon_sym_try] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_return] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_case] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(517), + [anon_sym_EQ] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(515), + [sym_glimmer_opening_tag] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_GT] = ACTIONS(519), + [anon_sym_DOT] = ACTIONS(519), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(515), + [anon_sym_class] = ACTIONS(517), + [anon_sym_async] = ACTIONS(517), + [anon_sym_function] = ACTIONS(517), + [sym_optional_chain] = ACTIONS(521), + [anon_sym_new] = ACTIONS(517), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_GT_GT_GT] = ACTIONS(521), + [anon_sym_LT_LT] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_CARET] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(519), + [anon_sym_PLUS] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(517), + [anon_sym_PERCENT] = ACTIONS(521), + [anon_sym_STAR_STAR] = ACTIONS(521), + [anon_sym_LT_EQ] = ACTIONS(521), + [anon_sym_EQ_EQ] = ACTIONS(519), + [anon_sym_EQ_EQ_EQ] = ACTIONS(521), + [anon_sym_BANG_EQ] = ACTIONS(519), + [anon_sym_BANG_EQ_EQ] = ACTIONS(521), + [anon_sym_GT_EQ] = ACTIONS(521), + [anon_sym_QMARK_QMARK] = ACTIONS(521), + [anon_sym_instanceof] = ACTIONS(519), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(515), + [anon_sym_typeof] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_delete] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(515), + [sym_number] = ACTIONS(515), + [sym_private_property_identifier] = ACTIONS(517), + [sym_this] = ACTIONS(517), + [sym_super] = ACTIONS(517), + [sym_true] = ACTIONS(517), + [sym_false] = ACTIONS(517), + [sym_null] = ACTIONS(517), + [sym_undefined] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [sym_preproc] = ACTIONS(515), + [sym__automatic_semicolon] = ACTIONS(525), + [sym__ternary_qmark] = ACTIONS(521), + [sym_html_comment] = ACTIONS(5), + }, + [64] = { + [ts_builtin_sym_end] = ACTIONS(515), + [sym_identifier] = ACTIONS(517), + [anon_sym_export] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(517), + [anon_sym_default] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_import] = ACTIONS(517), + [anon_sym_with] = ACTIONS(517), + [anon_sym_var] = ACTIONS(517), + [anon_sym_let] = ACTIONS(517), + [anon_sym_const] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_await] = ACTIONS(517), + [anon_sym_in] = ACTIONS(517), + [anon_sym_while] = ACTIONS(517), + [anon_sym_do] = ACTIONS(517), + [anon_sym_try] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_return] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_case] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(515), + [sym_glimmer_opening_tag] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_GT] = ACTIONS(517), + [anon_sym_DOT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(515), + [anon_sym_class] = ACTIONS(517), + [anon_sym_async] = ACTIONS(517), + [anon_sym_function] = ACTIONS(517), + [sym_optional_chain] = ACTIONS(515), + [anon_sym_new] = ACTIONS(517), + [anon_sym_AMP_AMP] = ACTIONS(515), + [anon_sym_PIPE_PIPE] = ACTIONS(515), + [anon_sym_GT_GT] = ACTIONS(517), + [anon_sym_GT_GT_GT] = ACTIONS(515), + [anon_sym_LT_LT] = ACTIONS(515), + [anon_sym_AMP] = ACTIONS(517), + [anon_sym_CARET] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(517), + [anon_sym_PERCENT] = ACTIONS(515), + [anon_sym_STAR_STAR] = ACTIONS(515), + [anon_sym_LT_EQ] = ACTIONS(515), + [anon_sym_EQ_EQ] = ACTIONS(517), + [anon_sym_EQ_EQ_EQ] = ACTIONS(515), + [anon_sym_BANG_EQ] = ACTIONS(517), + [anon_sym_BANG_EQ_EQ] = ACTIONS(515), + [anon_sym_GT_EQ] = ACTIONS(515), + [anon_sym_QMARK_QMARK] = ACTIONS(515), + [anon_sym_instanceof] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_TILDE] = ACTIONS(515), + [anon_sym_typeof] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_delete] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(515), + [sym_number] = ACTIONS(515), + [sym_private_property_identifier] = ACTIONS(517), + [sym_this] = ACTIONS(517), + [sym_super] = ACTIONS(517), + [sym_true] = ACTIONS(517), + [sym_false] = ACTIONS(517), + [sym_null] = ACTIONS(517), + [sym_undefined] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [sym_preproc] = ACTIONS(515), + [sym__automatic_semicolon] = ACTIONS(527), + [sym__ternary_qmark] = ACTIONS(515), + [sym_html_comment] = ACTIONS(5), + }, + [65] = { + [ts_builtin_sym_end] = ACTIONS(529), + [sym_identifier] = ACTIONS(531), + [anon_sym_export] = ACTIONS(531), + [anon_sym_STAR] = ACTIONS(533), + [anon_sym_default] = ACTIONS(531), + [anon_sym_LBRACE] = ACTIONS(529), + [anon_sym_COMMA] = ACTIONS(535), + [anon_sym_RBRACE] = ACTIONS(529), + [anon_sym_import] = ACTIONS(531), + [anon_sym_with] = ACTIONS(531), + [anon_sym_var] = ACTIONS(531), + [anon_sym_let] = ACTIONS(531), + [anon_sym_const] = ACTIONS(531), + [anon_sym_else] = ACTIONS(531), + [anon_sym_if] = ACTIONS(531), + [anon_sym_switch] = ACTIONS(531), + [anon_sym_for] = ACTIONS(531), + [anon_sym_LPAREN] = ACTIONS(529), + [anon_sym_SEMI] = ACTIONS(529), + [anon_sym_await] = ACTIONS(531), + [anon_sym_in] = ACTIONS(533), + [anon_sym_while] = ACTIONS(531), + [anon_sym_do] = ACTIONS(531), + [anon_sym_try] = ACTIONS(531), + [anon_sym_break] = ACTIONS(531), + [anon_sym_continue] = ACTIONS(531), + [anon_sym_debugger] = ACTIONS(531), + [anon_sym_return] = ACTIONS(531), + [anon_sym_throw] = ACTIONS(531), + [anon_sym_case] = ACTIONS(531), + [anon_sym_yield] = ACTIONS(531), + [anon_sym_LBRACK] = ACTIONS(529), + [sym_glimmer_opening_tag] = ACTIONS(529), + [anon_sym_LT] = ACTIONS(531), + [anon_sym_GT] = ACTIONS(533), + [anon_sym_DOT] = ACTIONS(533), + [anon_sym_DQUOTE] = ACTIONS(529), + [anon_sym_SQUOTE] = ACTIONS(529), + [anon_sym_class] = ACTIONS(531), + [anon_sym_async] = ACTIONS(531), + [anon_sym_function] = ACTIONS(531), + [sym_optional_chain] = ACTIONS(535), + [anon_sym_new] = ACTIONS(531), + [anon_sym_AMP_AMP] = ACTIONS(535), + [anon_sym_PIPE_PIPE] = ACTIONS(535), + [anon_sym_GT_GT] = ACTIONS(533), + [anon_sym_GT_GT_GT] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(533), + [anon_sym_CARET] = ACTIONS(535), + [anon_sym_PIPE] = ACTIONS(533), + [anon_sym_PLUS] = ACTIONS(531), + [anon_sym_DASH] = ACTIONS(531), + [anon_sym_SLASH] = ACTIONS(531), + [anon_sym_PERCENT] = ACTIONS(535), + [anon_sym_STAR_STAR] = ACTIONS(535), + [anon_sym_LT_EQ] = ACTIONS(535), + [anon_sym_EQ_EQ] = ACTIONS(533), + [anon_sym_EQ_EQ_EQ] = ACTIONS(535), + [anon_sym_BANG_EQ] = ACTIONS(533), + [anon_sym_BANG_EQ_EQ] = ACTIONS(535), + [anon_sym_GT_EQ] = ACTIONS(535), + [anon_sym_QMARK_QMARK] = ACTIONS(535), + [anon_sym_instanceof] = ACTIONS(533), + [anon_sym_BANG] = ACTIONS(531), + [anon_sym_TILDE] = ACTIONS(529), + [anon_sym_typeof] = ACTIONS(531), + [anon_sym_void] = ACTIONS(531), + [anon_sym_delete] = ACTIONS(531), + [anon_sym_PLUS_PLUS] = ACTIONS(529), + [anon_sym_DASH_DASH] = ACTIONS(529), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(529), + [sym_number] = ACTIONS(529), + [sym_private_property_identifier] = ACTIONS(531), + [sym_this] = ACTIONS(531), + [sym_super] = ACTIONS(531), + [sym_true] = ACTIONS(531), + [sym_false] = ACTIONS(531), + [sym_null] = ACTIONS(531), + [sym_undefined] = ACTIONS(531), + [anon_sym_AT] = ACTIONS(529), + [anon_sym_static] = ACTIONS(531), + [anon_sym_get] = ACTIONS(531), + [anon_sym_set] = ACTIONS(531), + [sym_preproc] = ACTIONS(529), + [sym__automatic_semicolon] = ACTIONS(537), + [sym__ternary_qmark] = ACTIONS(535), + [sym_html_comment] = ACTIONS(5), + }, + [66] = { + [ts_builtin_sym_end] = ACTIONS(539), + [sym_identifier] = ACTIONS(541), + [anon_sym_export] = ACTIONS(541), + [anon_sym_STAR] = ACTIONS(543), + [anon_sym_default] = ACTIONS(541), + [anon_sym_LBRACE] = ACTIONS(539), + [anon_sym_COMMA] = ACTIONS(545), + [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_import] = ACTIONS(541), + [anon_sym_with] = ACTIONS(541), + [anon_sym_var] = ACTIONS(541), + [anon_sym_let] = ACTIONS(541), + [anon_sym_const] = ACTIONS(541), + [anon_sym_else] = ACTIONS(541), + [anon_sym_if] = ACTIONS(541), + [anon_sym_switch] = ACTIONS(541), + [anon_sym_for] = ACTIONS(541), + [anon_sym_LPAREN] = ACTIONS(539), + [anon_sym_SEMI] = ACTIONS(539), + [anon_sym_await] = ACTIONS(541), + [anon_sym_in] = ACTIONS(543), + [anon_sym_while] = ACTIONS(541), + [anon_sym_do] = ACTIONS(541), + [anon_sym_try] = ACTIONS(541), + [anon_sym_break] = ACTIONS(541), + [anon_sym_continue] = ACTIONS(541), + [anon_sym_debugger] = ACTIONS(541), + [anon_sym_return] = ACTIONS(541), + [anon_sym_throw] = ACTIONS(541), + [anon_sym_case] = ACTIONS(541), + [anon_sym_yield] = ACTIONS(541), + [anon_sym_LBRACK] = ACTIONS(539), + [sym_glimmer_opening_tag] = ACTIONS(539), + [anon_sym_LT] = ACTIONS(541), + [anon_sym_GT] = ACTIONS(543), + [anon_sym_DOT] = ACTIONS(543), + [anon_sym_DQUOTE] = ACTIONS(539), + [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_class] = ACTIONS(541), + [anon_sym_async] = ACTIONS(541), + [anon_sym_function] = ACTIONS(541), + [sym_optional_chain] = ACTIONS(545), + [anon_sym_new] = ACTIONS(541), + [anon_sym_AMP_AMP] = ACTIONS(545), + [anon_sym_PIPE_PIPE] = ACTIONS(545), + [anon_sym_GT_GT] = ACTIONS(543), + [anon_sym_GT_GT_GT] = ACTIONS(545), + [anon_sym_LT_LT] = ACTIONS(545), + [anon_sym_AMP] = ACTIONS(543), + [anon_sym_CARET] = ACTIONS(545), + [anon_sym_PIPE] = ACTIONS(543), + [anon_sym_PLUS] = ACTIONS(541), + [anon_sym_DASH] = ACTIONS(541), + [anon_sym_SLASH] = ACTIONS(541), + [anon_sym_PERCENT] = ACTIONS(545), + [anon_sym_STAR_STAR] = ACTIONS(545), + [anon_sym_LT_EQ] = ACTIONS(545), + [anon_sym_EQ_EQ] = ACTIONS(543), + [anon_sym_EQ_EQ_EQ] = ACTIONS(545), + [anon_sym_BANG_EQ] = ACTIONS(543), + [anon_sym_BANG_EQ_EQ] = ACTIONS(545), + [anon_sym_GT_EQ] = ACTIONS(545), + [anon_sym_QMARK_QMARK] = ACTIONS(545), + [anon_sym_instanceof] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(541), + [anon_sym_TILDE] = ACTIONS(539), + [anon_sym_typeof] = ACTIONS(541), + [anon_sym_void] = ACTIONS(541), + [anon_sym_delete] = ACTIONS(541), + [anon_sym_PLUS_PLUS] = ACTIONS(539), + [anon_sym_DASH_DASH] = ACTIONS(539), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(539), + [sym_number] = ACTIONS(539), + [sym_private_property_identifier] = ACTIONS(541), + [sym_this] = ACTIONS(541), + [sym_super] = ACTIONS(541), + [sym_true] = ACTIONS(541), + [sym_false] = ACTIONS(541), + [sym_null] = ACTIONS(541), + [sym_undefined] = ACTIONS(541), + [anon_sym_AT] = ACTIONS(539), + [anon_sym_static] = ACTIONS(541), + [anon_sym_get] = ACTIONS(541), + [anon_sym_set] = ACTIONS(541), + [sym_preproc] = ACTIONS(539), + [sym__automatic_semicolon] = ACTIONS(547), + [sym__ternary_qmark] = ACTIONS(545), + [sym_html_comment] = ACTIONS(5), + }, + [67] = { + [ts_builtin_sym_end] = ACTIONS(549), + [sym_identifier] = ACTIONS(551), + [anon_sym_export] = ACTIONS(551), + [anon_sym_STAR] = ACTIONS(553), + [anon_sym_default] = ACTIONS(551), + [anon_sym_LBRACE] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(555), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_import] = ACTIONS(551), + [anon_sym_with] = ACTIONS(551), + [anon_sym_var] = ACTIONS(551), + [anon_sym_let] = ACTIONS(551), + [anon_sym_const] = ACTIONS(551), + [anon_sym_else] = ACTIONS(551), + [anon_sym_if] = ACTIONS(551), + [anon_sym_switch] = ACTIONS(551), + [anon_sym_for] = ACTIONS(551), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_await] = ACTIONS(551), + [anon_sym_in] = ACTIONS(553), + [anon_sym_while] = ACTIONS(551), + [anon_sym_do] = ACTIONS(551), + [anon_sym_try] = ACTIONS(551), + [anon_sym_break] = ACTIONS(551), + [anon_sym_continue] = ACTIONS(551), + [anon_sym_debugger] = ACTIONS(551), + [anon_sym_return] = ACTIONS(551), + [anon_sym_throw] = ACTIONS(551), + [anon_sym_case] = ACTIONS(551), + [anon_sym_yield] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(549), + [sym_glimmer_opening_tag] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(551), + [anon_sym_GT] = ACTIONS(553), + [anon_sym_DOT] = ACTIONS(553), + [anon_sym_DQUOTE] = ACTIONS(549), + [anon_sym_SQUOTE] = ACTIONS(549), + [anon_sym_class] = ACTIONS(551), + [anon_sym_async] = ACTIONS(551), + [anon_sym_function] = ACTIONS(551), + [sym_optional_chain] = ACTIONS(555), + [anon_sym_new] = ACTIONS(551), + [anon_sym_AMP_AMP] = ACTIONS(555), + [anon_sym_PIPE_PIPE] = ACTIONS(555), + [anon_sym_GT_GT] = ACTIONS(553), + [anon_sym_GT_GT_GT] = ACTIONS(555), + [anon_sym_LT_LT] = ACTIONS(555), + [anon_sym_AMP] = ACTIONS(553), + [anon_sym_CARET] = ACTIONS(555), + [anon_sym_PIPE] = ACTIONS(553), + [anon_sym_PLUS] = ACTIONS(551), + [anon_sym_DASH] = ACTIONS(551), + [anon_sym_SLASH] = ACTIONS(551), + [anon_sym_PERCENT] = ACTIONS(555), + [anon_sym_STAR_STAR] = ACTIONS(555), + [anon_sym_LT_EQ] = ACTIONS(555), + [anon_sym_EQ_EQ] = ACTIONS(553), + [anon_sym_EQ_EQ_EQ] = ACTIONS(555), + [anon_sym_BANG_EQ] = ACTIONS(553), + [anon_sym_BANG_EQ_EQ] = ACTIONS(555), + [anon_sym_GT_EQ] = ACTIONS(555), + [anon_sym_QMARK_QMARK] = ACTIONS(555), + [anon_sym_instanceof] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(551), + [anon_sym_TILDE] = ACTIONS(549), + [anon_sym_typeof] = ACTIONS(551), + [anon_sym_void] = ACTIONS(551), + [anon_sym_delete] = ACTIONS(551), + [anon_sym_PLUS_PLUS] = ACTIONS(549), + [anon_sym_DASH_DASH] = ACTIONS(549), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(549), + [sym_number] = ACTIONS(549), + [sym_private_property_identifier] = ACTIONS(551), + [sym_this] = ACTIONS(551), + [sym_super] = ACTIONS(551), + [sym_true] = ACTIONS(551), + [sym_false] = ACTIONS(551), + [sym_null] = ACTIONS(551), + [sym_undefined] = ACTIONS(551), + [anon_sym_AT] = ACTIONS(549), + [anon_sym_static] = ACTIONS(551), + [anon_sym_get] = ACTIONS(551), + [anon_sym_set] = ACTIONS(551), + [sym_preproc] = ACTIONS(549), + [sym__automatic_semicolon] = ACTIONS(557), + [sym__ternary_qmark] = ACTIONS(555), + [sym_html_comment] = ACTIONS(5), + }, + [68] = { + [ts_builtin_sym_end] = ACTIONS(559), + [sym_identifier] = ACTIONS(561), + [anon_sym_export] = ACTIONS(561), + [anon_sym_STAR] = ACTIONS(563), + [anon_sym_default] = ACTIONS(561), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(565), + [anon_sym_RBRACE] = ACTIONS(559), + [anon_sym_import] = ACTIONS(561), + [anon_sym_with] = ACTIONS(561), + [anon_sym_var] = ACTIONS(561), + [anon_sym_let] = ACTIONS(561), + [anon_sym_const] = ACTIONS(561), + [anon_sym_else] = ACTIONS(561), + [anon_sym_if] = ACTIONS(561), + [anon_sym_switch] = ACTIONS(561), + [anon_sym_for] = ACTIONS(561), + [anon_sym_LPAREN] = ACTIONS(559), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_await] = ACTIONS(561), + [anon_sym_in] = ACTIONS(563), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(561), + [anon_sym_try] = ACTIONS(561), + [anon_sym_break] = ACTIONS(561), + [anon_sym_continue] = ACTIONS(561), + [anon_sym_debugger] = ACTIONS(561), + [anon_sym_return] = ACTIONS(561), + [anon_sym_throw] = ACTIONS(561), + [anon_sym_case] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(561), + [anon_sym_LBRACK] = ACTIONS(559), + [sym_glimmer_opening_tag] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(561), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_DQUOTE] = ACTIONS(559), + [anon_sym_SQUOTE] = ACTIONS(559), + [anon_sym_class] = ACTIONS(561), + [anon_sym_async] = ACTIONS(561), + [anon_sym_function] = ACTIONS(561), + [sym_optional_chain] = ACTIONS(565), + [anon_sym_new] = ACTIONS(561), + [anon_sym_AMP_AMP] = ACTIONS(565), + [anon_sym_PIPE_PIPE] = ACTIONS(565), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(565), + [anon_sym_LT_LT] = ACTIONS(565), + [anon_sym_AMP] = ACTIONS(563), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(561), + [anon_sym_DASH] = ACTIONS(561), + [anon_sym_SLASH] = ACTIONS(561), + [anon_sym_PERCENT] = ACTIONS(565), + [anon_sym_STAR_STAR] = ACTIONS(565), + [anon_sym_LT_EQ] = ACTIONS(565), + [anon_sym_EQ_EQ] = ACTIONS(563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(565), + [anon_sym_BANG_EQ] = ACTIONS(563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(565), + [anon_sym_GT_EQ] = ACTIONS(565), + [anon_sym_QMARK_QMARK] = ACTIONS(565), + [anon_sym_instanceof] = ACTIONS(563), + [anon_sym_BANG] = ACTIONS(561), + [anon_sym_TILDE] = ACTIONS(559), + [anon_sym_typeof] = ACTIONS(561), + [anon_sym_void] = ACTIONS(561), + [anon_sym_delete] = ACTIONS(561), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(559), + [sym_number] = ACTIONS(559), + [sym_private_property_identifier] = ACTIONS(561), + [sym_this] = ACTIONS(561), + [sym_super] = ACTIONS(561), + [sym_true] = ACTIONS(561), + [sym_false] = ACTIONS(561), + [sym_null] = ACTIONS(561), + [sym_undefined] = ACTIONS(561), + [anon_sym_AT] = ACTIONS(559), + [anon_sym_static] = ACTIONS(561), + [anon_sym_get] = ACTIONS(561), + [anon_sym_set] = ACTIONS(561), + [sym_preproc] = ACTIONS(559), + [sym__automatic_semicolon] = ACTIONS(567), + [sym__ternary_qmark] = ACTIONS(565), + [sym_html_comment] = ACTIONS(5), + }, + [69] = { + [ts_builtin_sym_end] = ACTIONS(569), + [sym_identifier] = ACTIONS(571), + [anon_sym_export] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_default] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(569), + [anon_sym_import] = ACTIONS(571), + [anon_sym_with] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_let] = ACTIONS(571), + [anon_sym_const] = ACTIONS(571), + [anon_sym_else] = ACTIONS(571), + [anon_sym_if] = ACTIONS(571), + [anon_sym_switch] = ACTIONS(571), + [anon_sym_for] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_await] = ACTIONS(571), + [anon_sym_in] = ACTIONS(571), + [anon_sym_while] = ACTIONS(571), + [anon_sym_do] = ACTIONS(571), + [anon_sym_try] = ACTIONS(571), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_debugger] = ACTIONS(571), + [anon_sym_return] = ACTIONS(571), + [anon_sym_throw] = ACTIONS(571), + [anon_sym_case] = ACTIONS(571), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(569), + [sym_glimmer_opening_tag] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_class] = ACTIONS(571), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(571), + [sym_optional_chain] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_GT_GT_GT] = ACTIONS(569), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_STAR_STAR] = ACTIONS(569), + [anon_sym_LT_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(569), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(569), + [anon_sym_QMARK_QMARK] = ACTIONS(569), + [anon_sym_instanceof] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_TILDE] = ACTIONS(569), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(569), + [anon_sym_DASH_DASH] = ACTIONS(569), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(569), + [sym_number] = ACTIONS(569), + [sym_private_property_identifier] = ACTIONS(571), + [sym_this] = ACTIONS(571), + [sym_super] = ACTIONS(571), + [sym_true] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [sym_null] = ACTIONS(571), + [sym_undefined] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(569), + [anon_sym_static] = ACTIONS(571), + [anon_sym_get] = ACTIONS(571), + [anon_sym_set] = ACTIONS(571), + [sym_preproc] = ACTIONS(569), + [sym__automatic_semicolon] = ACTIONS(569), + [sym__ternary_qmark] = ACTIONS(569), + [sym_html_comment] = ACTIONS(5), + }, + [70] = { + [ts_builtin_sym_end] = ACTIONS(573), + [sym_identifier] = ACTIONS(575), + [anon_sym_export] = ACTIONS(575), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_default] = ACTIONS(575), + [anon_sym_LBRACE] = ACTIONS(573), + [anon_sym_COMMA] = ACTIONS(579), + [anon_sym_RBRACE] = ACTIONS(573), + [anon_sym_import] = ACTIONS(575), + [anon_sym_with] = ACTIONS(575), + [anon_sym_var] = ACTIONS(575), + [anon_sym_let] = ACTIONS(575), + [anon_sym_const] = ACTIONS(575), + [anon_sym_else] = ACTIONS(575), + [anon_sym_if] = ACTIONS(575), + [anon_sym_switch] = ACTIONS(575), + [anon_sym_for] = ACTIONS(575), + [anon_sym_LPAREN] = ACTIONS(573), + [anon_sym_SEMI] = ACTIONS(573), + [anon_sym_await] = ACTIONS(575), + [anon_sym_in] = ACTIONS(577), + [anon_sym_while] = ACTIONS(575), + [anon_sym_do] = ACTIONS(575), + [anon_sym_try] = ACTIONS(575), + [anon_sym_break] = ACTIONS(575), + [anon_sym_continue] = ACTIONS(575), + [anon_sym_debugger] = ACTIONS(575), + [anon_sym_return] = ACTIONS(575), + [anon_sym_throw] = ACTIONS(575), + [anon_sym_case] = ACTIONS(575), + [anon_sym_yield] = ACTIONS(575), + [anon_sym_LBRACK] = ACTIONS(573), + [sym_glimmer_opening_tag] = ACTIONS(573), + [anon_sym_LT] = ACTIONS(575), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DQUOTE] = ACTIONS(573), + [anon_sym_SQUOTE] = ACTIONS(573), + [anon_sym_class] = ACTIONS(575), + [anon_sym_async] = ACTIONS(575), + [anon_sym_function] = ACTIONS(575), + [sym_optional_chain] = ACTIONS(579), + [anon_sym_new] = ACTIONS(575), + [anon_sym_AMP_AMP] = ACTIONS(579), + [anon_sym_PIPE_PIPE] = ACTIONS(579), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_GT_GT_GT] = ACTIONS(579), + [anon_sym_LT_LT] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(579), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_PLUS] = ACTIONS(575), + [anon_sym_DASH] = ACTIONS(575), + [anon_sym_SLASH] = ACTIONS(575), + [anon_sym_PERCENT] = ACTIONS(579), + [anon_sym_STAR_STAR] = ACTIONS(579), + [anon_sym_LT_EQ] = ACTIONS(579), + [anon_sym_EQ_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ_EQ] = ACTIONS(579), + [anon_sym_BANG_EQ] = ACTIONS(577), + [anon_sym_BANG_EQ_EQ] = ACTIONS(579), + [anon_sym_GT_EQ] = ACTIONS(579), + [anon_sym_QMARK_QMARK] = ACTIONS(579), + [anon_sym_instanceof] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(575), + [anon_sym_TILDE] = ACTIONS(573), + [anon_sym_typeof] = ACTIONS(575), + [anon_sym_void] = ACTIONS(575), + [anon_sym_delete] = ACTIONS(575), + [anon_sym_PLUS_PLUS] = ACTIONS(573), + [anon_sym_DASH_DASH] = ACTIONS(573), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(573), + [sym_number] = ACTIONS(573), + [sym_private_property_identifier] = ACTIONS(575), + [sym_this] = ACTIONS(575), + [sym_super] = ACTIONS(575), + [sym_true] = ACTIONS(575), + [sym_false] = ACTIONS(575), + [sym_null] = ACTIONS(575), + [sym_undefined] = ACTIONS(575), + [anon_sym_AT] = ACTIONS(573), + [anon_sym_static] = ACTIONS(575), + [anon_sym_get] = ACTIONS(575), + [anon_sym_set] = ACTIONS(575), + [sym_preproc] = ACTIONS(573), + [sym__automatic_semicolon] = ACTIONS(581), + [sym__ternary_qmark] = ACTIONS(579), + [sym_html_comment] = ACTIONS(5), + }, + [71] = { [ts_builtin_sym_end] = ACTIONS(583), [sym_identifier] = ACTIONS(585), [anon_sym_export] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(587), [anon_sym_default] = ACTIONS(585), [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(583), + [anon_sym_COMMA] = ACTIONS(589), [anon_sym_RBRACE] = ACTIONS(583), [anon_sym_import] = ACTIONS(585), + [anon_sym_with] = ACTIONS(585), [anon_sym_var] = ACTIONS(585), [anon_sym_let] = ACTIONS(585), [anon_sym_const] = ACTIONS(585), @@ -15186,51 +17571,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(585), [anon_sym_for] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(583), + [anon_sym_SEMI] = ACTIONS(583), [anon_sym_await] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), + [anon_sym_in] = ACTIONS(587), [anon_sym_while] = ACTIONS(585), [anon_sym_do] = ACTIONS(585), [anon_sym_try] = ACTIONS(585), - [anon_sym_with] = ACTIONS(585), [anon_sym_break] = ACTIONS(585), [anon_sym_continue] = ACTIONS(585), [anon_sym_debugger] = ACTIONS(585), [anon_sym_return] = ACTIONS(585), [anon_sym_throw] = ACTIONS(585), - [anon_sym_SEMI] = ACTIONS(583), [anon_sym_case] = ACTIONS(585), [anon_sym_yield] = ACTIONS(585), [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_LTtemplate_GT] = ACTIONS(583), + [sym_glimmer_opening_tag] = ACTIONS(583), [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(587), + [anon_sym_DOT] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(583), + [anon_sym_SQUOTE] = ACTIONS(583), [anon_sym_class] = ACTIONS(585), [anon_sym_async] = ACTIONS(585), [anon_sym_function] = ACTIONS(585), - [sym_optional_chain] = ACTIONS(583), + [sym_optional_chain] = ACTIONS(589), [anon_sym_new] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(587), + [anon_sym_GT_GT_GT] = ACTIONS(589), + [anon_sym_LT_LT] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(587), + [anon_sym_CARET] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(587), [anon_sym_PLUS] = ACTIONS(585), [anon_sym_DASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(583), - [anon_sym_STAR_STAR] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_EQ_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_QMARK_QMARK] = ACTIONS(583), - [anon_sym_instanceof] = ACTIONS(585), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(589), + [anon_sym_STAR_STAR] = ACTIONS(589), + [anon_sym_LT_EQ] = ACTIONS(589), + [anon_sym_EQ_EQ] = ACTIONS(587), + [anon_sym_EQ_EQ_EQ] = ACTIONS(589), + [anon_sym_BANG_EQ] = ACTIONS(587), + [anon_sym_BANG_EQ_EQ] = ACTIONS(589), + [anon_sym_GT_EQ] = ACTIONS(589), + [anon_sym_QMARK_QMARK] = ACTIONS(589), + [anon_sym_instanceof] = ACTIONS(587), [anon_sym_BANG] = ACTIONS(585), [anon_sym_TILDE] = ACTIONS(583), [anon_sym_typeof] = ACTIONS(585), @@ -15238,11 +17624,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(585), [anon_sym_PLUS_PLUS] = ACTIONS(583), [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(583), - [anon_sym_SQUOTE] = ACTIONS(583), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(583), [sym_number] = ACTIONS(583), + [sym_private_property_identifier] = ACTIONS(585), [sym_this] = ACTIONS(585), [sym_super] = ACTIONS(585), [sym_true] = ACTIONS(585), @@ -15254,286 +17639,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(585), [anon_sym_set] = ACTIONS(585), [sym_preproc] = ACTIONS(583), - [sym__automatic_semicolon] = ACTIONS(583), - [sym__ternary_qmark] = ACTIONS(583), + [sym__automatic_semicolon] = ACTIONS(591), + [sym__ternary_qmark] = ACTIONS(589), + [sym_html_comment] = ACTIONS(5), }, - [61] = { - [ts_builtin_sym_end] = ACTIONS(587), - [sym_identifier] = ACTIONS(589), - [anon_sym_export] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_default] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(587), - [anon_sym_import] = ACTIONS(589), - [anon_sym_var] = ACTIONS(589), - [anon_sym_let] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_else] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_switch] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(587), - [anon_sym_await] = ACTIONS(589), - [anon_sym_in] = ACTIONS(591), - [anon_sym_while] = ACTIONS(589), - [anon_sym_do] = ACTIONS(589), - [anon_sym_try] = ACTIONS(589), - [anon_sym_with] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_debugger] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_throw] = ACTIONS(589), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_yield] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_LTtemplate_GT] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(591), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_class] = ACTIONS(589), - [anon_sym_async] = ACTIONS(589), - [anon_sym_function] = ACTIONS(589), - [sym_optional_chain] = ACTIONS(593), - [anon_sym_new] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(593), - [anon_sym_PIPE_PIPE] = ACTIONS(593), - [anon_sym_GT_GT] = ACTIONS(591), - [anon_sym_GT_GT_GT] = ACTIONS(593), - [anon_sym_LT_LT] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(591), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(593), - [anon_sym_STAR_STAR] = ACTIONS(593), - [anon_sym_LT_EQ] = ACTIONS(593), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_EQ_EQ_EQ] = ACTIONS(593), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ_EQ] = ACTIONS(593), - [anon_sym_GT_EQ] = ACTIONS(593), - [anon_sym_QMARK_QMARK] = ACTIONS(593), - [anon_sym_instanceof] = ACTIONS(591), - [anon_sym_BANG] = ACTIONS(589), - [anon_sym_TILDE] = ACTIONS(587), - [anon_sym_typeof] = ACTIONS(589), - [anon_sym_void] = ACTIONS(589), - [anon_sym_delete] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(587), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_DQUOTE] = ACTIONS(587), - [anon_sym_SQUOTE] = ACTIONS(587), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(587), - [sym_number] = ACTIONS(587), - [sym_this] = ACTIONS(589), - [sym_super] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_null] = ACTIONS(589), - [sym_undefined] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(587), - [anon_sym_static] = ACTIONS(589), - [anon_sym_get] = ACTIONS(589), - [anon_sym_set] = ACTIONS(589), - [sym_preproc] = ACTIONS(587), - [sym__automatic_semicolon] = ACTIONS(595), - [sym__ternary_qmark] = ACTIONS(593), + [72] = { + [ts_builtin_sym_end] = ACTIONS(569), + [sym_identifier] = ACTIONS(571), + [anon_sym_export] = ACTIONS(571), + [anon_sym_STAR] = ACTIONS(571), + [anon_sym_default] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(569), + [anon_sym_import] = ACTIONS(571), + [anon_sym_with] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_let] = ACTIONS(571), + [anon_sym_const] = ACTIONS(571), + [anon_sym_else] = ACTIONS(571), + [anon_sym_if] = ACTIONS(571), + [anon_sym_switch] = ACTIONS(571), + [anon_sym_for] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_await] = ACTIONS(571), + [anon_sym_in] = ACTIONS(571), + [anon_sym_while] = ACTIONS(571), + [anon_sym_do] = ACTIONS(571), + [anon_sym_try] = ACTIONS(571), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_debugger] = ACTIONS(571), + [anon_sym_return] = ACTIONS(571), + [anon_sym_throw] = ACTIONS(571), + [anon_sym_case] = ACTIONS(571), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(569), + [sym_glimmer_opening_tag] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_DOT] = ACTIONS(571), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_class] = ACTIONS(571), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(571), + [sym_optional_chain] = ACTIONS(569), + [anon_sym_new] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(569), + [anon_sym_PIPE_PIPE] = ACTIONS(569), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_GT_GT_GT] = ACTIONS(569), + [anon_sym_LT_LT] = ACTIONS(569), + [anon_sym_AMP] = ACTIONS(571), + [anon_sym_CARET] = ACTIONS(569), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_PERCENT] = ACTIONS(569), + [anon_sym_STAR_STAR] = ACTIONS(569), + [anon_sym_LT_EQ] = ACTIONS(569), + [anon_sym_EQ_EQ] = ACTIONS(571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(569), + [anon_sym_BANG_EQ] = ACTIONS(571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(569), + [anon_sym_GT_EQ] = ACTIONS(569), + [anon_sym_QMARK_QMARK] = ACTIONS(569), + [anon_sym_instanceof] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(571), + [anon_sym_TILDE] = ACTIONS(569), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(569), + [anon_sym_DASH_DASH] = ACTIONS(569), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(569), + [sym_number] = ACTIONS(569), + [sym_private_property_identifier] = ACTIONS(571), + [sym_this] = ACTIONS(571), + [sym_super] = ACTIONS(571), + [sym_true] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [sym_null] = ACTIONS(571), + [sym_undefined] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(569), + [anon_sym_static] = ACTIONS(571), + [anon_sym_get] = ACTIONS(571), + [anon_sym_set] = ACTIONS(571), + [sym_preproc] = ACTIONS(569), + [sym__automatic_semicolon] = ACTIONS(593), + [sym__ternary_qmark] = ACTIONS(569), + [sym_html_comment] = ACTIONS(5), }, - [62] = { - [ts_builtin_sym_end] = ACTIONS(597), - [sym_identifier] = ACTIONS(599), - [anon_sym_export] = ACTIONS(599), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_default] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(597), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_import] = ACTIONS(599), - [anon_sym_var] = ACTIONS(599), - [anon_sym_let] = ACTIONS(599), - [anon_sym_const] = ACTIONS(599), - [anon_sym_else] = ACTIONS(599), - [anon_sym_if] = ACTIONS(599), - [anon_sym_switch] = ACTIONS(599), - [anon_sym_for] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_await] = ACTIONS(599), - [anon_sym_in] = ACTIONS(599), - [anon_sym_while] = ACTIONS(599), - [anon_sym_do] = ACTIONS(599), - [anon_sym_try] = ACTIONS(599), - [anon_sym_with] = ACTIONS(599), - [anon_sym_break] = ACTIONS(599), - [anon_sym_continue] = ACTIONS(599), - [anon_sym_debugger] = ACTIONS(599), - [anon_sym_return] = ACTIONS(599), - [anon_sym_throw] = ACTIONS(599), - [anon_sym_SEMI] = ACTIONS(597), - [anon_sym_case] = ACTIONS(599), - [anon_sym_yield] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(597), - [anon_sym_LTtemplate_GT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_GT] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_class] = ACTIONS(599), - [anon_sym_async] = ACTIONS(599), - [anon_sym_function] = ACTIONS(599), - [sym_optional_chain] = ACTIONS(597), - [anon_sym_new] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(599), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(599), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(599), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_STAR_STAR] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_EQ_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_QMARK_QMARK] = ACTIONS(597), - [anon_sym_instanceof] = ACTIONS(599), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_typeof] = ACTIONS(599), - [anon_sym_void] = ACTIONS(599), - [anon_sym_delete] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_DQUOTE] = ACTIONS(597), - [anon_sym_SQUOTE] = ACTIONS(597), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(597), - [sym_number] = ACTIONS(597), - [sym_this] = ACTIONS(599), - [sym_super] = ACTIONS(599), - [sym_true] = ACTIONS(599), - [sym_false] = ACTIONS(599), - [sym_null] = ACTIONS(599), - [sym_undefined] = ACTIONS(599), - [anon_sym_AT] = ACTIONS(597), - [anon_sym_static] = ACTIONS(599), - [anon_sym_get] = ACTIONS(599), - [anon_sym_set] = ACTIONS(599), - [sym_preproc] = ACTIONS(597), - [sym__automatic_semicolon] = ACTIONS(597), - [sym__ternary_qmark] = ACTIONS(597), + [73] = { + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [anon_sym_export] = ACTIONS(597), + [anon_sym_STAR] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_import] = ACTIONS(597), + [anon_sym_with] = ACTIONS(597), + [anon_sym_var] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_else] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_await] = ACTIONS(597), + [anon_sym_in] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [anon_sym_do] = ACTIONS(597), + [anon_sym_try] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_debugger] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_throw] = ACTIONS(597), + [anon_sym_case] = ACTIONS(597), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [sym_glimmer_opening_tag] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_GT] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(595), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(597), + [anon_sym_function] = ACTIONS(597), + [sym_optional_chain] = ACTIONS(595), + [anon_sym_new] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(595), + [anon_sym_PIPE_PIPE] = ACTIONS(595), + [anon_sym_GT_GT] = ACTIONS(597), + [anon_sym_GT_GT_GT] = ACTIONS(595), + [anon_sym_LT_LT] = ACTIONS(595), + [anon_sym_AMP] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(595), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_PERCENT] = ACTIONS(595), + [anon_sym_STAR_STAR] = ACTIONS(595), + [anon_sym_LT_EQ] = ACTIONS(595), + [anon_sym_EQ_EQ] = ACTIONS(597), + [anon_sym_EQ_EQ_EQ] = ACTIONS(595), + [anon_sym_BANG_EQ] = ACTIONS(597), + [anon_sym_BANG_EQ_EQ] = ACTIONS(595), + [anon_sym_GT_EQ] = ACTIONS(595), + [anon_sym_QMARK_QMARK] = ACTIONS(595), + [anon_sym_instanceof] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(597), + [anon_sym_void] = ACTIONS(597), + [anon_sym_delete] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [sym_private_property_identifier] = ACTIONS(597), + [sym_this] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_null] = ACTIONS(597), + [sym_undefined] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(595), + [anon_sym_static] = ACTIONS(597), + [anon_sym_get] = ACTIONS(597), + [anon_sym_set] = ACTIONS(597), + [sym_preproc] = ACTIONS(595), + [sym__automatic_semicolon] = ACTIONS(595), + [sym__ternary_qmark] = ACTIONS(595), + [sym_html_comment] = ACTIONS(5), }, - [63] = { - [sym_declaration] = STATE(426), - [sym_import] = STATE(736), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(774), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1174), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), + [74] = { + [ts_builtin_sym_end] = ACTIONS(599), + [sym_identifier] = ACTIONS(601), + [anon_sym_export] = ACTIONS(601), + [anon_sym_STAR] = ACTIONS(601), + [anon_sym_default] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(599), + [anon_sym_COMMA] = ACTIONS(599), + [anon_sym_RBRACE] = ACTIONS(599), + [anon_sym_import] = ACTIONS(601), + [anon_sym_with] = ACTIONS(601), + [anon_sym_var] = ACTIONS(601), + [anon_sym_let] = ACTIONS(601), + [anon_sym_const] = ACTIONS(601), + [anon_sym_else] = ACTIONS(601), + [anon_sym_if] = ACTIONS(601), + [anon_sym_switch] = ACTIONS(601), + [anon_sym_for] = ACTIONS(601), + [anon_sym_LPAREN] = ACTIONS(599), + [anon_sym_SEMI] = ACTIONS(599), + [anon_sym_await] = ACTIONS(601), + [anon_sym_in] = ACTIONS(601), + [anon_sym_while] = ACTIONS(601), + [anon_sym_do] = ACTIONS(601), + [anon_sym_try] = ACTIONS(601), + [anon_sym_break] = ACTIONS(601), + [anon_sym_continue] = ACTIONS(601), + [anon_sym_debugger] = ACTIONS(601), + [anon_sym_return] = ACTIONS(601), + [anon_sym_throw] = ACTIONS(601), + [anon_sym_case] = ACTIONS(601), + [anon_sym_yield] = ACTIONS(601), + [anon_sym_LBRACK] = ACTIONS(599), + [sym_glimmer_opening_tag] = ACTIONS(599), + [anon_sym_LT] = ACTIONS(601), + [anon_sym_GT] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(601), + [anon_sym_DQUOTE] = ACTIONS(599), + [anon_sym_SQUOTE] = ACTIONS(599), + [anon_sym_class] = ACTIONS(601), [anon_sym_async] = ACTIONS(601), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [anon_sym_function] = ACTIONS(601), + [sym_optional_chain] = ACTIONS(599), + [anon_sym_new] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(599), + [anon_sym_PIPE_PIPE] = ACTIONS(599), + [anon_sym_GT_GT] = ACTIONS(601), + [anon_sym_GT_GT_GT] = ACTIONS(599), + [anon_sym_LT_LT] = ACTIONS(599), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_CARET] = ACTIONS(599), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_PLUS] = ACTIONS(601), + [anon_sym_DASH] = ACTIONS(601), + [anon_sym_SLASH] = ACTIONS(601), + [anon_sym_PERCENT] = ACTIONS(599), + [anon_sym_STAR_STAR] = ACTIONS(599), + [anon_sym_LT_EQ] = ACTIONS(599), + [anon_sym_EQ_EQ] = ACTIONS(601), + [anon_sym_EQ_EQ_EQ] = ACTIONS(599), + [anon_sym_BANG_EQ] = ACTIONS(601), + [anon_sym_BANG_EQ_EQ] = ACTIONS(599), + [anon_sym_GT_EQ] = ACTIONS(599), + [anon_sym_QMARK_QMARK] = ACTIONS(599), + [anon_sym_instanceof] = ACTIONS(601), + [anon_sym_BANG] = ACTIONS(601), + [anon_sym_TILDE] = ACTIONS(599), + [anon_sym_typeof] = ACTIONS(601), + [anon_sym_void] = ACTIONS(601), + [anon_sym_delete] = ACTIONS(601), + [anon_sym_PLUS_PLUS] = ACTIONS(599), + [anon_sym_DASH_DASH] = ACTIONS(599), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(599), + [sym_number] = ACTIONS(599), + [sym_private_property_identifier] = ACTIONS(601), + [sym_this] = ACTIONS(601), + [sym_super] = ACTIONS(601), + [sym_true] = ACTIONS(601), + [sym_false] = ACTIONS(601), + [sym_null] = ACTIONS(601), + [sym_undefined] = ACTIONS(601), + [anon_sym_AT] = ACTIONS(599), + [anon_sym_static] = ACTIONS(601), + [anon_sym_get] = ACTIONS(601), + [anon_sym_set] = ACTIONS(601), + [sym_preproc] = ACTIONS(599), + [sym__automatic_semicolon] = ACTIONS(599), + [sym__ternary_qmark] = ACTIONS(599), + [sym_html_comment] = ACTIONS(5), }, - [64] = { + [75] = { [ts_builtin_sym_end] = ACTIONS(603), [sym_identifier] = ACTIONS(605), [anon_sym_export] = ACTIONS(605), - [anon_sym_STAR] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(607), [anon_sym_default] = ACTIONS(605), [anon_sym_LBRACE] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), + [anon_sym_COMMA] = ACTIONS(609), [anon_sym_RBRACE] = ACTIONS(603), [anon_sym_import] = ACTIONS(605), + [anon_sym_with] = ACTIONS(605), [anon_sym_var] = ACTIONS(605), [anon_sym_let] = ACTIONS(605), [anon_sym_const] = ACTIONS(605), @@ -15542,51 +17935,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(605), [anon_sym_for] = ACTIONS(605), [anon_sym_LPAREN] = ACTIONS(603), + [anon_sym_SEMI] = ACTIONS(603), [anon_sym_await] = ACTIONS(605), - [anon_sym_in] = ACTIONS(605), + [anon_sym_in] = ACTIONS(607), [anon_sym_while] = ACTIONS(605), [anon_sym_do] = ACTIONS(605), [anon_sym_try] = ACTIONS(605), - [anon_sym_with] = ACTIONS(605), [anon_sym_break] = ACTIONS(605), [anon_sym_continue] = ACTIONS(605), [anon_sym_debugger] = ACTIONS(605), [anon_sym_return] = ACTIONS(605), [anon_sym_throw] = ACTIONS(605), - [anon_sym_SEMI] = ACTIONS(603), [anon_sym_case] = ACTIONS(605), [anon_sym_yield] = ACTIONS(605), [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_LTtemplate_GT] = ACTIONS(603), + [sym_glimmer_opening_tag] = ACTIONS(603), [anon_sym_LT] = ACTIONS(605), - [anon_sym_GT] = ACTIONS(605), - [anon_sym_SLASH] = ACTIONS(605), - [anon_sym_DOT] = ACTIONS(605), + [anon_sym_GT] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(607), + [anon_sym_DQUOTE] = ACTIONS(603), + [anon_sym_SQUOTE] = ACTIONS(603), [anon_sym_class] = ACTIONS(605), [anon_sym_async] = ACTIONS(605), [anon_sym_function] = ACTIONS(605), - [sym_optional_chain] = ACTIONS(603), + [sym_optional_chain] = ACTIONS(609), [anon_sym_new] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_GT_GT] = ACTIONS(605), - [anon_sym_GT_GT_GT] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(605), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_GT_GT] = ACTIONS(607), + [anon_sym_GT_GT_GT] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(609), + [anon_sym_AMP] = ACTIONS(607), + [anon_sym_CARET] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(607), [anon_sym_PLUS] = ACTIONS(605), [anon_sym_DASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_STAR_STAR] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_EQ_EQ] = ACTIONS(605), - [anon_sym_EQ_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(605), - [anon_sym_BANG_EQ_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_QMARK_QMARK] = ACTIONS(603), - [anon_sym_instanceof] = ACTIONS(605), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(609), + [anon_sym_STAR_STAR] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_EQ_EQ] = ACTIONS(607), + [anon_sym_EQ_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(607), + [anon_sym_BANG_EQ_EQ] = ACTIONS(609), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_QMARK_QMARK] = ACTIONS(609), + [anon_sym_instanceof] = ACTIONS(607), [anon_sym_BANG] = ACTIONS(605), [anon_sym_TILDE] = ACTIONS(603), [anon_sym_typeof] = ACTIONS(605), @@ -15594,11 +17988,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(605), [anon_sym_PLUS_PLUS] = ACTIONS(603), [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_DQUOTE] = ACTIONS(603), - [anon_sym_SQUOTE] = ACTIONS(603), - [sym_comment] = ACTIONS(3), + [sym_comment] = ACTIONS(5), [anon_sym_BQUOTE] = ACTIONS(603), [sym_number] = ACTIONS(603), + [sym_private_property_identifier] = ACTIONS(605), [sym_this] = ACTIONS(605), [sym_super] = ACTIONS(605), [sym_true] = ACTIONS(605), @@ -15610,21270 +18003,20682 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_get] = ACTIONS(605), [anon_sym_set] = ACTIONS(605), [sym_preproc] = ACTIONS(603), - [sym__automatic_semicolon] = ACTIONS(603), - [sym__ternary_qmark] = ACTIONS(603), + [sym__automatic_semicolon] = ACTIONS(611), + [sym__ternary_qmark] = ACTIONS(609), + [sym_html_comment] = ACTIONS(5), }, - [65] = { - [ts_builtin_sym_end] = ACTIONS(607), - [sym_identifier] = ACTIONS(609), - [anon_sym_export] = ACTIONS(609), - [anon_sym_STAR] = ACTIONS(611), - [anon_sym_default] = ACTIONS(609), - [anon_sym_LBRACE] = ACTIONS(607), + [76] = { + [ts_builtin_sym_end] = ACTIONS(613), + [sym_identifier] = ACTIONS(615), + [anon_sym_export] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_default] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(613), [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_import] = ACTIONS(609), - [anon_sym_var] = ACTIONS(609), - [anon_sym_let] = ACTIONS(609), - [anon_sym_const] = ACTIONS(609), - [anon_sym_else] = ACTIONS(609), - [anon_sym_if] = ACTIONS(609), - [anon_sym_switch] = ACTIONS(609), - [anon_sym_for] = ACTIONS(609), - [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_await] = ACTIONS(609), - [anon_sym_in] = ACTIONS(611), - [anon_sym_while] = ACTIONS(609), - [anon_sym_do] = ACTIONS(609), - [anon_sym_try] = ACTIONS(609), - [anon_sym_with] = ACTIONS(609), - [anon_sym_break] = ACTIONS(609), - [anon_sym_continue] = ACTIONS(609), - [anon_sym_debugger] = ACTIONS(609), - [anon_sym_return] = ACTIONS(609), - [anon_sym_throw] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_case] = ACTIONS(609), - [anon_sym_yield] = ACTIONS(609), - [anon_sym_LBRACK] = ACTIONS(607), - [anon_sym_LTtemplate_GT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(609), - [anon_sym_GT] = ACTIONS(611), - [anon_sym_SLASH] = ACTIONS(609), - [anon_sym_DOT] = ACTIONS(611), - [anon_sym_class] = ACTIONS(609), - [anon_sym_async] = ACTIONS(609), - [anon_sym_function] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_import] = ACTIONS(615), + [anon_sym_with] = ACTIONS(615), + [anon_sym_var] = ACTIONS(615), + [anon_sym_let] = ACTIONS(615), + [anon_sym_const] = ACTIONS(615), + [anon_sym_else] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_switch] = ACTIONS(615), + [anon_sym_for] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_await] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_while] = ACTIONS(615), + [anon_sym_do] = ACTIONS(615), + [anon_sym_try] = ACTIONS(615), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(615), + [anon_sym_debugger] = ACTIONS(615), + [anon_sym_return] = ACTIONS(615), + [anon_sym_throw] = ACTIONS(615), + [anon_sym_case] = ACTIONS(615), + [anon_sym_yield] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [sym_glimmer_opening_tag] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(613), + [anon_sym_SQUOTE] = ACTIONS(613), + [anon_sym_class] = ACTIONS(615), + [anon_sym_async] = ACTIONS(615), + [anon_sym_function] = ACTIONS(615), [sym_optional_chain] = ACTIONS(613), - [anon_sym_new] = ACTIONS(609), + [anon_sym_new] = ACTIONS(615), [anon_sym_AMP_AMP] = ACTIONS(613), [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(611), + [anon_sym_GT_GT] = ACTIONS(615), [anon_sym_GT_GT_GT] = ACTIONS(613), [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(611), + [anon_sym_AMP] = ACTIONS(615), [anon_sym_CARET] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(609), - [anon_sym_DASH] = ACTIONS(609), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), [anon_sym_PERCENT] = ACTIONS(613), [anon_sym_STAR_STAR] = ACTIONS(613), [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_EQ_EQ] = ACTIONS(611), + [anon_sym_EQ_EQ] = ACTIONS(615), [anon_sym_EQ_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(611), + [anon_sym_BANG_EQ] = ACTIONS(615), [anon_sym_BANG_EQ_EQ] = ACTIONS(613), [anon_sym_GT_EQ] = ACTIONS(613), [anon_sym_QMARK_QMARK] = ACTIONS(613), - [anon_sym_instanceof] = ACTIONS(611), - [anon_sym_BANG] = ACTIONS(609), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_typeof] = ACTIONS(609), - [anon_sym_void] = ACTIONS(609), - [anon_sym_delete] = ACTIONS(609), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_DQUOTE] = ACTIONS(607), - [anon_sym_SQUOTE] = ACTIONS(607), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(607), - [sym_number] = ACTIONS(607), - [sym_this] = ACTIONS(609), - [sym_super] = ACTIONS(609), - [sym_true] = ACTIONS(609), - [sym_false] = ACTIONS(609), - [sym_null] = ACTIONS(609), - [sym_undefined] = ACTIONS(609), - [anon_sym_AT] = ACTIONS(607), - [anon_sym_static] = ACTIONS(609), - [anon_sym_get] = ACTIONS(609), - [anon_sym_set] = ACTIONS(609), - [sym_preproc] = ACTIONS(607), - [sym__automatic_semicolon] = ACTIONS(615), + [anon_sym_instanceof] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_typeof] = ACTIONS(615), + [anon_sym_void] = ACTIONS(615), + [anon_sym_delete] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(613), + [sym_number] = ACTIONS(613), + [sym_private_property_identifier] = ACTIONS(615), + [sym_this] = ACTIONS(615), + [sym_super] = ACTIONS(615), + [sym_true] = ACTIONS(615), + [sym_false] = ACTIONS(615), + [sym_null] = ACTIONS(615), + [sym_undefined] = ACTIONS(615), + [anon_sym_AT] = ACTIONS(613), + [anon_sym_static] = ACTIONS(615), + [anon_sym_get] = ACTIONS(615), + [anon_sym_set] = ACTIONS(615), + [sym_preproc] = ACTIONS(613), + [sym__automatic_semicolon] = ACTIONS(613), [sym__ternary_qmark] = ACTIONS(613), - }, - [66] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(740), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1251), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_spread_element] = STATE(1304), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1224), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_repeat1] = STATE(1308), - [aux_sym_array_pattern_repeat1] = STATE(1266), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - }, - [67] = { - [sym_import] = STATE(736), - [sym_expression_statement] = STATE(99), - [sym_variable_declaration] = STATE(99), - [sym_lexical_declaration] = STATE(99), - [sym_empty_statement] = STATE(99), - [sym_parenthesized_expression] = STATE(483), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1275), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1275), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(483), - [sym_subscript_expression] = STATE(483), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1275), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(567), - [anon_sym_export] = ACTIONS(569), - [anon_sym_LBRACE] = ACTIONS(571), - [anon_sym_import] = ACTIONS(441), - [anon_sym_var] = ACTIONS(573), - [anon_sym_let] = ACTIONS(575), - [anon_sym_const] = ACTIONS(575), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(577), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(579), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(581), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(569), - [anon_sym_get] = ACTIONS(569), - [anon_sym_set] = ACTIONS(569), - }, - [68] = { - [sym_declaration] = STATE(354), - [sym_import] = STATE(736), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(815), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1174), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(61), - [anon_sym_async] = ACTIONS(601), - [anon_sym_function] = ACTIONS(65), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), - }, - [69] = { - [sym_declaration] = STATE(354), - [sym_import] = STATE(736), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(815), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_class_declaration] = STATE(358), - [sym_function] = STATE(736), - [sym_function_declaration] = STATE(358), - [sym_generator_function] = STATE(736), - [sym_generator_function_declaration] = STATE(358), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1228), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(351), - [anon_sym_async] = ACTIONS(549), - [anon_sym_function] = ACTIONS(355), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), - }, - [70] = { - [ts_builtin_sym_end] = ACTIONS(619), - [sym_identifier] = ACTIONS(621), - [anon_sym_export] = ACTIONS(621), - [anon_sym_STAR] = ACTIONS(623), - [anon_sym_default] = ACTIONS(621), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_COMMA] = ACTIONS(625), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_import] = ACTIONS(621), - [anon_sym_var] = ACTIONS(621), - [anon_sym_let] = ACTIONS(621), - [anon_sym_const] = ACTIONS(621), - [anon_sym_else] = ACTIONS(621), - [anon_sym_if] = ACTIONS(621), - [anon_sym_switch] = ACTIONS(621), - [anon_sym_for] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(619), - [anon_sym_await] = ACTIONS(621), - [anon_sym_in] = ACTIONS(623), - [anon_sym_while] = ACTIONS(621), - [anon_sym_do] = ACTIONS(621), - [anon_sym_try] = ACTIONS(621), - [anon_sym_with] = ACTIONS(621), - [anon_sym_break] = ACTIONS(621), - [anon_sym_continue] = ACTIONS(621), - [anon_sym_debugger] = ACTIONS(621), - [anon_sym_return] = ACTIONS(621), - [anon_sym_throw] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(619), - [anon_sym_case] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(621), - [anon_sym_LBRACK] = ACTIONS(619), - [anon_sym_LTtemplate_GT] = ACTIONS(619), - [anon_sym_LT] = ACTIONS(621), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_SLASH] = ACTIONS(621), - [anon_sym_DOT] = ACTIONS(623), - [anon_sym_class] = ACTIONS(621), - [anon_sym_async] = ACTIONS(621), - [anon_sym_function] = ACTIONS(621), - [sym_optional_chain] = ACTIONS(625), - [anon_sym_new] = ACTIONS(621), - [anon_sym_AMP_AMP] = ACTIONS(625), - [anon_sym_PIPE_PIPE] = ACTIONS(625), - [anon_sym_GT_GT] = ACTIONS(623), - [anon_sym_GT_GT_GT] = ACTIONS(625), - [anon_sym_LT_LT] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(623), - [anon_sym_CARET] = ACTIONS(625), - [anon_sym_PIPE] = ACTIONS(623), - [anon_sym_PLUS] = ACTIONS(621), - [anon_sym_DASH] = ACTIONS(621), - [anon_sym_PERCENT] = ACTIONS(625), - [anon_sym_STAR_STAR] = ACTIONS(625), - [anon_sym_LT_EQ] = ACTIONS(625), - [anon_sym_EQ_EQ] = ACTIONS(623), - [anon_sym_EQ_EQ_EQ] = ACTIONS(625), - [anon_sym_BANG_EQ] = ACTIONS(623), - [anon_sym_BANG_EQ_EQ] = ACTIONS(625), - [anon_sym_GT_EQ] = ACTIONS(625), - [anon_sym_QMARK_QMARK] = ACTIONS(625), - [anon_sym_instanceof] = ACTIONS(623), - [anon_sym_BANG] = ACTIONS(621), - [anon_sym_TILDE] = ACTIONS(619), - [anon_sym_typeof] = ACTIONS(621), - [anon_sym_void] = ACTIONS(621), - [anon_sym_delete] = ACTIONS(621), - [anon_sym_PLUS_PLUS] = ACTIONS(619), - [anon_sym_DASH_DASH] = ACTIONS(619), - [anon_sym_DQUOTE] = ACTIONS(619), - [anon_sym_SQUOTE] = ACTIONS(619), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(619), - [sym_number] = ACTIONS(619), - [sym_this] = ACTIONS(621), - [sym_super] = ACTIONS(621), - [sym_true] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [sym_null] = ACTIONS(621), - [sym_undefined] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(619), - [anon_sym_static] = ACTIONS(621), - [anon_sym_get] = ACTIONS(621), - [anon_sym_set] = ACTIONS(621), - [sym_preproc] = ACTIONS(619), - [sym__automatic_semicolon] = ACTIONS(627), - [sym__ternary_qmark] = ACTIONS(625), - }, - [71] = { - [ts_builtin_sym_end] = ACTIONS(629), - [sym_identifier] = ACTIONS(631), - [anon_sym_export] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_default] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_COMMA] = ACTIONS(635), - [anon_sym_RBRACE] = ACTIONS(629), - [anon_sym_import] = ACTIONS(631), - [anon_sym_var] = ACTIONS(631), - [anon_sym_let] = ACTIONS(631), - [anon_sym_const] = ACTIONS(631), - [anon_sym_else] = ACTIONS(631), - [anon_sym_if] = ACTIONS(631), - [anon_sym_switch] = ACTIONS(631), - [anon_sym_for] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(629), - [anon_sym_await] = ACTIONS(631), - [anon_sym_in] = ACTIONS(633), - [anon_sym_while] = ACTIONS(631), - [anon_sym_do] = ACTIONS(631), - [anon_sym_try] = ACTIONS(631), - [anon_sym_with] = ACTIONS(631), - [anon_sym_break] = ACTIONS(631), - [anon_sym_continue] = ACTIONS(631), - [anon_sym_debugger] = ACTIONS(631), - [anon_sym_return] = ACTIONS(631), - [anon_sym_throw] = ACTIONS(631), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_case] = ACTIONS(631), - [anon_sym_yield] = ACTIONS(631), - [anon_sym_LBRACK] = ACTIONS(629), - [anon_sym_LTtemplate_GT] = ACTIONS(629), - [anon_sym_LT] = ACTIONS(631), - [anon_sym_GT] = ACTIONS(633), - [anon_sym_SLASH] = ACTIONS(631), - [anon_sym_DOT] = ACTIONS(633), - [anon_sym_class] = ACTIONS(631), - [anon_sym_async] = ACTIONS(631), - [anon_sym_function] = ACTIONS(631), - [sym_optional_chain] = ACTIONS(635), - [anon_sym_new] = ACTIONS(631), - [anon_sym_AMP_AMP] = ACTIONS(635), - [anon_sym_PIPE_PIPE] = ACTIONS(635), - [anon_sym_GT_GT] = ACTIONS(633), - [anon_sym_GT_GT_GT] = ACTIONS(635), - [anon_sym_LT_LT] = ACTIONS(635), - [anon_sym_AMP] = ACTIONS(633), - [anon_sym_CARET] = ACTIONS(635), - [anon_sym_PIPE] = ACTIONS(633), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_PERCENT] = ACTIONS(635), - [anon_sym_STAR_STAR] = ACTIONS(635), - [anon_sym_LT_EQ] = ACTIONS(635), - [anon_sym_EQ_EQ] = ACTIONS(633), - [anon_sym_EQ_EQ_EQ] = ACTIONS(635), - [anon_sym_BANG_EQ] = ACTIONS(633), - [anon_sym_BANG_EQ_EQ] = ACTIONS(635), - [anon_sym_GT_EQ] = ACTIONS(635), - [anon_sym_QMARK_QMARK] = ACTIONS(635), - [anon_sym_instanceof] = ACTIONS(633), - [anon_sym_BANG] = ACTIONS(631), - [anon_sym_TILDE] = ACTIONS(629), - [anon_sym_typeof] = ACTIONS(631), - [anon_sym_void] = ACTIONS(631), - [anon_sym_delete] = ACTIONS(631), - [anon_sym_PLUS_PLUS] = ACTIONS(629), - [anon_sym_DASH_DASH] = ACTIONS(629), - [anon_sym_DQUOTE] = ACTIONS(629), - [anon_sym_SQUOTE] = ACTIONS(629), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(629), - [sym_number] = ACTIONS(629), - [sym_this] = ACTIONS(631), - [sym_super] = ACTIONS(631), - [sym_true] = ACTIONS(631), - [sym_false] = ACTIONS(631), - [sym_null] = ACTIONS(631), - [sym_undefined] = ACTIONS(631), - [anon_sym_AT] = ACTIONS(629), - [anon_sym_static] = ACTIONS(631), - [anon_sym_get] = ACTIONS(631), - [anon_sym_set] = ACTIONS(631), - [sym_preproc] = ACTIONS(629), - [sym__automatic_semicolon] = ACTIONS(637), - [sym__ternary_qmark] = ACTIONS(635), - }, - [72] = { - [ts_builtin_sym_end] = ACTIONS(639), - [sym_identifier] = ACTIONS(641), - [anon_sym_export] = ACTIONS(641), - [anon_sym_STAR] = ACTIONS(643), - [anon_sym_default] = ACTIONS(641), - [anon_sym_LBRACE] = ACTIONS(639), - [anon_sym_COMMA] = ACTIONS(645), - [anon_sym_RBRACE] = ACTIONS(639), - [anon_sym_import] = ACTIONS(641), - [anon_sym_var] = ACTIONS(641), - [anon_sym_let] = ACTIONS(641), - [anon_sym_const] = ACTIONS(641), - [anon_sym_else] = ACTIONS(641), - [anon_sym_if] = ACTIONS(641), - [anon_sym_switch] = ACTIONS(641), - [anon_sym_for] = ACTIONS(641), - [anon_sym_LPAREN] = ACTIONS(639), - [anon_sym_await] = ACTIONS(641), - [anon_sym_in] = ACTIONS(643), - [anon_sym_while] = ACTIONS(641), - [anon_sym_do] = ACTIONS(641), - [anon_sym_try] = ACTIONS(641), - [anon_sym_with] = ACTIONS(641), - [anon_sym_break] = ACTIONS(641), - [anon_sym_continue] = ACTIONS(641), - [anon_sym_debugger] = ACTIONS(641), - [anon_sym_return] = ACTIONS(641), - [anon_sym_throw] = ACTIONS(641), - [anon_sym_SEMI] = ACTIONS(639), - [anon_sym_case] = ACTIONS(641), - [anon_sym_yield] = ACTIONS(641), - [anon_sym_LBRACK] = ACTIONS(639), - [anon_sym_LTtemplate_GT] = ACTIONS(639), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_GT] = ACTIONS(643), - [anon_sym_SLASH] = ACTIONS(641), - [anon_sym_DOT] = ACTIONS(643), - [anon_sym_class] = ACTIONS(641), - [anon_sym_async] = ACTIONS(641), - [anon_sym_function] = ACTIONS(641), - [sym_optional_chain] = ACTIONS(645), - [anon_sym_new] = ACTIONS(641), - [anon_sym_AMP_AMP] = ACTIONS(645), - [anon_sym_PIPE_PIPE] = ACTIONS(645), - [anon_sym_GT_GT] = ACTIONS(643), - [anon_sym_GT_GT_GT] = ACTIONS(645), - [anon_sym_LT_LT] = ACTIONS(645), - [anon_sym_AMP] = ACTIONS(643), - [anon_sym_CARET] = ACTIONS(645), - [anon_sym_PIPE] = ACTIONS(643), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_PERCENT] = ACTIONS(645), - [anon_sym_STAR_STAR] = ACTIONS(645), - [anon_sym_LT_EQ] = ACTIONS(645), - [anon_sym_EQ_EQ] = ACTIONS(643), - [anon_sym_EQ_EQ_EQ] = ACTIONS(645), - [anon_sym_BANG_EQ] = ACTIONS(643), - [anon_sym_BANG_EQ_EQ] = ACTIONS(645), - [anon_sym_GT_EQ] = ACTIONS(645), - [anon_sym_QMARK_QMARK] = ACTIONS(645), - [anon_sym_instanceof] = ACTIONS(643), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_typeof] = ACTIONS(641), - [anon_sym_void] = ACTIONS(641), - [anon_sym_delete] = ACTIONS(641), - [anon_sym_PLUS_PLUS] = ACTIONS(639), - [anon_sym_DASH_DASH] = ACTIONS(639), - [anon_sym_DQUOTE] = ACTIONS(639), - [anon_sym_SQUOTE] = ACTIONS(639), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(639), - [sym_number] = ACTIONS(639), - [sym_this] = ACTIONS(641), - [sym_super] = ACTIONS(641), - [sym_true] = ACTIONS(641), - [sym_false] = ACTIONS(641), - [sym_null] = ACTIONS(641), - [sym_undefined] = ACTIONS(641), - [anon_sym_AT] = ACTIONS(639), - [anon_sym_static] = ACTIONS(641), - [anon_sym_get] = ACTIONS(641), - [anon_sym_set] = ACTIONS(641), - [sym_preproc] = ACTIONS(639), - [sym__automatic_semicolon] = ACTIONS(647), - [sym__ternary_qmark] = ACTIONS(645), - }, - [73] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(704), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1251), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_spread_element] = STATE(1259), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1224), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_repeat1] = STATE(1265), - [aux_sym_array_pattern_repeat1] = STATE(1266), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - }, - [74] = { - [ts_builtin_sym_end] = ACTIONS(651), - [sym_identifier] = ACTIONS(653), - [anon_sym_export] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_default] = ACTIONS(653), - [anon_sym_LBRACE] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_RBRACE] = ACTIONS(651), - [anon_sym_import] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_let] = ACTIONS(653), - [anon_sym_const] = ACTIONS(653), - [anon_sym_else] = ACTIONS(653), - [anon_sym_if] = ACTIONS(653), - [anon_sym_switch] = ACTIONS(653), - [anon_sym_for] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(653), - [anon_sym_in] = ACTIONS(653), - [anon_sym_while] = ACTIONS(653), - [anon_sym_do] = ACTIONS(653), - [anon_sym_try] = ACTIONS(653), - [anon_sym_with] = ACTIONS(653), - [anon_sym_break] = ACTIONS(653), - [anon_sym_continue] = ACTIONS(653), - [anon_sym_debugger] = ACTIONS(653), - [anon_sym_return] = ACTIONS(653), - [anon_sym_throw] = ACTIONS(653), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_case] = ACTIONS(653), - [anon_sym_yield] = ACTIONS(653), - [anon_sym_LBRACK] = ACTIONS(651), - [anon_sym_LTtemplate_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_class] = ACTIONS(653), - [anon_sym_async] = ACTIONS(653), - [anon_sym_function] = ACTIONS(653), - [sym_optional_chain] = ACTIONS(651), - [anon_sym_new] = ACTIONS(653), - [anon_sym_AMP_AMP] = ACTIONS(651), - [anon_sym_PIPE_PIPE] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_GT_GT_GT] = ACTIONS(651), - [anon_sym_LT_LT] = ACTIONS(651), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(651), - [anon_sym_STAR_STAR] = ACTIONS(651), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(651), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_QMARK_QMARK] = ACTIONS(651), - [anon_sym_instanceof] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(651), - [anon_sym_typeof] = ACTIONS(653), - [anon_sym_void] = ACTIONS(653), - [anon_sym_delete] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(651), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(651), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(651), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(653), - [sym_super] = ACTIONS(653), - [sym_true] = ACTIONS(653), - [sym_false] = ACTIONS(653), - [sym_null] = ACTIONS(653), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(651), - [anon_sym_static] = ACTIONS(653), - [anon_sym_get] = ACTIONS(653), - [anon_sym_set] = ACTIONS(653), - [sym_preproc] = ACTIONS(651), - [sym__automatic_semicolon] = ACTIONS(651), - [sym__ternary_qmark] = ACTIONS(651), - }, - [75] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(699), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1251), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_spread_element] = STATE(1259), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1224), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_repeat1] = STATE(1265), - [aux_sym_array_pattern_repeat1] = STATE(1266), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_RBRACK] = ACTIONS(649), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), - }, - [76] = { - [ts_builtin_sym_end] = ACTIONS(651), - [sym_identifier] = ACTIONS(653), - [anon_sym_export] = ACTIONS(653), - [anon_sym_STAR] = ACTIONS(653), - [anon_sym_default] = ACTIONS(653), - [anon_sym_LBRACE] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_RBRACE] = ACTIONS(651), - [anon_sym_import] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_let] = ACTIONS(653), - [anon_sym_const] = ACTIONS(653), - [anon_sym_else] = ACTIONS(653), - [anon_sym_if] = ACTIONS(653), - [anon_sym_switch] = ACTIONS(653), - [anon_sym_for] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(653), - [anon_sym_in] = ACTIONS(653), - [anon_sym_while] = ACTIONS(653), - [anon_sym_do] = ACTIONS(653), - [anon_sym_try] = ACTIONS(653), - [anon_sym_with] = ACTIONS(653), - [anon_sym_break] = ACTIONS(653), - [anon_sym_continue] = ACTIONS(653), - [anon_sym_debugger] = ACTIONS(653), - [anon_sym_return] = ACTIONS(653), - [anon_sym_throw] = ACTIONS(653), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_case] = ACTIONS(653), - [anon_sym_yield] = ACTIONS(653), - [anon_sym_LBRACK] = ACTIONS(651), - [anon_sym_LTtemplate_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_GT] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_DOT] = ACTIONS(653), - [anon_sym_class] = ACTIONS(653), - [anon_sym_async] = ACTIONS(653), - [anon_sym_function] = ACTIONS(653), - [sym_optional_chain] = ACTIONS(651), - [anon_sym_new] = ACTIONS(653), - [anon_sym_AMP_AMP] = ACTIONS(651), - [anon_sym_PIPE_PIPE] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_GT_GT_GT] = ACTIONS(651), - [anon_sym_LT_LT] = ACTIONS(651), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_CARET] = ACTIONS(651), - [anon_sym_PIPE] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_PERCENT] = ACTIONS(651), - [anon_sym_STAR_STAR] = ACTIONS(651), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_EQ_EQ] = ACTIONS(653), - [anon_sym_EQ_EQ_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(653), - [anon_sym_BANG_EQ_EQ] = ACTIONS(651), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_QMARK_QMARK] = ACTIONS(651), - [anon_sym_instanceof] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(653), - [anon_sym_TILDE] = ACTIONS(651), - [anon_sym_typeof] = ACTIONS(653), - [anon_sym_void] = ACTIONS(653), - [anon_sym_delete] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(651), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(651), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(651), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(653), - [sym_super] = ACTIONS(653), - [sym_true] = ACTIONS(653), - [sym_false] = ACTIONS(653), - [sym_null] = ACTIONS(653), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(651), - [anon_sym_static] = ACTIONS(653), - [anon_sym_get] = ACTIONS(653), - [anon_sym_set] = ACTIONS(653), - [sym_preproc] = ACTIONS(651), - [sym__automatic_semicolon] = ACTIONS(655), - [sym__ternary_qmark] = ACTIONS(651), + [sym_html_comment] = ACTIONS(5), }, [77] = { - [ts_builtin_sym_end] = ACTIONS(657), - [sym_identifier] = ACTIONS(659), - [anon_sym_export] = ACTIONS(659), - [anon_sym_STAR] = ACTIONS(661), - [anon_sym_default] = ACTIONS(659), - [anon_sym_LBRACE] = ACTIONS(657), - [anon_sym_COMMA] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(657), - [anon_sym_import] = ACTIONS(659), - [anon_sym_var] = ACTIONS(659), - [anon_sym_let] = ACTIONS(659), - [anon_sym_const] = ACTIONS(659), - [anon_sym_else] = ACTIONS(659), - [anon_sym_if] = ACTIONS(659), - [anon_sym_switch] = ACTIONS(659), - [anon_sym_for] = ACTIONS(659), - [anon_sym_LPAREN] = ACTIONS(657), - [anon_sym_await] = ACTIONS(659), - [anon_sym_in] = ACTIONS(661), - [anon_sym_while] = ACTIONS(659), - [anon_sym_do] = ACTIONS(659), - [anon_sym_try] = ACTIONS(659), - [anon_sym_with] = ACTIONS(659), - [anon_sym_break] = ACTIONS(659), - [anon_sym_continue] = ACTIONS(659), - [anon_sym_debugger] = ACTIONS(659), - [anon_sym_return] = ACTIONS(659), - [anon_sym_throw] = ACTIONS(659), - [anon_sym_SEMI] = ACTIONS(657), - [anon_sym_case] = ACTIONS(659), - [anon_sym_yield] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(657), - [anon_sym_LTtemplate_GT] = ACTIONS(657), - [anon_sym_LT] = ACTIONS(659), - [anon_sym_GT] = ACTIONS(661), - [anon_sym_SLASH] = ACTIONS(659), - [anon_sym_DOT] = ACTIONS(661), - [anon_sym_class] = ACTIONS(659), - [anon_sym_async] = ACTIONS(659), - [anon_sym_function] = ACTIONS(659), - [sym_optional_chain] = ACTIONS(663), - [anon_sym_new] = ACTIONS(659), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_GT_GT] = ACTIONS(661), - [anon_sym_GT_GT_GT] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_CARET] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(659), - [anon_sym_DASH] = ACTIONS(659), - [anon_sym_PERCENT] = ACTIONS(663), - [anon_sym_STAR_STAR] = ACTIONS(663), - [anon_sym_LT_EQ] = ACTIONS(663), - [anon_sym_EQ_EQ] = ACTIONS(661), - [anon_sym_EQ_EQ_EQ] = ACTIONS(663), - [anon_sym_BANG_EQ] = ACTIONS(661), - [anon_sym_BANG_EQ_EQ] = ACTIONS(663), - [anon_sym_GT_EQ] = ACTIONS(663), - [anon_sym_QMARK_QMARK] = ACTIONS(663), - [anon_sym_instanceof] = ACTIONS(661), - [anon_sym_BANG] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(657), - [anon_sym_typeof] = ACTIONS(659), - [anon_sym_void] = ACTIONS(659), - [anon_sym_delete] = ACTIONS(659), - [anon_sym_PLUS_PLUS] = ACTIONS(657), - [anon_sym_DASH_DASH] = ACTIONS(657), - [anon_sym_DQUOTE] = ACTIONS(657), - [anon_sym_SQUOTE] = ACTIONS(657), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(657), - [sym_number] = ACTIONS(657), - [sym_this] = ACTIONS(659), - [sym_super] = ACTIONS(659), - [sym_true] = ACTIONS(659), - [sym_false] = ACTIONS(659), - [sym_null] = ACTIONS(659), - [sym_undefined] = ACTIONS(659), - [anon_sym_AT] = ACTIONS(657), - [anon_sym_static] = ACTIONS(659), - [anon_sym_get] = ACTIONS(659), - [anon_sym_set] = ACTIONS(659), - [sym_preproc] = ACTIONS(657), - [sym__automatic_semicolon] = ACTIONS(665), - [sym__ternary_qmark] = ACTIONS(663), + [ts_builtin_sym_end] = ACTIONS(617), + [sym_identifier] = ACTIONS(619), + [anon_sym_export] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(621), + [anon_sym_default] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_import] = ACTIONS(619), + [anon_sym_with] = ACTIONS(619), + [anon_sym_var] = ACTIONS(619), + [anon_sym_let] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_else] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_switch] = ACTIONS(619), + [anon_sym_for] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(617), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_await] = ACTIONS(619), + [anon_sym_in] = ACTIONS(621), + [anon_sym_while] = ACTIONS(619), + [anon_sym_do] = ACTIONS(619), + [anon_sym_try] = ACTIONS(619), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(619), + [anon_sym_debugger] = ACTIONS(619), + [anon_sym_return] = ACTIONS(619), + [anon_sym_throw] = ACTIONS(619), + [anon_sym_case] = ACTIONS(619), + [anon_sym_yield] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [sym_glimmer_opening_tag] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_DQUOTE] = ACTIONS(617), + [anon_sym_SQUOTE] = ACTIONS(617), + [anon_sym_class] = ACTIONS(619), + [anon_sym_async] = ACTIONS(619), + [anon_sym_function] = ACTIONS(619), + [sym_optional_chain] = ACTIONS(623), + [anon_sym_new] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(621), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(621), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_STAR_STAR] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_EQ_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_QMARK_QMARK] = ACTIONS(623), + [anon_sym_instanceof] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(619), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_typeof] = ACTIONS(619), + [anon_sym_void] = ACTIONS(619), + [anon_sym_delete] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(617), + [sym_number] = ACTIONS(617), + [sym_private_property_identifier] = ACTIONS(619), + [sym_this] = ACTIONS(619), + [sym_super] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_null] = ACTIONS(619), + [sym_undefined] = ACTIONS(619), + [anon_sym_AT] = ACTIONS(617), + [anon_sym_static] = ACTIONS(619), + [anon_sym_get] = ACTIONS(619), + [anon_sym_set] = ACTIONS(619), + [sym_preproc] = ACTIONS(617), + [sym__automatic_semicolon] = ACTIONS(625), + [sym__ternary_qmark] = ACTIONS(623), + [sym_html_comment] = ACTIONS(5), }, [78] = { - [ts_builtin_sym_end] = ACTIONS(667), - [sym_identifier] = ACTIONS(669), - [anon_sym_export] = ACTIONS(669), - [anon_sym_STAR] = ACTIONS(671), - [anon_sym_default] = ACTIONS(669), - [anon_sym_LBRACE] = ACTIONS(667), - [anon_sym_COMMA] = ACTIONS(673), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_import] = ACTIONS(669), - [anon_sym_var] = ACTIONS(669), - [anon_sym_let] = ACTIONS(669), - [anon_sym_const] = ACTIONS(669), - [anon_sym_else] = ACTIONS(669), - [anon_sym_if] = ACTIONS(669), - [anon_sym_switch] = ACTIONS(669), - [anon_sym_for] = ACTIONS(669), - [anon_sym_LPAREN] = ACTIONS(667), - [anon_sym_await] = ACTIONS(669), - [anon_sym_in] = ACTIONS(671), - [anon_sym_while] = ACTIONS(669), - [anon_sym_do] = ACTIONS(669), - [anon_sym_try] = ACTIONS(669), - [anon_sym_with] = ACTIONS(669), - [anon_sym_break] = ACTIONS(669), - [anon_sym_continue] = ACTIONS(669), - [anon_sym_debugger] = ACTIONS(669), - [anon_sym_return] = ACTIONS(669), - [anon_sym_throw] = ACTIONS(669), - [anon_sym_SEMI] = ACTIONS(667), - [anon_sym_case] = ACTIONS(669), - [anon_sym_yield] = ACTIONS(669), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_LTtemplate_GT] = ACTIONS(667), - [anon_sym_LT] = ACTIONS(669), - [anon_sym_GT] = ACTIONS(671), - [anon_sym_SLASH] = ACTIONS(669), - [anon_sym_DOT] = ACTIONS(671), - [anon_sym_class] = ACTIONS(669), - [anon_sym_async] = ACTIONS(669), - [anon_sym_function] = ACTIONS(669), - [sym_optional_chain] = ACTIONS(673), - [anon_sym_new] = ACTIONS(669), - [anon_sym_AMP_AMP] = ACTIONS(673), - [anon_sym_PIPE_PIPE] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(671), - [anon_sym_GT_GT_GT] = ACTIONS(673), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_AMP] = ACTIONS(671), - [anon_sym_CARET] = ACTIONS(673), - [anon_sym_PIPE] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(669), - [anon_sym_DASH] = ACTIONS(669), - [anon_sym_PERCENT] = ACTIONS(673), - [anon_sym_STAR_STAR] = ACTIONS(673), - [anon_sym_LT_EQ] = ACTIONS(673), - [anon_sym_EQ_EQ] = ACTIONS(671), - [anon_sym_EQ_EQ_EQ] = ACTIONS(673), - [anon_sym_BANG_EQ] = ACTIONS(671), - [anon_sym_BANG_EQ_EQ] = ACTIONS(673), - [anon_sym_GT_EQ] = ACTIONS(673), - [anon_sym_QMARK_QMARK] = ACTIONS(673), - [anon_sym_instanceof] = ACTIONS(671), - [anon_sym_BANG] = ACTIONS(669), - [anon_sym_TILDE] = ACTIONS(667), - [anon_sym_typeof] = ACTIONS(669), - [anon_sym_void] = ACTIONS(669), - [anon_sym_delete] = ACTIONS(669), - [anon_sym_PLUS_PLUS] = ACTIONS(667), - [anon_sym_DASH_DASH] = ACTIONS(667), - [anon_sym_DQUOTE] = ACTIONS(667), - [anon_sym_SQUOTE] = ACTIONS(667), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(667), - [sym_number] = ACTIONS(667), - [sym_this] = ACTIONS(669), - [sym_super] = ACTIONS(669), - [sym_true] = ACTIONS(669), - [sym_false] = ACTIONS(669), - [sym_null] = ACTIONS(669), - [sym_undefined] = ACTIONS(669), - [anon_sym_AT] = ACTIONS(667), - [anon_sym_static] = ACTIONS(669), - [anon_sym_get] = ACTIONS(669), - [anon_sym_set] = ACTIONS(669), - [sym_preproc] = ACTIONS(667), - [sym__automatic_semicolon] = ACTIONS(675), - [sym__ternary_qmark] = ACTIONS(673), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(794), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1327), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(487), + [sym_subscript_expression] = STATE(487), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_spread_element] = STATE(1362), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1278), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_repeat1] = STATE(1363), + [aux_sym_array_pattern_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_RBRACK] = ACTIONS(633), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), }, [79] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(740), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1251), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_spread_element] = STATE(1304), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1224), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_repeat1] = STATE(1308), - [aux_sym_array_pattern_repeat1] = STATE(1266), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_RBRACK] = ACTIONS(677), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(712), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1327), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(487), + [sym_subscript_expression] = STATE(487), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_spread_element] = STATE(1326), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1278), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_repeat1] = STATE(1325), + [aux_sym_array_pattern_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_RBRACK] = ACTIONS(639), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), }, [80] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(849), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1251), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(500), - [sym_subscript_expression] = STATE(500), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1224), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_pattern_repeat1] = STATE(1266), - [sym_identifier] = ACTIONS(679), - [anon_sym_export] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(687), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(691), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(695), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(681), - [anon_sym_get] = ACTIONS(681), - [anon_sym_set] = ACTIONS(681), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(794), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1327), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(487), + [sym_subscript_expression] = STATE(487), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_spread_element] = STATE(1362), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1278), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_repeat1] = STATE(1363), + [aux_sym_array_pattern_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_RBRACK] = ACTIONS(641), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1161), - [sym_assignment_pattern] = STATE(1251), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1161), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1161), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [sym_pattern] = STATE(1224), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_pattern_repeat1] = STATE(1266), - [sym_identifier] = ACTIONS(697), - [anon_sym_export] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(705), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(707), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(699), - [anon_sym_get] = ACTIONS(699), - [anon_sym_set] = ACTIONS(699), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(794), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1327), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(487), + [sym_subscript_expression] = STATE(487), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_spread_element] = STATE(1362), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1278), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_repeat1] = STATE(1363), + [aux_sym_array_pattern_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_RBRACK] = ACTIONS(643), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), }, [82] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1161), - [sym_assignment_pattern] = STATE(1294), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1161), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1161), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [sym_pattern] = STATE(1193), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_pattern_repeat1] = STATE(1313), - [sym_identifier] = ACTIONS(697), - [anon_sym_export] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_RBRACK] = ACTIONS(709), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(705), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(707), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(699), - [anon_sym_get] = ACTIONS(699), - [anon_sym_set] = ACTIONS(699), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(794), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1327), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(487), + [sym_subscript_expression] = STATE(487), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_spread_element] = STATE(1362), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1278), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_repeat1] = STATE(1363), + [aux_sym_array_pattern_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_RBRACK] = ACTIONS(645), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), }, [83] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(691), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1426), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_spread_element] = STATE(1298), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1299), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_COMMA] = ACTIONS(711), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_RBRACK] = ACTIONS(711), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(733), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1327), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(487), + [sym_subscript_expression] = STATE(487), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_spread_element] = STATE(1326), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1278), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_repeat1] = STATE(1325), + [aux_sym_array_pattern_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_RBRACK] = ACTIONS(639), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), }, [84] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(778), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1240), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1668), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1239), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(794), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1327), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(487), + [sym_subscript_expression] = STATE(487), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_spread_element] = STATE(1362), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1278), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_repeat1] = STATE(1363), + [aux_sym_array_pattern_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(631), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_RBRACK] = ACTIONS(647), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), }, [85] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1161), - [sym_assignment_pattern] = STATE(1426), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1161), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1161), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [sym_pattern] = STATE(1299), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(697), - [anon_sym_export] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_COMMA] = ACTIONS(716), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_RBRACK] = ACTIONS(716), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(705), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(707), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(699), - [anon_sym_get] = ACTIONS(699), - [anon_sym_set] = ACTIONS(699), + [sym_declaration] = STATE(372), + [sym_import] = STATE(1130), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(797), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1293), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(651), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [86] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(795), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1240), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1587), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1239), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), + [sym_declaration] = STATE(372), + [sym_import] = STATE(1130), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(797), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1254), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(653), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [87] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(691), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_spread_element] = STATE(1298), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(718), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_declaration] = STATE(394), + [sym_import] = STATE(1130), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1254), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(353), + [anon_sym_async] = ACTIONS(653), + [anon_sym_function] = ACTIONS(357), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1161), - [sym_assignment_pattern] = STATE(1504), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1161), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1161), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [sym_pattern] = STATE(1244), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(697), - [anon_sym_export] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(705), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(707), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(699), - [anon_sym_get] = ACTIONS(699), - [anon_sym_set] = ACTIONS(699), + [sym_declaration] = STATE(394), + [sym_import] = STATE(1130), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(832), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_class_declaration] = STATE(368), + [sym_function_expression] = STATE(747), + [sym_function_declaration] = STATE(368), + [sym_generator_function] = STATE(747), + [sym_generator_function_declaration] = STATE(368), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1293), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_var] = ACTIONS(21), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(25), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(67), + [anon_sym_async] = ACTIONS(651), + [anon_sym_function] = ACTIONS(71), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(761), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_spread_element] = STATE(1341), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_repeat1] = STATE(1342), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(724), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_variable_declaration] = STATE(114), + [sym_lexical_declaration] = STATE(114), + [sym_empty_statement] = STATE(114), + [sym_parenthesized_expression] = STATE(494), + [sym_expression] = STATE(731), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1317), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1317), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(494), + [sym_subscript_expression] = STATE(494), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1317), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1667), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(655), + [anon_sym_export] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(659), + [anon_sym_import] = ACTIONS(371), + [anon_sym_var] = ACTIONS(661), + [anon_sym_let] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(669), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(671), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(673), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(657), + [anon_sym_get] = ACTIONS(657), + [anon_sym_set] = ACTIONS(657), + [sym_html_comment] = ACTIONS(5), }, [90] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(737), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_spread_element] = STATE(1302), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_repeat1] = STATE(1297), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(724), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(778), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1563), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(487), + [sym_subscript_expression] = STATE(487), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_spread_element] = STATE(1332), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1333), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_COMMA] = ACTIONS(675), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [anon_sym_RBRACK] = ACTIONS(675), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(115), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), }, [91] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1161), - [sym_assignment_pattern] = STATE(1504), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1161), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1161), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [sym_pattern] = STATE(1244), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(697), - [anon_sym_export] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(705), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(707), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(699), - [anon_sym_get] = ACTIONS(699), - [anon_sym_set] = ACTIONS(699), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1167), + [sym_assignment_pattern] = STATE(1327), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1167), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(483), + [sym_subscript_expression] = STATE(483), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1167), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [sym_pattern] = STATE(1278), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_pattern_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(678), + [anon_sym_export] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(688), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(680), + [anon_sym_get] = ACTIONS(680), + [anon_sym_set] = ACTIONS(680), + [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(711), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_spread_element] = STATE(1347), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [aux_sym_array_repeat1] = STATE(1303), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(724), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(855), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1327), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(496), + [sym_subscript_expression] = STATE(496), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1278), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_pattern_repeat1] = STATE(1321), + [sym_identifier] = ACTIONS(696), + [anon_sym_export] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(698), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(702), + [anon_sym_RBRACK] = ACTIONS(688), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(704), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(706), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(698), + [anon_sym_get] = ACTIONS(698), + [anon_sym_set] = ACTIONS(698), + [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1161), - [sym_assignment_pattern] = STATE(1240), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1161), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1161), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [sym_pattern] = STATE(1239), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(697), - [anon_sym_export] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(705), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(707), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(699), - [anon_sym_get] = ACTIONS(699), - [anon_sym_set] = ACTIONS(699), + [sym_import] = STATE(1121), + [sym_variable_declaration] = STATE(110), + [sym_lexical_declaration] = STATE(110), + [sym_empty_statement] = STATE(110), + [sym_parenthesized_expression] = STATE(494), + [sym_expression] = STATE(698), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1317), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1317), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(494), + [sym_subscript_expression] = STATE(494), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1317), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1749), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(655), + [anon_sym_export] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(659), + [anon_sym_import] = ACTIONS(371), + [anon_sym_var] = ACTIONS(661), + [anon_sym_let] = ACTIONS(663), + [anon_sym_const] = ACTIONS(665), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(669), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(671), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(673), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(657), + [anon_sym_get] = ACTIONS(657), + [anon_sym_set] = ACTIONS(657), + [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(773), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_spread_element] = STATE(1613), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1613), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1167), + [sym_assignment_pattern] = STATE(1361), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1167), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(483), + [sym_subscript_expression] = STATE(483), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1167), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [sym_pattern] = STATE(1248), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_pattern_repeat1] = STATE(1371), + [sym_identifier] = ACTIONS(678), + [anon_sym_export] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_COMMA] = ACTIONS(684), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(708), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(680), + [anon_sym_get] = ACTIONS(680), + [anon_sym_set] = ACTIONS(680), + [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(814), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1129), - [sym_assignment_pattern] = STATE(1440), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1129), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(485), - [sym_subscript_expression] = STATE(485), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1129), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [sym_pattern] = STATE(1269), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(535), - [anon_sym_export] = ACTIONS(537), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(543), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(545), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(537), - [anon_sym_get] = ACTIONS(537), - [anon_sym_set] = ACTIONS(537), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(722), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1336), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(487), + [sym_subscript_expression] = STATE(487), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1730), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1272), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(807), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_spread_element] = STATE(1626), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1626), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(720), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(793), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1336), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(487), + [sym_subscript_expression] = STATE(487), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1644), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1272), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), }, [97] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1161), - [sym_assignment_pattern] = STATE(1440), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1161), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1161), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [sym_pattern] = STATE(1269), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(697), - [anon_sym_export] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(705), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(707), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(699), - [anon_sym_get] = ACTIONS(699), - [anon_sym_set] = ACTIONS(699), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1167), + [sym_assignment_pattern] = STATE(1563), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1167), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(483), + [sym_subscript_expression] = STATE(483), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1167), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [sym_pattern] = STATE(1333), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(678), + [anon_sym_export] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_COMMA] = ACTIONS(712), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(686), + [anon_sym_RBRACK] = ACTIONS(712), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(680), + [anon_sym_get] = ACTIONS(680), + [anon_sym_set] = ACTIONS(680), + [sym_html_comment] = ACTIONS(5), }, [98] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1161), - [sym_assignment_pattern] = STATE(1504), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1161), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(484), - [sym_subscript_expression] = STATE(484), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1161), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [sym_pattern] = STATE(1244), - [sym_rest_pattern] = STATE(1130), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(697), - [anon_sym_export] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(705), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(707), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(699), - [anon_sym_get] = ACTIONS(699), - [anon_sym_set] = ACTIONS(699), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(778), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_spread_element] = STATE(1332), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(714), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(714), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [anon_sym_RBRACK] = ACTIONS(714), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_import] = STATE(736), - [sym_expression_statement] = STATE(104), - [sym_empty_statement] = STATE(104), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(768), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_spread_element] = STATE(1299), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_repeat1] = STATE(1344), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(718), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_import] = STATE(736), - [sym_expression_statement] = STATE(103), - [sym_empty_statement] = STATE(103), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(742), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1442), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(705), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_spread_element] = STATE(1382), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_repeat1] = STATE(1383), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(718), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(503), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1328), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1328), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(503), - [sym_subscript_expression] = STATE(503), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1328), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(738), - [anon_sym_export] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(742), - [anon_sym_import] = ACTIONS(391), - [anon_sym_var] = ACTIONS(744), - [anon_sym_let] = ACTIONS(746), - [anon_sym_const] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(750), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(752), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(740), - [anon_sym_get] = ACTIONS(740), - [anon_sym_set] = ACTIONS(740), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1167), + [sym_assignment_pattern] = STATE(1472), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1167), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(483), + [sym_subscript_expression] = STATE(483), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1167), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [sym_pattern] = STATE(1397), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(678), + [anon_sym_export] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(686), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(680), + [anon_sym_get] = ACTIONS(680), + [anon_sym_set] = ACTIONS(680), + [sym_html_comment] = ACTIONS(5), }, [102] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(716), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1471), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(754), - [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), - [sym__automatic_semicolon] = ACTIONS(754), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1167), + [sym_assignment_pattern] = STATE(1336), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1167), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(483), + [sym_subscript_expression] = STATE(483), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1167), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [sym_pattern] = STATE(1272), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(678), + [anon_sym_export] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(710), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(686), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(680), + [anon_sym_get] = ACTIONS(680), + [anon_sym_set] = ACTIONS(680), + [sym_html_comment] = ACTIONS(5), }, [103] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(790), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1583), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1167), + [sym_assignment_pattern] = STATE(1472), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1167), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(483), + [sym_subscript_expression] = STATE(483), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1167), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [sym_pattern] = STATE(1397), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(678), + [anon_sym_export] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(686), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(680), + [anon_sym_get] = ACTIONS(680), + [anon_sym_set] = ACTIONS(680), + [sym_html_comment] = ACTIONS(5), }, [104] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(785), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1611), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_RPAREN] = ACTIONS(758), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(748), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_spread_element] = STATE(1346), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [aux_sym_array_repeat1] = STATE(1347), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_COMMA] = ACTIONS(718), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [105] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(587), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(829), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1167), + [sym_assignment_pattern] = STATE(1472), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1167), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(483), + [sym_subscript_expression] = STATE(483), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1167), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [sym_pattern] = STATE(1397), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(678), + [anon_sym_export] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(686), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(680), + [anon_sym_get] = ACTIONS(680), + [anon_sym_set] = ACTIONS(680), + [sym_html_comment] = ACTIONS(5), }, [106] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(531), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(800), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(821), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1154), + [sym_assignment_pattern] = STATE(1505), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1154), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(487), + [sym_subscript_expression] = STATE(487), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1154), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [sym_pattern] = STATE(1360), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(627), + [anon_sym_export] = ACTIONS(629), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(635), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(637), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(629), + [anon_sym_get] = ACTIONS(629), + [anon_sym_set] = ACTIONS(629), + [sym_html_comment] = ACTIONS(5), }, [107] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(820), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1670), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1167), + [sym_assignment_pattern] = STATE(1505), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1167), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(483), + [sym_subscript_expression] = STATE(483), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1167), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [sym_pattern] = STATE(1360), + [sym_rest_pattern] = STATE(1185), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(678), + [anon_sym_export] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(686), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(690), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(694), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(680), + [anon_sym_get] = ACTIONS(680), + [anon_sym_set] = ACTIONS(680), + [sym_html_comment] = ACTIONS(5), }, [108] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(779), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1584), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(726), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_spread_element] = STATE(1690), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1690), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [109] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(721), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(657), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(728), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_spread_element] = STATE(1711), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1711), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(716), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [110] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(531), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(530), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_empty_statement] = STATE(115), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(693), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1668), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [111] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(528), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(830), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_empty_statement] = STATE(122), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(715), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1677), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [112] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(528), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(812), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_empty_statement] = STATE(119), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(734), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1742), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [113] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(473), - [sym_expression] = STATE(860), - [sym_primary_expression] = STATE(674), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(677), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(473), - [sym_subscript_expression] = STATE(473), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(766), - [anon_sym_export] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(59), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(772), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(774), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(768), - [anon_sym_get] = ACTIONS(768), - [anon_sym_set] = ACTIONS(768), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(637), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1529), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym__automatic_semicolon] = ACTIONS(734), + [sym_html_comment] = ACTIONS(5), }, [114] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(786), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1614), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_empty_statement] = STATE(117), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(788), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1701), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(667), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [115] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(787), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1559), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(738), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1671), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [116] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(788), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1601), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(746), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1672), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [117] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(706), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1458), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(730), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1741), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [118] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(512), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(509), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_DOT] = ACTIONS(776), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(772), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1686), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(700), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(630), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(756), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1682), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(744), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(604), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(611), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(714), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1666), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(746), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(772), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1567), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(699), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1663), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(748), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(531), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(852), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(711), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1665), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(609), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1194), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(503), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1345), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1345), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(503), + [sym_subscript_expression] = STATE(503), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1345), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(752), + [anon_sym_export] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(659), + [anon_sym_import] = ACTIONS(371), + [anon_sym_var] = ACTIONS(756), + [anon_sym_let] = ACTIONS(758), + [anon_sym_const] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(669), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(762), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(754), + [anon_sym_get] = ACTIONS(754), + [anon_sym_set] = ACTIONS(754), + [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(555), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(828), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(742), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(641), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(826), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(758), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(623), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(792), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1616), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(578), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(583), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(604), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(802), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(556), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(562), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(776), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1639), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(530), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(536), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(512), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(509), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(778), - [anon_sym_export] = ACTIONS(780), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_DOT] = ACTIONS(776), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(782), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(780), - [anon_sym_get] = ACTIONS(780), - [anon_sym_set] = ACTIONS(780), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(530), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(815), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(731), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(649), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(556), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(816), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(604), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(855), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(578), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(818), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(587), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(797), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(544), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(820), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(732), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(613), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(703), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1685), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(555), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(791), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(557), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(563), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [135] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(731), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(627), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(750), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(633), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(782), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(760), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(742), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(673), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(732), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(623), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(743), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(668), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(721), - [sym_parenthesized_expression] = STATE(486), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(750), + [sym_parenthesized_expression] = STATE(484), [sym_expression] = STATE(667), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(473), - [sym_expression] = STATE(860), - [sym_primary_expression] = STATE(674), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(677), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(473), - [sym_subscript_expression] = STATE(473), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(784), - [anon_sym_export] = ACTIONS(786), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(770), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(788), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(774), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(786), - [anon_sym_get] = ACTIONS(786), - [anon_sym_set] = ACTIONS(786), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(743), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(639), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(717), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(617), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(758), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(624), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(735), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(668), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(578), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(841), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(803), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1627), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(643), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_sequence_expression] = STATE(1530), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(783), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1568), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(688), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1705), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(715), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_sequence_expression] = STATE(1390), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(468), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(677), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(671), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(468), + [sym_subscript_expression] = STATE(468), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(772), + [anon_sym_export] = ACTIONS(774), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(774), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(778), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(774), + [anon_sym_get] = ACTIONS(774), + [anon_sym_set] = ACTIONS(774), + [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(587), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(586), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(696), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(663), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(717), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(641), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(510), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(509), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(512), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(509), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(790), - [anon_sym_export] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(776), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(794), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(792), - [anon_sym_get] = ACTIONS(792), - [anon_sym_set] = ACTIONS(792), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(557), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(814), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(528), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(527), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(729), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1713), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(700), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(616), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(557), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(860), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(818), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1571), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(694), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1708), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [151] = { - [sym_import] = STATE(736), - [sym_statement_block] = STATE(735), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(664), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(762), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(631), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [152] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(816), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1569), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(468), + [sym_expression] = STATE(872), + [sym_primary_expression] = STATE(677), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(671), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(468), + [sym_subscript_expression] = STATE(468), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(784), + [anon_sym_export] = ACTIONS(786), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(786), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(788), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(780), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(786), + [anon_sym_get] = ACTIONS(786), + [anon_sym_set] = ACTIONS(786), + [sym_html_comment] = ACTIONS(5), }, [153] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(555), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(598), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(759), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1679), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [154] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(784), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_sequence_expression] = STATE(1637), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(695), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1676), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [155] = { - [sym_import] = STATE(610), - [sym_statement_block] = STATE(543), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(544), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(764), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(700), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1673), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [156] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(662), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(721), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1726), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [157] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(547), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(724), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1737), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [158] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(550), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(548), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(861), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [159] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(549), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(727), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1738), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(548), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(510), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(509), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(790), + [anon_sym_export] = ACTIONS(792), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(792), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(792), + [anon_sym_get] = ACTIONS(792), + [anon_sym_set] = ACTIONS(792), + [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(845), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(510), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(509), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(796), + [anon_sym_export] = ACTIONS(798), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DOT] = ACTIONS(782), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(800), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(798), + [anon_sym_get] = ACTIONS(798), + [anon_sym_set] = ACTIONS(798), + [sym_html_comment] = ACTIONS(5), }, [162] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(542), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(544), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(843), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [163] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(625), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(530), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(848), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(840), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(701), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1719), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(533), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(696), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(685), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [166] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(615), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(544), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(543), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [167] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(618), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(556), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(842), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [168] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(619), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(786), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1687), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(622), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(767), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1683), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(633), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1130), + [sym_statement_block] = STATE(762), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(766), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(644), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(548), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(799), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(770), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(626), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_statement_block] = STATE(548), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(567), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(768), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(650), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(697), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_sequence_expression] = STATE(1688), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(651), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(640), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [175] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(656), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(523), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [176] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(660), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(679), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(844), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(840), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(661), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(506), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(620), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(804), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(850), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(849), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(665), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(507), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(666), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(803), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(547), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(684), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1296), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1296), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(490), + [sym_subscript_expression] = STATE(490), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1296), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(802), + [anon_sym_export] = ACTIONS(804), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(806), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(808), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(804), + [anon_sym_get] = ACTIONS(804), + [anon_sym_set] = ACTIONS(804), + [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(824), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(867), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(835), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(619), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(804), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(821), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(805), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(802), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(505), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(801), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(672), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(776), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(670), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(875), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1159), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1159), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(481), + [sym_subscript_expression] = STATE(481), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1159), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(810), + [anon_sym_export] = ACTIONS(812), + [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(812), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(686), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(814), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(816), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(812), + [anon_sym_get] = ACTIONS(812), + [anon_sym_set] = ACTIONS(812), + [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(521), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(868), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(800), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(505), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(506), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(827), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(798), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(663), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(620), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(648), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(654), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(825), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(507), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [198] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(643), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(622), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [199] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(642), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(625), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [200] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(640), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(564), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [201] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(639), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(865), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [202] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(638), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(838), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [203] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(637), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(856), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [204] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(632), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(836), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [205] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(631), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(506), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(645), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(822), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [207] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(621), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(859), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [208] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(522), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(636), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(713), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(735), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(557), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(661), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(521), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(660), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(564), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(681), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(566), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(680), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(569), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(629), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(831), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(670), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(570), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(666), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(605), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(656), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [218] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(614), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(651), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [219] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(612), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(644), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(518), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(854), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [221] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(858), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1154), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1154), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(487), - [sym_subscript_expression] = STATE(487), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1154), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(796), - [anon_sym_export] = ACTIONS(798), - [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(703), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(800), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(802), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(798), - [anon_sym_get] = ACTIONS(798), - [anon_sym_set] = ACTIONS(798), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(546), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(832), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(529), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(562), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(538), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(833), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(596), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(822), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(507), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [226] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(532), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(628), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [227] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(629), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(834), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [228] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(836), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(505), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [229] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(805), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(506), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(601), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(814), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(852), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [232] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(837), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(806), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [233] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(838), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(588), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(628), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(608), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(839), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(850), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(486), - [sym_expression] = STATE(658), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1565), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1565), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(486), - [sym_subscript_expression] = STATE(486), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(975), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1565), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1566), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(433), - [anon_sym_export] = ACTIONS(435), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(57), - [anon_sym_SLASH] = ACTIONS(447), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(451), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(455), - [anon_sym_PLUS] = ACTIONS(457), - [anon_sym_DASH] = ACTIONS(457), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(459), - [anon_sym_typeof] = ACTIONS(457), - [anon_sym_void] = ACTIONS(457), - [anon_sym_delete] = ACTIONS(457), - [anon_sym_PLUS_PLUS] = ACTIONS(461), - [anon_sym_DASH_DASH] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(463), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(853), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(842), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(869), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(843), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(586), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [239] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(841), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(534), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(846), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(539), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [241] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), [sym_expression] = STATE(505), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [242] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(847), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(552), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(578), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(599), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(551), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(613), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(851), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(521), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [246] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(856), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(863), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [247] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(629), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1226), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1226), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(491), - [sym_subscript_expression] = STATE(491), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1226), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(804), - [anon_sym_export] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(806), - [anon_sym_get] = ACTIONS(806), - [anon_sym_set] = ACTIONS(806), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(819), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(679), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(614), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [249] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(781), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(808), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [250] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(506), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(613), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [251] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(807), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [252] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(475), - [sym_expression] = STATE(849), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1672), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1672), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(475), - [sym_subscript_expression] = STATE(475), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(983), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1672), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1600), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(381), - [anon_sym_export] = ACTIONS(383), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(395), - [anon_sym_yield] = ACTIONS(399), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(409), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(413), - [anon_sym_PLUS] = ACTIONS(415), - [anon_sym_DASH] = ACTIONS(415), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_TILDE] = ACTIONS(417), - [anon_sym_typeof] = ACTIONS(415), - [anon_sym_void] = ACTIONS(415), - [anon_sym_delete] = ACTIONS(415), - [anon_sym_PLUS_PLUS] = ACTIONS(419), - [anon_sym_DASH_DASH] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(431), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(383), - [anon_sym_get] = ACTIONS(383), - [anon_sym_set] = ACTIONS(383), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(635), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(673), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(839), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(819), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(813), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(676), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(657), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [256] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(506), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(812), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [257] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(780), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(682), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), }, [258] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(777), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(851), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), }, [259] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(775), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(626), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [260] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(794), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(621), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), }, [261] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(798), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(855), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), }, [262] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(808), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(862), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), }, [263] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(853), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), - }, - [264] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(813), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), - }, - [265] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(789), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), - }, - [266] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(817), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), - }, - [267] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(811), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), - }, - [268] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(810), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), - }, - [269] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(635), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), - }, - [270] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(770), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), - }, - [271] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(801), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), - }, - [272] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(809), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), - }, - [273] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(507), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), - }, - [274] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(502), - [sym_expression] = STATE(821), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1673), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1673), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(502), - [sym_subscript_expression] = STATE(502), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(973), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1673), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1648), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(473), - [anon_sym_export] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(481), - [anon_sym_yield] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(487), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(491), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_BANG] = ACTIONS(495), - [anon_sym_TILDE] = ACTIONS(495), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(497), - [anon_sym_DASH_DASH] = ACTIONS(497), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(499), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(475), - [anon_sym_get] = ACTIONS(475), - [anon_sym_set] = ACTIONS(475), - }, - [275] = { - [sym_import] = STATE(610), - [sym_parenthesized_expression] = STATE(440), - [sym_expression] = STATE(806), - [sym_primary_expression] = STATE(608), - [sym_yield_expression] = STATE(607), - [sym_object] = STATE(610), - [sym_object_pattern] = STATE(1604), - [sym_array] = STATE(610), - [sym_array_pattern] = STATE(1604), - [sym_glimmer_template] = STATE(607), - [sym_glimmer_opening_tag] = STATE(1218), - [sym_jsx_element] = STATE(607), - [sym_jsx_fragment] = STATE(607), - [sym_jsx_opening_element] = STATE(1029), - [sym_jsx_self_closing_element] = STATE(607), - [sym_class] = STATE(610), - [sym_function] = STATE(610), - [sym_generator_function] = STATE(610), - [sym_arrow_function] = STATE(610), - [sym_call_expression] = STATE(610), - [sym_new_expression] = STATE(607), - [sym_await_expression] = STATE(607), - [sym_member_expression] = STATE(440), - [sym_subscript_expression] = STATE(440), - [sym_assignment_expression] = STATE(607), - [sym__augmented_assignment_lhs] = STATE(988), - [sym_augmented_assignment_expression] = STATE(607), - [sym__destructuring_pattern] = STATE(1604), - [sym_ternary_expression] = STATE(607), - [sym_binary_expression] = STATE(607), - [sym_unary_expression] = STATE(607), - [sym_update_expression] = STATE(607), - [sym_string] = STATE(610), - [sym_template_string] = STATE(610), - [sym_regex] = STATE(610), - [sym_meta_property] = STATE(610), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1671), - [aux_sym_export_statement_repeat1] = STATE(1238), - [sym_identifier] = ACTIONS(501), - [anon_sym_export] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(479), - [anon_sym_import] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(393), - [anon_sym_await] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(485), - [anon_sym_LTtemplate_GT] = ACTIONS(55), - [anon_sym_LT] = ACTIONS(403), - [anon_sym_SLASH] = ACTIONS(405), - [anon_sym_class] = ACTIONS(407), - [anon_sym_async] = ACTIONS(511), - [anon_sym_function] = ACTIONS(411), - [anon_sym_new] = ACTIONS(513), - [anon_sym_PLUS] = ACTIONS(515), - [anon_sym_DASH] = ACTIONS(515), - [anon_sym_BANG] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(517), - [anon_sym_typeof] = ACTIONS(515), - [anon_sym_void] = ACTIONS(515), - [anon_sym_delete] = ACTIONS(515), - [anon_sym_PLUS_PLUS] = ACTIONS(519), - [anon_sym_DASH_DASH] = ACTIONS(519), - [anon_sym_DQUOTE] = ACTIONS(421), - [anon_sym_SQUOTE] = ACTIONS(423), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(425), - [sym_number] = ACTIONS(427), - [sym_this] = ACTIONS(429), - [sym_super] = ACTIONS(429), - [sym_true] = ACTIONS(429), - [sym_false] = ACTIONS(429), - [sym_null] = ACTIONS(429), - [sym_undefined] = ACTIONS(521), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), - }, - [276] = { - [sym_import] = STATE(736), - [sym_parenthesized_expression] = STATE(482), - [sym_expression] = STATE(675), - [sym_primary_expression] = STATE(744), - [sym_yield_expression] = STATE(745), - [sym_object] = STATE(736), - [sym_object_pattern] = STATE(1605), - [sym_array] = STATE(736), - [sym_array_pattern] = STATE(1605), - [sym_glimmer_template] = STATE(745), - [sym_glimmer_opening_tag] = STATE(1202), - [sym_jsx_element] = STATE(745), - [sym_jsx_fragment] = STATE(745), - [sym_jsx_opening_element] = STATE(1016), - [sym_jsx_self_closing_element] = STATE(745), - [sym_class] = STATE(736), - [sym_function] = STATE(736), - [sym_generator_function] = STATE(736), - [sym_arrow_function] = STATE(736), - [sym_call_expression] = STATE(736), - [sym_new_expression] = STATE(745), - [sym_await_expression] = STATE(745), - [sym_member_expression] = STATE(482), - [sym_subscript_expression] = STATE(482), - [sym_assignment_expression] = STATE(745), - [sym__augmented_assignment_lhs] = STATE(979), - [sym_augmented_assignment_expression] = STATE(745), - [sym__destructuring_pattern] = STATE(1605), - [sym_ternary_expression] = STATE(745), - [sym_binary_expression] = STATE(745), - [sym_unary_expression] = STATE(745), - [sym_update_expression] = STATE(745), - [sym_string] = STATE(736), - [sym_template_string] = STATE(736), - [sym_regex] = STATE(736), - [sym_meta_property] = STATE(736), - [sym_decorator] = STATE(1007), - [sym_formal_parameters] = STATE(1602), - [aux_sym_export_statement_repeat1] = STATE(1198), - [sym_identifier] = ACTIONS(465), - [anon_sym_export] = ACTIONS(467), - [anon_sym_LBRACE] = ACTIONS(439), - [anon_sym_import] = ACTIONS(441), - [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_SLASH] = ACTIONS(59), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(471), - [anon_sym_function] = ACTIONS(453), - [anon_sym_new] = ACTIONS(67), - [anon_sym_PLUS] = ACTIONS(69), - [anon_sym_DASH] = ACTIONS(69), - [anon_sym_BANG] = ACTIONS(71), - [anon_sym_TILDE] = ACTIONS(71), - [anon_sym_typeof] = ACTIONS(69), - [anon_sym_void] = ACTIONS(69), - [anon_sym_delete] = ACTIONS(69), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(81), - [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(83), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(85), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(467), - [anon_sym_get] = ACTIONS(467), - [anon_sym_set] = ACTIONS(467), - }, - [277] = { - [sym_export_clause] = STATE(1207), - [sym_declaration] = STATE(362), - [sym_namespace_import_export] = STATE(1535), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_class_declaration] = STATE(358), - [sym_function_declaration] = STATE(358), - [sym_generator_function_declaration] = STATE(358), - [sym_decorator] = STATE(1007), - [aux_sym_export_statement_repeat1] = STATE(1211), - [aux_sym_object_repeat1] = STATE(1337), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_default] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_var] = ACTIONS(822), - [anon_sym_let] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_class] = ACTIONS(836), - [anon_sym_async] = ACTIONS(838), - [anon_sym_function] = ACTIONS(840), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [anon_sym_AT] = ACTIONS(87), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [278] = { - [sym_export_clause] = STATE(1207), - [sym_declaration] = STATE(362), - [sym_namespace_import_export] = STATE(1535), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_class_declaration] = STATE(358), - [sym_function_declaration] = STATE(358), - [sym_generator_function_declaration] = STATE(358), - [sym_decorator] = STATE(1007), - [aux_sym_export_statement_repeat1] = STATE(1211), - [aux_sym_object_repeat1] = STATE(1337), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_default] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_var] = ACTIONS(822), - [anon_sym_let] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_class] = ACTIONS(836), - [anon_sym_async] = ACTIONS(838), - [anon_sym_function] = ACTIONS(840), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [anon_sym_AT] = ACTIONS(87), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [279] = { - [sym_export_clause] = STATE(1207), - [sym_declaration] = STATE(362), - [sym_namespace_import_export] = STATE(1535), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_class_declaration] = STATE(358), - [sym_function_declaration] = STATE(358), - [sym_generator_function_declaration] = STATE(358), - [sym_decorator] = STATE(1007), - [aux_sym_export_statement_repeat1] = STATE(1211), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_default] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(848), - [anon_sym_var] = ACTIONS(822), - [anon_sym_let] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_class] = ACTIONS(836), - [anon_sym_async] = ACTIONS(838), - [anon_sym_function] = ACTIONS(840), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [anon_sym_AT] = ACTIONS(87), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [280] = { - [sym_export_clause] = STATE(1207), - [sym_declaration] = STATE(362), - [sym_namespace_import_export] = STATE(1535), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_class_declaration] = STATE(358), - [sym_function_declaration] = STATE(358), - [sym_generator_function_declaration] = STATE(358), - [sym_decorator] = STATE(1007), - [aux_sym_export_statement_repeat1] = STATE(1211), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_default] = ACTIONS(850), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_var] = ACTIONS(822), - [anon_sym_let] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(818), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(852), - [anon_sym_EQ] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_class] = ACTIONS(836), - [anon_sym_async] = ACTIONS(838), - [anon_sym_function] = ACTIONS(840), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [anon_sym_AT] = ACTIONS(87), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [281] = { - [sym_export_clause] = STATE(1207), - [sym_declaration] = STATE(362), - [sym_namespace_import_export] = STATE(1535), - [sym_variable_declaration] = STATE(358), - [sym_lexical_declaration] = STATE(358), - [sym_class_declaration] = STATE(358), - [sym_function_declaration] = STATE(358), - [sym_generator_function_declaration] = STATE(358), - [sym_decorator] = STATE(1007), - [aux_sym_export_statement_repeat1] = STATE(1211), - [anon_sym_STAR] = ACTIONS(812), - [anon_sym_default] = ACTIONS(814), - [anon_sym_LBRACE] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_var] = ACTIONS(822), - [anon_sym_let] = ACTIONS(824), - [anon_sym_const] = ACTIONS(824), - [anon_sym_LPAREN] = ACTIONS(818), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(856), - [anon_sym_EQ] = ACTIONS(854), - [anon_sym_LBRACK] = ACTIONS(818), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(818), - [anon_sym_class] = ACTIONS(836), - [anon_sym_async] = ACTIONS(838), - [anon_sym_function] = ACTIONS(840), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(818), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [anon_sym_AT] = ACTIONS(87), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [282] = { - [sym_string] = STATE(1438), - [sym_formal_parameters] = STATE(1609), - [sym__property_name] = STATE(1438), - [sym_computed_property_name] = STATE(1438), - [aux_sym_object_repeat1] = STATE(1337), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(858), - [anon_sym_export] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_async] = ACTIONS(860), - [anon_sym_function] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [sym_number] = ACTIONS(878), - [sym_private_property_identifier] = ACTIONS(878), - [anon_sym_static] = ACTIONS(860), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [283] = { - [sym_string] = STATE(1438), - [sym_formal_parameters] = STATE(1609), - [sym__property_name] = STATE(1438), - [sym_computed_property_name] = STATE(1438), - [aux_sym_object_repeat1] = STATE(1337), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(858), - [anon_sym_export] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_async] = ACTIONS(860), - [anon_sym_function] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [sym_number] = ACTIONS(878), - [sym_private_property_identifier] = ACTIONS(878), - [anon_sym_static] = ACTIONS(860), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [284] = { - [sym_string] = STATE(1438), - [sym_formal_parameters] = STATE(1609), - [sym__property_name] = STATE(1438), - [sym_computed_property_name] = STATE(1438), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(858), - [anon_sym_export] = ACTIONS(860), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(848), - [anon_sym_LPAREN] = ACTIONS(865), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_async] = ACTIONS(860), - [anon_sym_function] = ACTIONS(872), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [sym_number] = ACTIONS(878), - [sym_private_property_identifier] = ACTIONS(878), - [anon_sym_static] = ACTIONS(860), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [285] = { - [sym_string] = STATE(1438), - [sym__property_name] = STATE(1438), - [sym_computed_property_name] = STATE(1438), - [aux_sym_object_repeat1] = STATE(1337), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_async] = ACTIONS(884), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [sym_number] = ACTIONS(878), - [sym_private_property_identifier] = ACTIONS(878), - [anon_sym_static] = ACTIONS(882), - [anon_sym_get] = ACTIONS(886), - [anon_sym_set] = ACTIONS(886), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [286] = { - [sym_string] = STATE(1438), - [sym__property_name] = STATE(1438), - [sym_computed_property_name] = STATE(1438), - [aux_sym_object_repeat1] = STATE(1337), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_async] = ACTIONS(882), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [sym_number] = ACTIONS(878), - [sym_private_property_identifier] = ACTIONS(878), - [anon_sym_static] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [287] = { - [sym_string] = STATE(1438), - [sym__property_name] = STATE(1438), - [sym_computed_property_name] = STATE(1438), - [aux_sym_object_repeat1] = STATE(1337), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(820), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_async] = ACTIONS(882), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [sym_number] = ACTIONS(878), - [sym_private_property_identifier] = ACTIONS(878), - [anon_sym_static] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [288] = { - [sym_string] = STATE(1438), - [sym__property_name] = STATE(1438), - [sym_computed_property_name] = STATE(1438), - [aux_sym_object_repeat1] = STATE(1337), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_async] = ACTIONS(884), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [sym_number] = ACTIONS(878), - [sym_private_property_identifier] = ACTIONS(878), - [anon_sym_static] = ACTIONS(882), - [anon_sym_get] = ACTIONS(886), - [anon_sym_set] = ACTIONS(886), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [289] = { - [sym_string] = STATE(1438), - [sym__property_name] = STATE(1438), - [sym_computed_property_name] = STATE(1438), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(862), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(848), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_async] = ACTIONS(884), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [sym_number] = ACTIONS(878), - [sym_private_property_identifier] = ACTIONS(878), - [anon_sym_static] = ACTIONS(882), - [anon_sym_get] = ACTIONS(886), - [anon_sym_set] = ACTIONS(886), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [290] = { - [sym_string] = STATE(1438), - [sym__property_name] = STATE(1438), - [sym_computed_property_name] = STATE(1438), - [aux_sym_object_repeat1] = STATE(1301), - [aux_sym_object_pattern_repeat1] = STATE(1267), - [sym_identifier] = ACTIONS(882), - [anon_sym_export] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(829), - [anon_sym_COMMA] = ACTIONS(818), - [anon_sym_RBRACE] = ACTIONS(848), - [anon_sym_LPAREN] = ACTIONS(826), - [anon_sym_in] = ACTIONS(829), - [anon_sym_SEMI] = ACTIONS(818), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_EQ] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(869), - [anon_sym_LT] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(829), - [anon_sym_SLASH] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(829), - [anon_sym_async] = ACTIONS(882), - [anon_sym_EQ_GT] = ACTIONS(842), - [sym_optional_chain] = ACTIONS(818), - [anon_sym_PLUS_EQ] = ACTIONS(844), - [anon_sym_DASH_EQ] = ACTIONS(844), - [anon_sym_STAR_EQ] = ACTIONS(844), - [anon_sym_SLASH_EQ] = ACTIONS(844), - [anon_sym_PERCENT_EQ] = ACTIONS(844), - [anon_sym_CARET_EQ] = ACTIONS(844), - [anon_sym_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_EQ] = ACTIONS(844), - [anon_sym_GT_GT_EQ] = ACTIONS(844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(844), - [anon_sym_LT_LT_EQ] = ACTIONS(844), - [anon_sym_STAR_STAR_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP_EQ] = ACTIONS(844), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(844), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(844), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_GT_GT] = ACTIONS(829), - [anon_sym_GT_GT_GT] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(829), - [anon_sym_AMP] = ACTIONS(829), - [anon_sym_CARET] = ACTIONS(829), - [anon_sym_PIPE] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(829), - [anon_sym_DASH] = ACTIONS(829), - [anon_sym_PERCENT] = ACTIONS(829), - [anon_sym_STAR_STAR] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(818), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_EQ_EQ_EQ] = ACTIONS(818), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ_EQ] = ACTIONS(818), - [anon_sym_GT_EQ] = ACTIONS(818), - [anon_sym_QMARK_QMARK] = ACTIONS(829), - [anon_sym_instanceof] = ACTIONS(829), - [anon_sym_PLUS_PLUS] = ACTIONS(818), - [anon_sym_DASH_DASH] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(818), - [sym_number] = ACTIONS(878), - [sym_private_property_identifier] = ACTIONS(878), - [anon_sym_static] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [sym__automatic_semicolon] = ACTIONS(818), - [sym__ternary_qmark] = ACTIONS(818), - }, - [291] = { - [ts_builtin_sym_end] = ACTIONS(651), - [sym_identifier] = ACTIONS(653), - [anon_sym_export] = ACTIONS(653), - [anon_sym_default] = ACTIONS(653), - [anon_sym_LBRACE] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_RBRACE] = ACTIONS(651), - [anon_sym_import] = ACTIONS(653), - [anon_sym_var] = ACTIONS(653), - [anon_sym_let] = ACTIONS(653), - [anon_sym_const] = ACTIONS(653), - [anon_sym_else] = ACTIONS(653), - [anon_sym_if] = ACTIONS(653), - [anon_sym_switch] = ACTIONS(653), - [anon_sym_for] = ACTIONS(653), - [anon_sym_LPAREN] = ACTIONS(651), - [anon_sym_await] = ACTIONS(653), - [anon_sym_while] = ACTIONS(653), - [anon_sym_do] = ACTIONS(653), - [anon_sym_try] = ACTIONS(653), - [anon_sym_with] = ACTIONS(653), - [anon_sym_break] = ACTIONS(653), - [anon_sym_continue] = ACTIONS(653), - [anon_sym_debugger] = ACTIONS(653), - [anon_sym_return] = ACTIONS(653), - [anon_sym_throw] = ACTIONS(653), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_case] = ACTIONS(653), - [anon_sym_catch] = ACTIONS(653), - [anon_sym_finally] = ACTIONS(653), - [anon_sym_yield] = ACTIONS(653), - [anon_sym_LBRACK] = ACTIONS(651), - [anon_sym_LTtemplate_GT] = ACTIONS(651), - [anon_sym_LT] = ACTIONS(653), - [anon_sym_SLASH] = ACTIONS(653), - [anon_sym_class] = ACTIONS(653), - [anon_sym_async] = ACTIONS(653), - [anon_sym_function] = ACTIONS(653), - [anon_sym_new] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(653), - [anon_sym_DASH] = ACTIONS(653), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(651), - [anon_sym_typeof] = ACTIONS(653), - [anon_sym_void] = ACTIONS(653), - [anon_sym_delete] = ACTIONS(653), - [anon_sym_PLUS_PLUS] = ACTIONS(651), - [anon_sym_DASH_DASH] = ACTIONS(651), - [anon_sym_DQUOTE] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(651), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(651), - [sym_number] = ACTIONS(651), - [sym_this] = ACTIONS(653), - [sym_super] = ACTIONS(653), - [sym_true] = ACTIONS(653), - [sym_false] = ACTIONS(653), - [sym_null] = ACTIONS(653), - [sym_undefined] = ACTIONS(653), - [anon_sym_AT] = ACTIONS(651), - [anon_sym_static] = ACTIONS(653), - [anon_sym_get] = ACTIONS(653), - [anon_sym_set] = ACTIONS(653), - [sym_preproc] = ACTIONS(651), - [sym__automatic_semicolon] = ACTIONS(888), - }, - [292] = { - [sym_catch_clause] = STATE(306), - [sym_finally_clause] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(890), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(892), - [anon_sym_default] = ACTIONS(892), - [anon_sym_LBRACE] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_import] = ACTIONS(892), - [anon_sym_var] = ACTIONS(892), - [anon_sym_let] = ACTIONS(892), - [anon_sym_const] = ACTIONS(892), - [anon_sym_else] = ACTIONS(892), - [anon_sym_if] = ACTIONS(892), - [anon_sym_switch] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_await] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [anon_sym_do] = ACTIONS(892), - [anon_sym_try] = ACTIONS(892), - [anon_sym_with] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_debugger] = ACTIONS(892), - [anon_sym_return] = ACTIONS(892), - [anon_sym_throw] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_case] = ACTIONS(892), - [anon_sym_catch] = ACTIONS(894), - [anon_sym_finally] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(892), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_LTtemplate_GT] = ACTIONS(890), - [anon_sym_LT] = ACTIONS(892), - [anon_sym_SLASH] = ACTIONS(892), - [anon_sym_class] = ACTIONS(892), - [anon_sym_async] = ACTIONS(892), - [anon_sym_function] = ACTIONS(892), - [anon_sym_new] = ACTIONS(892), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_BANG] = ACTIONS(890), - [anon_sym_TILDE] = ACTIONS(890), - [anon_sym_typeof] = ACTIONS(892), - [anon_sym_void] = ACTIONS(892), - [anon_sym_delete] = ACTIONS(892), - [anon_sym_PLUS_PLUS] = ACTIONS(890), - [anon_sym_DASH_DASH] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(890), - [anon_sym_SQUOTE] = ACTIONS(890), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(890), - [sym_number] = ACTIONS(890), - [sym_this] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_true] = ACTIONS(892), - [sym_false] = ACTIONS(892), - [sym_null] = ACTIONS(892), - [sym_undefined] = ACTIONS(892), - [anon_sym_AT] = ACTIONS(890), - [anon_sym_static] = ACTIONS(892), - [anon_sym_get] = ACTIONS(892), - [anon_sym_set] = ACTIONS(892), - [sym_preproc] = ACTIONS(890), - }, - [293] = { - [ts_builtin_sym_end] = ACTIONS(523), - [sym_identifier] = ACTIONS(525), - [anon_sym_export] = ACTIONS(525), - [anon_sym_default] = ACTIONS(525), - [anon_sym_LBRACE] = ACTIONS(523), - [anon_sym_COMMA] = ACTIONS(523), - [anon_sym_RBRACE] = ACTIONS(523), - [anon_sym_import] = ACTIONS(525), - [anon_sym_var] = ACTIONS(525), - [anon_sym_let] = ACTIONS(525), - [anon_sym_const] = ACTIONS(525), - [anon_sym_else] = ACTIONS(525), - [anon_sym_if] = ACTIONS(525), - [anon_sym_switch] = ACTIONS(525), - [anon_sym_for] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(523), - [anon_sym_await] = ACTIONS(525), - [anon_sym_while] = ACTIONS(525), - [anon_sym_do] = ACTIONS(525), - [anon_sym_try] = ACTIONS(525), - [anon_sym_with] = ACTIONS(525), - [anon_sym_break] = ACTIONS(525), - [anon_sym_continue] = ACTIONS(525), - [anon_sym_debugger] = ACTIONS(525), - [anon_sym_return] = ACTIONS(525), - [anon_sym_throw] = ACTIONS(525), - [anon_sym_SEMI] = ACTIONS(523), - [anon_sym_case] = ACTIONS(525), - [anon_sym_catch] = ACTIONS(525), - [anon_sym_finally] = ACTIONS(525), - [anon_sym_yield] = ACTIONS(525), - [anon_sym_LBRACK] = ACTIONS(523), - [anon_sym_LTtemplate_GT] = ACTIONS(523), - [anon_sym_LT] = ACTIONS(525), - [anon_sym_SLASH] = ACTIONS(525), - [anon_sym_class] = ACTIONS(525), - [anon_sym_async] = ACTIONS(525), - [anon_sym_function] = ACTIONS(525), - [anon_sym_new] = ACTIONS(525), - [anon_sym_PLUS] = ACTIONS(525), - [anon_sym_DASH] = ACTIONS(525), - [anon_sym_BANG] = ACTIONS(523), - [anon_sym_TILDE] = ACTIONS(523), - [anon_sym_typeof] = ACTIONS(525), - [anon_sym_void] = ACTIONS(525), - [anon_sym_delete] = ACTIONS(525), - [anon_sym_PLUS_PLUS] = ACTIONS(523), - [anon_sym_DASH_DASH] = ACTIONS(523), - [anon_sym_DQUOTE] = ACTIONS(523), - [anon_sym_SQUOTE] = ACTIONS(523), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(523), - [sym_number] = ACTIONS(523), - [sym_this] = ACTIONS(525), - [sym_super] = ACTIONS(525), - [sym_true] = ACTIONS(525), - [sym_false] = ACTIONS(525), - [sym_null] = ACTIONS(525), - [sym_undefined] = ACTIONS(525), - [anon_sym_AT] = ACTIONS(523), - [anon_sym_static] = ACTIONS(525), - [anon_sym_get] = ACTIONS(525), - [anon_sym_set] = ACTIONS(525), - [sym_preproc] = ACTIONS(523), - [sym__automatic_semicolon] = ACTIONS(533), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(585), 45, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_catch, - anon_sym_finally, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [71] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(907), 1, - anon_sym_function, - ACTIONS(909), 1, - anon_sym_EQ_GT, - STATE(1657), 1, - sym_formal_parameters, - ACTIONS(900), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 16, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [158] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, - anon_sym_function, - ACTIONS(909), 1, - anon_sym_EQ_GT, - ACTIONS(911), 1, - anon_sym_EQ, - STATE(1657), 1, - sym_formal_parameters, - ACTIONS(900), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 16, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(651), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(653), 45, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_catch, - anon_sym_finally, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [316] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(913), 1, - sym_identifier, - ACTIONS(917), 1, - anon_sym_function, - ACTIONS(919), 1, - anon_sym_EQ_GT, - STATE(1575), 1, - sym_formal_parameters, - ACTIONS(915), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [402] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(913), 1, - sym_identifier, - ACTIONS(917), 1, - anon_sym_function, - ACTIONS(919), 1, - anon_sym_EQ_GT, - ACTIONS(921), 1, - anon_sym_EQ, - STATE(1575), 1, - sym_formal_parameters, - ACTIONS(915), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 22, - anon_sym_STAR, - anon_sym_in, - anon_sym_of, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [488] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(907), 1, - anon_sym_function, - ACTIONS(923), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_EQ_GT, - STATE(1661), 1, - sym_formal_parameters, - ACTIONS(927), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(925), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [576] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, - anon_sym_EQ, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(917), 1, - anon_sym_function, - ACTIONS(931), 1, - sym_identifier, - ACTIONS(935), 1, - anon_sym_in, - ACTIONS(938), 1, - anon_sym_of, - STATE(1609), 1, - sym_formal_parameters, - ACTIONS(933), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 20, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [666] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, - anon_sym_function, - ACTIONS(923), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_EQ_GT, - ACTIONS(942), 1, - anon_sym_EQ, - STATE(1661), 1, - sym_formal_parameters, - ACTIONS(940), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(925), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [754] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_EQ_GT, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(917), 1, - anon_sym_function, - ACTIONS(931), 1, - sym_identifier, - STATE(1609), 1, - sym_formal_parameters, - ACTIONS(933), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [840] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, - anon_sym_function, - ACTIONS(909), 1, - anon_sym_EQ_GT, - ACTIONS(948), 1, - anon_sym_EQ, - STATE(1657), 1, - sym_formal_parameters, - ACTIONS(945), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(900), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [928] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, - anon_sym_EQ, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(917), 1, - anon_sym_function, - ACTIONS(931), 1, - sym_identifier, - STATE(1609), 1, - sym_formal_parameters, - ACTIONS(933), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 15, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1014] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(896), 1, - anon_sym_finally, - STATE(380), 1, - sym_finally_clause, - ACTIONS(951), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(953), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1088] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_EQ_GT, - ACTIONS(852), 1, - anon_sym_COLON, - ACTIONS(854), 1, - anon_sym_EQ, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - sym_identifier, - ACTIONS(955), 1, - anon_sym_function, - STATE(1609), 1, - sym_formal_parameters, - ACTIONS(933), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1176] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, - anon_sym_EQ, - ACTIONS(856), 1, - anon_sym_COLON, - ACTIONS(872), 1, - anon_sym_function, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, - sym_identifier, - STATE(1609), 1, - sym_formal_parameters, - ACTIONS(933), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1264] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(637), 1, - sym__automatic_semicolon, - ACTIONS(629), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(631), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1335] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(961), 1, - anon_sym_else, - STATE(405), 1, - sym_else_clause, - ACTIONS(957), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(959), 42, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1408] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(963), 1, - sym__automatic_semicolon, - ACTIONS(651), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(653), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1479] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, - anon_sym_function, - ACTIONS(909), 1, - anon_sym_EQ_GT, - ACTIONS(911), 1, - anon_sym_EQ, - STATE(1657), 1, - sym_formal_parameters, - ACTIONS(965), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(900), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [1566] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(559), 1, - sym__automatic_semicolon, - ACTIONS(551), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(553), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(968), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(970), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1706] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(675), 1, - sym__automatic_semicolon, - ACTIONS(667), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(669), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 18, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(974), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(615), 1, - sym__automatic_semicolon, - ACTIONS(607), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(609), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(976), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(978), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_finally, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [1986] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(627), 1, - sym__automatic_semicolon, - ACTIONS(619), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(621), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(583), 18, - sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(585), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2126] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(980), 1, - sym__automatic_semicolon, - ACTIONS(523), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(525), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(651), 18, - sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(653), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(597), 18, - sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(599), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(982), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(984), 44, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_finally, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 18, - sym__automatic_semicolon, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(605), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2473] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(665), 1, - sym__automatic_semicolon, - ACTIONS(657), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(659), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, - sym__automatic_semicolon, - ACTIONS(639), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(641), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2615] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(595), 1, - sym__automatic_semicolon, - ACTIONS(587), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(589), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(986), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(988), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(990), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(992), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2822] = 3, - ACTIONS(3), 1, + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(847), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), + }, + [264] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(527), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), + }, + [265] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(829), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), + }, + [266] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(830), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), + }, + [267] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(627), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [268] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(531), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), + }, + [269] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(833), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), + }, + [270] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(664), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [271] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(630), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [272] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(811), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), + }, + [273] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(505), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), + }, + [274] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(634), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [275] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(638), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [276] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(858), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), + }, + [277] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(642), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [278] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(555), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), + }, + [279] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(646), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [280] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(649), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [281] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(652), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [282] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(653), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [283] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(655), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [284] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(614), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [285] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(676), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), + }, + [286] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(542), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), + }, + [287] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(659), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [288] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(662), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [289] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(684), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), + }, + [290] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(809), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), + }, + [291] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(489), + [sym_expression] = STATE(675), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1727), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1727), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(489), + [sym_subscript_expression] = STATE(489), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1043), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1727), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1725), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(451), + [anon_sym_export] = ACTIONS(453), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(453), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(37), + [anon_sym_yield] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(457), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(73), + [anon_sym_PLUS] = ACTIONS(75), + [anon_sym_DASH] = ACTIONS(75), + [anon_sym_SLASH] = ACTIONS(77), + [anon_sym_BANG] = ACTIONS(79), + [anon_sym_TILDE] = ACTIONS(79), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_void] = ACTIONS(75), + [anon_sym_delete] = ACTIONS(75), + [anon_sym_PLUS_PLUS] = ACTIONS(81), + [anon_sym_DASH_DASH] = ACTIONS(81), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(459), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(453), + [anon_sym_get] = ACTIONS(453), + [anon_sym_set] = ACTIONS(453), + [sym_html_comment] = ACTIONS(5), + }, + [292] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(845), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), + }, + [293] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(454), + [sym_expression] = STATE(844), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1745), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1745), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(454), + [sym_subscript_expression] = STATE(454), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1044), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1745), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1656), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(361), + [anon_sym_export] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(367), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(375), + [anon_sym_yield] = ACTIONS(379), + [anon_sym_LBRACK] = ACTIONS(381), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(393), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_TILDE] = ACTIONS(403), + [anon_sym_typeof] = ACTIONS(399), + [anon_sym_void] = ACTIONS(399), + [anon_sym_delete] = ACTIONS(399), + [anon_sym_PLUS_PLUS] = ACTIONS(405), + [anon_sym_DASH_DASH] = ACTIONS(405), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(415), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(363), + [anon_sym_get] = ACTIONS(363), + [anon_sym_set] = ACTIONS(363), + [sym_html_comment] = ACTIONS(5), + }, + [294] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(435), + [sym_expression] = STATE(810), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1689), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1689), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(435), + [sym_subscript_expression] = STATE(435), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1038), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1689), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1744), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(461), + [anon_sym_export] = ACTIONS(463), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(463), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(469), + [anon_sym_yield] = ACTIONS(471), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(475), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(477), + [anon_sym_PLUS] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(479), + [anon_sym_SLASH] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(481), + [anon_sym_TILDE] = ACTIONS(481), + [anon_sym_typeof] = ACTIONS(479), + [anon_sym_void] = ACTIONS(479), + [anon_sym_delete] = ACTIONS(479), + [anon_sym_PLUS_PLUS] = ACTIONS(483), + [anon_sym_DASH_DASH] = ACTIONS(483), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(485), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(487), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(463), + [anon_sym_get] = ACTIONS(463), + [anon_sym_set] = ACTIONS(463), + [sym_html_comment] = ACTIONS(5), + }, + [295] = { + [sym_import] = STATE(1121), + [sym_parenthesized_expression] = STATE(504), + [sym_expression] = STATE(846), + [sym_primary_expression] = STATE(581), + [sym_yield_expression] = STATE(580), + [sym_object] = STATE(584), + [sym_object_pattern] = STATE(1750), + [sym_array] = STATE(584), + [sym_array_pattern] = STATE(1750), + [sym_glimmer_template] = STATE(580), + [sym_jsx_element] = STATE(580), + [sym_jsx_opening_element] = STATE(1052), + [sym_jsx_self_closing_element] = STATE(580), + [sym_class] = STATE(584), + [sym_function_expression] = STATE(584), + [sym_generator_function] = STATE(584), + [sym_arrow_function] = STATE(584), + [sym_call_expression] = STATE(584), + [sym_new_expression] = STATE(580), + [sym_await_expression] = STATE(580), + [sym_member_expression] = STATE(504), + [sym_subscript_expression] = STATE(504), + [sym_assignment_expression] = STATE(580), + [sym__augmented_assignment_lhs] = STATE(1047), + [sym_augmented_assignment_expression] = STATE(580), + [sym__destructuring_pattern] = STATE(1750), + [sym_ternary_expression] = STATE(580), + [sym_binary_expression] = STATE(580), + [sym_unary_expression] = STATE(580), + [sym_update_expression] = STATE(580), + [sym_string] = STATE(584), + [sym_template_string] = STATE(584), + [sym_regex] = STATE(584), + [sym_meta_property] = STATE(584), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1731), + [aux_sym_export_statement_repeat1] = STATE(1274), + [sym_identifier] = ACTIONS(489), + [anon_sym_export] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(467), + [anon_sym_import] = ACTIONS(371), + [anon_sym_let] = ACTIONS(491), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_await] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(497), + [anon_sym_LBRACK] = ACTIONS(473), + [sym_glimmer_opening_tag] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(385), + [anon_sym_DQUOTE] = ACTIONS(387), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_class] = ACTIONS(391), + [anon_sym_async] = ACTIONS(499), + [anon_sym_function] = ACTIONS(395), + [anon_sym_new] = ACTIONS(501), + [anon_sym_PLUS] = ACTIONS(503), + [anon_sym_DASH] = ACTIONS(503), + [anon_sym_SLASH] = ACTIONS(505), + [anon_sym_BANG] = ACTIONS(507), + [anon_sym_TILDE] = ACTIONS(507), + [anon_sym_typeof] = ACTIONS(503), + [anon_sym_void] = ACTIONS(503), + [anon_sym_delete] = ACTIONS(503), + [anon_sym_PLUS_PLUS] = ACTIONS(509), + [anon_sym_DASH_DASH] = ACTIONS(509), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(407), + [sym_number] = ACTIONS(409), + [sym_private_property_identifier] = ACTIONS(511), + [sym_this] = ACTIONS(413), + [sym_super] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [sym_null] = ACTIONS(413), + [sym_undefined] = ACTIONS(513), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(491), + [anon_sym_get] = ACTIONS(491), + [anon_sym_set] = ACTIONS(491), + [sym_html_comment] = ACTIONS(5), + }, + [296] = { + [sym_import] = STATE(1130), + [sym_parenthesized_expression] = STATE(484), + [sym_expression] = STATE(608), + [sym_primary_expression] = STATE(774), + [sym_yield_expression] = STATE(782), + [sym_object] = STATE(747), + [sym_object_pattern] = STATE(1652), + [sym_array] = STATE(747), + [sym_array_pattern] = STATE(1652), + [sym_glimmer_template] = STATE(782), + [sym_jsx_element] = STATE(782), + [sym_jsx_opening_element] = STATE(1058), + [sym_jsx_self_closing_element] = STATE(782), + [sym_class] = STATE(747), + [sym_function_expression] = STATE(747), + [sym_generator_function] = STATE(747), + [sym_arrow_function] = STATE(747), + [sym_call_expression] = STATE(747), + [sym_new_expression] = STATE(782), + [sym_await_expression] = STATE(782), + [sym_member_expression] = STATE(484), + [sym_subscript_expression] = STATE(484), + [sym_assignment_expression] = STATE(782), + [sym__augmented_assignment_lhs] = STATE(1036), + [sym_augmented_assignment_expression] = STATE(782), + [sym__destructuring_pattern] = STATE(1652), + [sym_ternary_expression] = STATE(782), + [sym_binary_expression] = STATE(782), + [sym_unary_expression] = STATE(782), + [sym_update_expression] = STATE(782), + [sym_string] = STATE(747), + [sym_template_string] = STATE(747), + [sym_regex] = STATE(747), + [sym_meta_property] = STATE(747), + [sym_decorator] = STATE(1017), + [sym_formal_parameters] = STATE(1651), + [aux_sym_export_statement_repeat1] = STATE(1249), + [sym_identifier] = ACTIONS(417), + [anon_sym_export] = ACTIONS(419), + [anon_sym_LBRACE] = ACTIONS(423), + [anon_sym_import] = ACTIONS(425), + [anon_sym_let] = ACTIONS(419), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_await] = ACTIONS(427), + [anon_sym_yield] = ACTIONS(429), + [anon_sym_LBRACK] = ACTIONS(57), + [sym_glimmer_opening_tag] = ACTIONS(59), + [anon_sym_LT] = ACTIONS(61), + [anon_sym_DQUOTE] = ACTIONS(63), + [anon_sym_SQUOTE] = ACTIONS(65), + [anon_sym_class] = ACTIONS(431), + [anon_sym_async] = ACTIONS(433), + [anon_sym_function] = ACTIONS(435), + [anon_sym_new] = ACTIONS(437), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_DASH] = ACTIONS(439), + [anon_sym_SLASH] = ACTIONS(441), + [anon_sym_BANG] = ACTIONS(443), + [anon_sym_TILDE] = ACTIONS(443), + [anon_sym_typeof] = ACTIONS(439), + [anon_sym_void] = ACTIONS(439), + [anon_sym_delete] = ACTIONS(439), + [anon_sym_PLUS_PLUS] = ACTIONS(445), + [anon_sym_DASH_DASH] = ACTIONS(445), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(83), + [sym_number] = ACTIONS(85), + [sym_private_property_identifier] = ACTIONS(447), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(449), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(419), + [anon_sym_get] = ACTIONS(419), + [anon_sym_set] = ACTIONS(419), + [sym_html_comment] = ACTIONS(5), + }, + [297] = { + [sym_namespace_export] = STATE(1425), + [sym_export_clause] = STATE(1238), + [sym_declaration] = STATE(403), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_class_declaration] = STATE(368), + [sym_function_declaration] = STATE(368), + [sym_generator_function_declaration] = STATE(368), + [sym_decorator] = STATE(1017), + [aux_sym_export_statement_repeat1] = STATE(1251), + [aux_sym_object_repeat1] = STATE(1378), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_default] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_var] = ACTIONS(828), + [anon_sym_let] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(824), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [298] = { + [sym_namespace_export] = STATE(1425), + [sym_export_clause] = STATE(1238), + [sym_declaration] = STATE(403), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_class_declaration] = STATE(368), + [sym_function_declaration] = STATE(368), + [sym_generator_function_declaration] = STATE(368), + [sym_decorator] = STATE(1017), + [aux_sym_export_statement_repeat1] = STATE(1251), + [aux_sym_object_repeat1] = STATE(1378), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_default] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_var] = ACTIONS(828), + [anon_sym_let] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(824), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [299] = { + [sym_namespace_export] = STATE(1425), + [sym_export_clause] = STATE(1238), + [sym_declaration] = STATE(403), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_class_declaration] = STATE(368), + [sym_function_declaration] = STATE(368), + [sym_generator_function_declaration] = STATE(368), + [sym_decorator] = STATE(1017), + [aux_sym_export_statement_repeat1] = STATE(1251), + [aux_sym_object_repeat1] = STATE(1301), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_default] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_var] = ACTIONS(828), + [anon_sym_let] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(824), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [300] = { + [sym_namespace_export] = STATE(1425), + [sym_export_clause] = STATE(1238), + [sym_declaration] = STATE(403), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_class_declaration] = STATE(368), + [sym_function_declaration] = STATE(368), + [sym_generator_function_declaration] = STATE(368), + [sym_decorator] = STATE(1017), + [aux_sym_export_statement_repeat1] = STATE(1251), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_default] = ACTIONS(856), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_var] = ACTIONS(828), + [anon_sym_let] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(824), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(824), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [301] = { + [sym_namespace_export] = STATE(1425), + [sym_export_clause] = STATE(1238), + [sym_declaration] = STATE(403), + [sym_variable_declaration] = STATE(368), + [sym_lexical_declaration] = STATE(368), + [sym_class_declaration] = STATE(368), + [sym_function_declaration] = STATE(368), + [sym_generator_function_declaration] = STATE(368), + [sym_decorator] = STATE(1017), + [aux_sym_export_statement_repeat1] = STATE(1251), + [anon_sym_STAR] = ACTIONS(818), + [anon_sym_default] = ACTIONS(820), + [anon_sym_LBRACE] = ACTIONS(822), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_var] = ACTIONS(828), + [anon_sym_let] = ACTIONS(830), + [anon_sym_const] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(824), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_class] = ACTIONS(842), + [anon_sym_async] = ACTIONS(844), + [anon_sym_function] = ACTIONS(846), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(824), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_AT] = ACTIONS(93), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [302] = { + [sym_string] = STATE(1622), + [sym_formal_parameters] = STATE(1674), + [sym__property_name] = STATE(1622), + [sym_computed_property_name] = STATE(1622), + [aux_sym_object_repeat1] = STATE(1301), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(864), + [anon_sym_export] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(868), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_let] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_async] = ACTIONS(866), + [anon_sym_function] = ACTIONS(882), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_number] = ACTIONS(884), + [sym_private_property_identifier] = ACTIONS(884), + [anon_sym_static] = ACTIONS(866), + [anon_sym_get] = ACTIONS(886), + [anon_sym_set] = ACTIONS(886), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [303] = { + [sym_string] = STATE(1622), + [sym_formal_parameters] = STATE(1674), + [sym__property_name] = STATE(1622), + [sym_computed_property_name] = STATE(1622), + [aux_sym_object_repeat1] = STATE(1378), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(864), + [anon_sym_export] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(868), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_let] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_async] = ACTIONS(866), + [anon_sym_function] = ACTIONS(882), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_number] = ACTIONS(884), + [sym_private_property_identifier] = ACTIONS(884), + [anon_sym_static] = ACTIONS(866), + [anon_sym_get] = ACTIONS(886), + [anon_sym_set] = ACTIONS(886), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [304] = { + [sym_string] = STATE(1622), + [sym_formal_parameters] = STATE(1674), + [sym__property_name] = STATE(1622), + [sym_computed_property_name] = STATE(1622), + [aux_sym_object_repeat1] = STATE(1378), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(864), + [anon_sym_export] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(868), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_let] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(871), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_async] = ACTIONS(866), + [anon_sym_function] = ACTIONS(882), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_number] = ACTIONS(884), + [sym_private_property_identifier] = ACTIONS(884), + [anon_sym_static] = ACTIONS(866), + [anon_sym_get] = ACTIONS(886), + [anon_sym_set] = ACTIONS(886), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [305] = { + [sym_string] = STATE(1622), + [sym__property_name] = STATE(1622), + [sym_computed_property_name] = STATE(1622), + [aux_sym_object_repeat1] = STATE(1301), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(868), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_let] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_async] = ACTIONS(890), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_number] = ACTIONS(884), + [sym_private_property_identifier] = ACTIONS(884), + [anon_sym_static] = ACTIONS(888), + [anon_sym_get] = ACTIONS(892), + [anon_sym_set] = ACTIONS(892), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [306] = { + [sym_string] = STATE(1622), + [sym__property_name] = STATE(1622), + [sym_computed_property_name] = STATE(1622), + [aux_sym_object_repeat1] = STATE(1378), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_let] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_async] = ACTIONS(888), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_number] = ACTIONS(884), + [sym_private_property_identifier] = ACTIONS(884), + [anon_sym_static] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [307] = { + [sym_string] = STATE(1622), + [sym__property_name] = STATE(1622), + [sym_computed_property_name] = STATE(1622), + [aux_sym_object_repeat1] = STATE(1378), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_let] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_async] = ACTIONS(888), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_number] = ACTIONS(884), + [sym_private_property_identifier] = ACTIONS(884), + [anon_sym_static] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [308] = { + [sym_string] = STATE(1622), + [sym__property_name] = STATE(1622), + [sym_computed_property_name] = STATE(1622), + [aux_sym_object_repeat1] = STATE(1378), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(868), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_let] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_async] = ACTIONS(890), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_number] = ACTIONS(884), + [sym_private_property_identifier] = ACTIONS(884), + [anon_sym_static] = ACTIONS(888), + [anon_sym_get] = ACTIONS(892), + [anon_sym_set] = ACTIONS(892), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [309] = { + [sym_string] = STATE(1622), + [sym__property_name] = STATE(1622), + [sym_computed_property_name] = STATE(1622), + [aux_sym_object_repeat1] = STATE(1378), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(868), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_let] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_async] = ACTIONS(890), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_number] = ACTIONS(884), + [sym_private_property_identifier] = ACTIONS(884), + [anon_sym_static] = ACTIONS(888), + [anon_sym_get] = ACTIONS(892), + [anon_sym_set] = ACTIONS(892), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [310] = { + [sym_string] = STATE(1622), + [sym__property_name] = STATE(1622), + [sym_computed_property_name] = STATE(1622), + [aux_sym_object_repeat1] = STATE(1301), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(888), + [anon_sym_export] = ACTIONS(888), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_let] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(875), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_async] = ACTIONS(888), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym_number] = ACTIONS(884), + [sym_private_property_identifier] = ACTIONS(884), + [anon_sym_static] = ACTIONS(888), + [anon_sym_get] = ACTIONS(888), + [anon_sym_set] = ACTIONS(888), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [311] = { + [sym_formal_parameters] = STATE(1743), + [sym_identifier] = ACTIONS(894), + [anon_sym_export] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_let] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_RBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_async] = ACTIONS(896), + [anon_sym_function] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(905), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_static] = ACTIONS(896), + [anon_sym_get] = ACTIONS(896), + [anon_sym_set] = ACTIONS(896), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [312] = { + [sym_formal_parameters] = STATE(1743), + [sym_identifier] = ACTIONS(894), + [anon_sym_export] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_let] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_RPAREN] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_RBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_async] = ACTIONS(896), + [anon_sym_function] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(905), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_static] = ACTIONS(896), + [anon_sym_get] = ACTIONS(896), + [anon_sym_set] = ACTIONS(896), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [313] = { + [ts_builtin_sym_end] = ACTIONS(569), + [sym_identifier] = ACTIONS(571), + [anon_sym_export] = ACTIONS(571), + [anon_sym_default] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(569), + [anon_sym_import] = ACTIONS(571), + [anon_sym_with] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_let] = ACTIONS(571), + [anon_sym_const] = ACTIONS(571), + [anon_sym_else] = ACTIONS(571), + [anon_sym_if] = ACTIONS(571), + [anon_sym_switch] = ACTIONS(571), + [anon_sym_for] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_await] = ACTIONS(571), + [anon_sym_while] = ACTIONS(571), + [anon_sym_do] = ACTIONS(571), + [anon_sym_try] = ACTIONS(571), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_debugger] = ACTIONS(571), + [anon_sym_return] = ACTIONS(571), + [anon_sym_throw] = ACTIONS(571), + [anon_sym_case] = ACTIONS(571), + [anon_sym_catch] = ACTIONS(571), + [anon_sym_finally] = ACTIONS(571), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(569), + [sym_glimmer_opening_tag] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_class] = ACTIONS(571), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(571), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(569), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(569), + [anon_sym_DASH_DASH] = ACTIONS(569), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(569), + [sym_number] = ACTIONS(569), + [sym_private_property_identifier] = ACTIONS(571), + [sym_this] = ACTIONS(571), + [sym_super] = ACTIONS(571), + [sym_true] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [sym_null] = ACTIONS(571), + [sym_undefined] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(569), + [anon_sym_static] = ACTIONS(571), + [anon_sym_get] = ACTIONS(571), + [anon_sym_set] = ACTIONS(571), + [sym_preproc] = ACTIONS(569), + [sym__automatic_semicolon] = ACTIONS(909), + [sym_html_comment] = ACTIONS(5), + }, + [314] = { + [sym_catch_clause] = STATE(320), + [sym_finally_clause] = STATE(377), + [ts_builtin_sym_end] = ACTIONS(911), + [sym_identifier] = ACTIONS(913), + [anon_sym_export] = ACTIONS(913), + [anon_sym_default] = ACTIONS(913), + [anon_sym_LBRACE] = ACTIONS(911), + [anon_sym_RBRACE] = ACTIONS(911), + [anon_sym_import] = ACTIONS(913), + [anon_sym_with] = ACTIONS(913), + [anon_sym_var] = ACTIONS(913), + [anon_sym_let] = ACTIONS(913), + [anon_sym_const] = ACTIONS(913), + [anon_sym_else] = ACTIONS(913), + [anon_sym_if] = ACTIONS(913), + [anon_sym_switch] = ACTIONS(913), + [anon_sym_for] = ACTIONS(913), + [anon_sym_LPAREN] = ACTIONS(911), + [anon_sym_SEMI] = ACTIONS(911), + [anon_sym_await] = ACTIONS(913), + [anon_sym_while] = ACTIONS(913), + [anon_sym_do] = ACTIONS(913), + [anon_sym_try] = ACTIONS(913), + [anon_sym_break] = ACTIONS(913), + [anon_sym_continue] = ACTIONS(913), + [anon_sym_debugger] = ACTIONS(913), + [anon_sym_return] = ACTIONS(913), + [anon_sym_throw] = ACTIONS(913), + [anon_sym_case] = ACTIONS(913), + [anon_sym_catch] = ACTIONS(915), + [anon_sym_finally] = ACTIONS(917), + [anon_sym_yield] = ACTIONS(913), + [anon_sym_LBRACK] = ACTIONS(911), + [sym_glimmer_opening_tag] = ACTIONS(911), + [anon_sym_LT] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(911), + [anon_sym_SQUOTE] = ACTIONS(911), + [anon_sym_class] = ACTIONS(913), + [anon_sym_async] = ACTIONS(913), + [anon_sym_function] = ACTIONS(913), + [anon_sym_new] = ACTIONS(913), + [anon_sym_PLUS] = ACTIONS(913), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_SLASH] = ACTIONS(913), + [anon_sym_BANG] = ACTIONS(911), + [anon_sym_TILDE] = ACTIONS(911), + [anon_sym_typeof] = ACTIONS(913), + [anon_sym_void] = ACTIONS(913), + [anon_sym_delete] = ACTIONS(913), + [anon_sym_PLUS_PLUS] = ACTIONS(911), + [anon_sym_DASH_DASH] = ACTIONS(911), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(911), + [sym_number] = ACTIONS(911), + [sym_private_property_identifier] = ACTIONS(913), + [sym_this] = ACTIONS(913), + [sym_super] = ACTIONS(913), + [sym_true] = ACTIONS(913), + [sym_false] = ACTIONS(913), + [sym_null] = ACTIONS(913), + [sym_undefined] = ACTIONS(913), + [anon_sym_AT] = ACTIONS(911), + [anon_sym_static] = ACTIONS(913), + [anon_sym_get] = ACTIONS(913), + [anon_sym_set] = ACTIONS(913), + [sym_preproc] = ACTIONS(911), + [sym_html_comment] = ACTIONS(5), + }, + [315] = { + [ts_builtin_sym_end] = ACTIONS(515), + [sym_identifier] = ACTIONS(517), + [anon_sym_export] = ACTIONS(517), + [anon_sym_default] = ACTIONS(517), + [anon_sym_LBRACE] = ACTIONS(515), + [anon_sym_COMMA] = ACTIONS(515), + [anon_sym_RBRACE] = ACTIONS(515), + [anon_sym_import] = ACTIONS(517), + [anon_sym_with] = ACTIONS(517), + [anon_sym_var] = ACTIONS(517), + [anon_sym_let] = ACTIONS(517), + [anon_sym_const] = ACTIONS(517), + [anon_sym_else] = ACTIONS(517), + [anon_sym_if] = ACTIONS(517), + [anon_sym_switch] = ACTIONS(517), + [anon_sym_for] = ACTIONS(517), + [anon_sym_LPAREN] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_await] = ACTIONS(517), + [anon_sym_while] = ACTIONS(517), + [anon_sym_do] = ACTIONS(517), + [anon_sym_try] = ACTIONS(517), + [anon_sym_break] = ACTIONS(517), + [anon_sym_continue] = ACTIONS(517), + [anon_sym_debugger] = ACTIONS(517), + [anon_sym_return] = ACTIONS(517), + [anon_sym_throw] = ACTIONS(517), + [anon_sym_case] = ACTIONS(517), + [anon_sym_catch] = ACTIONS(517), + [anon_sym_finally] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(517), + [anon_sym_LBRACK] = ACTIONS(515), + [sym_glimmer_opening_tag] = ACTIONS(515), + [anon_sym_LT] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(515), + [anon_sym_SQUOTE] = ACTIONS(515), + [anon_sym_class] = ACTIONS(517), + [anon_sym_async] = ACTIONS(517), + [anon_sym_function] = ACTIONS(517), + [anon_sym_new] = ACTIONS(517), + [anon_sym_PLUS] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(517), + [anon_sym_SLASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(515), + [anon_sym_TILDE] = ACTIONS(515), + [anon_sym_typeof] = ACTIONS(517), + [anon_sym_void] = ACTIONS(517), + [anon_sym_delete] = ACTIONS(517), + [anon_sym_PLUS_PLUS] = ACTIONS(515), + [anon_sym_DASH_DASH] = ACTIONS(515), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(515), + [sym_number] = ACTIONS(515), + [sym_private_property_identifier] = ACTIONS(517), + [sym_this] = ACTIONS(517), + [sym_super] = ACTIONS(517), + [sym_true] = ACTIONS(517), + [sym_false] = ACTIONS(517), + [sym_null] = ACTIONS(517), + [sym_undefined] = ACTIONS(517), + [anon_sym_AT] = ACTIONS(515), + [anon_sym_static] = ACTIONS(517), + [anon_sym_get] = ACTIONS(517), + [anon_sym_set] = ACTIONS(517), + [sym_preproc] = ACTIONS(515), + [sym__automatic_semicolon] = ACTIONS(525), + [sym_html_comment] = ACTIONS(5), + }, + [316] = { + [ts_builtin_sym_end] = ACTIONS(569), + [sym_identifier] = ACTIONS(571), + [anon_sym_export] = ACTIONS(571), + [anon_sym_default] = ACTIONS(571), + [anon_sym_LBRACE] = ACTIONS(569), + [anon_sym_COMMA] = ACTIONS(569), + [anon_sym_RBRACE] = ACTIONS(569), + [anon_sym_import] = ACTIONS(571), + [anon_sym_with] = ACTIONS(571), + [anon_sym_var] = ACTIONS(571), + [anon_sym_let] = ACTIONS(571), + [anon_sym_const] = ACTIONS(571), + [anon_sym_else] = ACTIONS(571), + [anon_sym_if] = ACTIONS(571), + [anon_sym_switch] = ACTIONS(571), + [anon_sym_for] = ACTIONS(571), + [anon_sym_LPAREN] = ACTIONS(569), + [anon_sym_SEMI] = ACTIONS(569), + [anon_sym_await] = ACTIONS(571), + [anon_sym_while] = ACTIONS(571), + [anon_sym_do] = ACTIONS(571), + [anon_sym_try] = ACTIONS(571), + [anon_sym_break] = ACTIONS(571), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_debugger] = ACTIONS(571), + [anon_sym_return] = ACTIONS(571), + [anon_sym_throw] = ACTIONS(571), + [anon_sym_case] = ACTIONS(571), + [anon_sym_catch] = ACTIONS(571), + [anon_sym_finally] = ACTIONS(571), + [anon_sym_yield] = ACTIONS(571), + [anon_sym_LBRACK] = ACTIONS(569), + [sym_glimmer_opening_tag] = ACTIONS(569), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_DQUOTE] = ACTIONS(569), + [anon_sym_SQUOTE] = ACTIONS(569), + [anon_sym_class] = ACTIONS(571), + [anon_sym_async] = ACTIONS(571), + [anon_sym_function] = ACTIONS(571), + [anon_sym_new] = ACTIONS(571), + [anon_sym_PLUS] = ACTIONS(571), + [anon_sym_DASH] = ACTIONS(571), + [anon_sym_SLASH] = ACTIONS(571), + [anon_sym_BANG] = ACTIONS(569), + [anon_sym_TILDE] = ACTIONS(569), + [anon_sym_typeof] = ACTIONS(571), + [anon_sym_void] = ACTIONS(571), + [anon_sym_delete] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(569), + [anon_sym_DASH_DASH] = ACTIONS(569), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(569), + [sym_number] = ACTIONS(569), + [sym_private_property_identifier] = ACTIONS(571), + [sym_this] = ACTIONS(571), + [sym_super] = ACTIONS(571), + [sym_true] = ACTIONS(571), + [sym_false] = ACTIONS(571), + [sym_null] = ACTIONS(571), + [sym_undefined] = ACTIONS(571), + [anon_sym_AT] = ACTIONS(569), + [anon_sym_static] = ACTIONS(571), + [anon_sym_get] = ACTIONS(571), + [anon_sym_set] = ACTIONS(571), + [sym_preproc] = ACTIONS(569), + [sym_html_comment] = ACTIONS(5), + }, + [317] = { + [ts_builtin_sym_end] = ACTIONS(595), + [sym_identifier] = ACTIONS(597), + [anon_sym_export] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(595), + [anon_sym_COMMA] = ACTIONS(595), + [anon_sym_RBRACE] = ACTIONS(595), + [anon_sym_import] = ACTIONS(597), + [anon_sym_with] = ACTIONS(597), + [anon_sym_var] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_else] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_LPAREN] = ACTIONS(595), + [anon_sym_SEMI] = ACTIONS(595), + [anon_sym_await] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [anon_sym_do] = ACTIONS(597), + [anon_sym_try] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_debugger] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_throw] = ACTIONS(597), + [anon_sym_case] = ACTIONS(597), + [anon_sym_catch] = ACTIONS(597), + [anon_sym_finally] = ACTIONS(597), + [anon_sym_yield] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(595), + [sym_glimmer_opening_tag] = ACTIONS(595), + [anon_sym_LT] = ACTIONS(597), + [anon_sym_DQUOTE] = ACTIONS(595), + [anon_sym_SQUOTE] = ACTIONS(595), + [anon_sym_class] = ACTIONS(597), + [anon_sym_async] = ACTIONS(597), + [anon_sym_function] = ACTIONS(597), + [anon_sym_new] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(597), + [anon_sym_SLASH] = ACTIONS(597), + [anon_sym_BANG] = ACTIONS(595), + [anon_sym_TILDE] = ACTIONS(595), + [anon_sym_typeof] = ACTIONS(597), + [anon_sym_void] = ACTIONS(597), + [anon_sym_delete] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(595), + [anon_sym_DASH_DASH] = ACTIONS(595), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(595), + [sym_number] = ACTIONS(595), + [sym_private_property_identifier] = ACTIONS(597), + [sym_this] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_true] = ACTIONS(597), + [sym_false] = ACTIONS(597), + [sym_null] = ACTIONS(597), + [sym_undefined] = ACTIONS(597), + [anon_sym_AT] = ACTIONS(595), + [anon_sym_static] = ACTIONS(597), + [anon_sym_get] = ACTIONS(597), + [anon_sym_set] = ACTIONS(597), + [sym_preproc] = ACTIONS(595), + [sym_html_comment] = ACTIONS(5), + }, + [318] = { + [sym_formal_parameters] = STATE(1674), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_let] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_async] = ACTIONS(921), + [anon_sym_function] = ACTIONS(923), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_static] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [319] = { + [sym_formal_parameters] = STATE(1717), + [sym_identifier] = ACTIONS(925), + [anon_sym_export] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_let] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_in] = ACTIONS(835), + [anon_sym_EQ] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_async] = ACTIONS(927), + [anon_sym_function] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(934), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_static] = ACTIONS(927), + [anon_sym_get] = ACTIONS(927), + [anon_sym_set] = ACTIONS(927), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [320] = { + [sym_finally_clause] = STATE(352), + [ts_builtin_sym_end] = ACTIONS(936), + [sym_identifier] = ACTIONS(938), + [anon_sym_export] = ACTIONS(938), + [anon_sym_default] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_RBRACE] = ACTIONS(936), + [anon_sym_import] = ACTIONS(938), + [anon_sym_with] = ACTIONS(938), + [anon_sym_var] = ACTIONS(938), + [anon_sym_let] = ACTIONS(938), + [anon_sym_const] = ACTIONS(938), + [anon_sym_else] = ACTIONS(938), + [anon_sym_if] = ACTIONS(938), + [anon_sym_switch] = ACTIONS(938), + [anon_sym_for] = ACTIONS(938), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_SEMI] = ACTIONS(936), + [anon_sym_await] = ACTIONS(938), + [anon_sym_while] = ACTIONS(938), + [anon_sym_do] = ACTIONS(938), + [anon_sym_try] = ACTIONS(938), + [anon_sym_break] = ACTIONS(938), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(938), + [anon_sym_return] = ACTIONS(938), + [anon_sym_throw] = ACTIONS(938), + [anon_sym_case] = ACTIONS(938), + [anon_sym_finally] = ACTIONS(917), + [anon_sym_yield] = ACTIONS(938), + [anon_sym_LBRACK] = ACTIONS(936), + [sym_glimmer_opening_tag] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(938), + [anon_sym_DQUOTE] = ACTIONS(936), + [anon_sym_SQUOTE] = ACTIONS(936), + [anon_sym_class] = ACTIONS(938), + [anon_sym_async] = ACTIONS(938), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(938), + [anon_sym_PLUS] = ACTIONS(938), + [anon_sym_DASH] = ACTIONS(938), + [anon_sym_SLASH] = ACTIONS(938), + [anon_sym_BANG] = ACTIONS(936), + [anon_sym_TILDE] = ACTIONS(936), + [anon_sym_typeof] = ACTIONS(938), + [anon_sym_void] = ACTIONS(938), + [anon_sym_delete] = ACTIONS(938), + [anon_sym_PLUS_PLUS] = ACTIONS(936), + [anon_sym_DASH_DASH] = ACTIONS(936), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(936), + [sym_number] = ACTIONS(936), + [sym_private_property_identifier] = ACTIONS(938), + [sym_this] = ACTIONS(938), + [sym_super] = ACTIONS(938), + [sym_true] = ACTIONS(938), + [sym_false] = ACTIONS(938), + [sym_null] = ACTIONS(938), + [sym_undefined] = ACTIONS(938), + [anon_sym_AT] = ACTIONS(936), + [anon_sym_static] = ACTIONS(938), + [anon_sym_get] = ACTIONS(938), + [anon_sym_set] = ACTIONS(938), + [sym_preproc] = ACTIONS(936), + [sym_html_comment] = ACTIONS(5), + }, + [321] = { + [sym_formal_parameters] = STATE(1674), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_let] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_async] = ACTIONS(921), + [anon_sym_function] = ACTIONS(882), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_static] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [322] = { + [sym_variable_declarator] = STATE(1266), + [sym_object_pattern] = STATE(1188), + [sym_array_pattern] = STATE(1188), + [sym__destructuring_pattern] = STATE(1188), + [aux_sym_object_repeat1] = STATE(1378), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [323] = { + [sym_formal_parameters] = STATE(1696), + [sym_identifier] = ACTIONS(946), + [anon_sym_export] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_let] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_of] = ACTIONS(835), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_async] = ACTIONS(948), + [anon_sym_function] = ACTIONS(923), + [anon_sym_EQ_GT] = ACTIONS(950), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_static] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [324] = { + [sym_formal_parameters] = STATE(1717), + [sym_identifier] = ACTIONS(925), + [anon_sym_export] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_let] = ACTIONS(927), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(952), + [anon_sym_in] = ACTIONS(835), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_RBRACK] = ACTIONS(952), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_async] = ACTIONS(927), + [anon_sym_function] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(934), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_static] = ACTIONS(927), + [anon_sym_get] = ACTIONS(927), + [anon_sym_set] = ACTIONS(927), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [325] = { + [sym_formal_parameters] = STATE(1674), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_let] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_async] = ACTIONS(921), + [anon_sym_function] = ACTIONS(954), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_static] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [326] = { + [sym_variable_declarator] = STATE(1266), + [sym_object_pattern] = STATE(1188), + [sym_array_pattern] = STATE(1188), + [sym__destructuring_pattern] = STATE(1188), + [aux_sym_object_repeat1] = STATE(1378), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [327] = { + [sym_variable_declarator] = STATE(1266), + [sym_object_pattern] = STATE(1188), + [sym_array_pattern] = STATE(1188), + [sym__destructuring_pattern] = STATE(1188), + [aux_sym_object_repeat1] = STATE(1301), + [aux_sym_object_pattern_repeat1] = STATE(1302), + [sym_identifier] = ACTIONS(940), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_LBRACE] = ACTIONS(942), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_COLON] = ACTIONS(837), + [anon_sym_EQ] = ACTIONS(840), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [328] = { + [sym_formal_parameters] = STATE(1674), + [sym_identifier] = ACTIONS(919), + [anon_sym_export] = ACTIONS(921), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_let] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_EQ] = ACTIONS(860), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_async] = ACTIONS(921), + [anon_sym_function] = ACTIONS(923), + [anon_sym_EQ_GT] = ACTIONS(848), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_static] = ACTIONS(921), + [anon_sym_get] = ACTIONS(921), + [anon_sym_set] = ACTIONS(921), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [329] = { + [sym_formal_parameters] = STATE(1696), + [sym_identifier] = ACTIONS(946), + [anon_sym_export] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(824), + [anon_sym_let] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_in] = ACTIONS(835), + [anon_sym_of] = ACTIONS(835), + [anon_sym_EQ] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_async] = ACTIONS(948), + [anon_sym_function] = ACTIONS(923), + [anon_sym_EQ_GT] = ACTIONS(950), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_static] = ACTIONS(948), + [anon_sym_get] = ACTIONS(948), + [anon_sym_set] = ACTIONS(948), + [sym__automatic_semicolon] = ACTIONS(824), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, + [330] = { + [sym_formal_parameters] = STATE(1743), + [sym_identifier] = ACTIONS(894), + [anon_sym_export] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(835), + [anon_sym_COMMA] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_let] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(958), + [anon_sym_in] = ACTIONS(835), + [anon_sym_EQ] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(824), + [anon_sym_RBRACK] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(835), + [anon_sym_GT] = ACTIONS(835), + [anon_sym_DOT] = ACTIONS(824), + [anon_sym_async] = ACTIONS(896), + [anon_sym_function] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(905), + [sym_optional_chain] = ACTIONS(824), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_STAR_STAR_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(850), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(835), + [anon_sym_PIPE_PIPE] = ACTIONS(835), + [anon_sym_GT_GT] = ACTIONS(835), + [anon_sym_GT_GT_GT] = ACTIONS(835), + [anon_sym_LT_LT] = ACTIONS(835), + [anon_sym_AMP] = ACTIONS(835), + [anon_sym_CARET] = ACTIONS(835), + [anon_sym_PIPE] = ACTIONS(835), + [anon_sym_PLUS] = ACTIONS(835), + [anon_sym_DASH] = ACTIONS(835), + [anon_sym_SLASH] = ACTIONS(835), + [anon_sym_PERCENT] = ACTIONS(835), + [anon_sym_STAR_STAR] = ACTIONS(835), + [anon_sym_LT_EQ] = ACTIONS(824), + [anon_sym_EQ_EQ] = ACTIONS(835), + [anon_sym_EQ_EQ_EQ] = ACTIONS(824), + [anon_sym_BANG_EQ] = ACTIONS(835), + [anon_sym_BANG_EQ_EQ] = ACTIONS(824), + [anon_sym_GT_EQ] = ACTIONS(824), + [anon_sym_QMARK_QMARK] = ACTIONS(835), + [anon_sym_instanceof] = ACTIONS(835), + [anon_sym_PLUS_PLUS] = ACTIONS(824), + [anon_sym_DASH_DASH] = ACTIONS(824), + [sym_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(824), + [anon_sym_static] = ACTIONS(896), + [anon_sym_get] = ACTIONS(896), + [anon_sym_set] = ACTIONS(896), + [sym__ternary_qmark] = ACTIONS(824), + [sym_html_comment] = ACTIONS(5), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(595), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(988), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2890] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(986), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(597), 44, anon_sym_export, anon_sym_default, anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [2958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(986), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(988), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, @@ -36885,7 +38690,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -36894,82 +38698,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [3026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(986), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(988), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -36979,161 +38719,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3094] = 3, - ACTIONS(3), 1, + [71] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(599), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(988), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [3162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(986), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(601), 44, anon_sym_export, anon_sym_default, anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [3230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(986), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(988), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37145,7 +38758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37154,82 +38766,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [3298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(986), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(988), 43, - anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37239,31 +38787,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3366] = 3, - ACTIONS(3), 1, + [142] = 4, + ACTIONS(591), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(583), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(585), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37275,7 +38827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37284,17 +38835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37304,31 +38856,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3434] = 3, - ACTIONS(3), 1, + [215] = 12, + ACTIONS(894), 1, + sym_identifier, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(903), 1, + anon_sym_function, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_EQ, + STATE(1743), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(964), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(896), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(824), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(850), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(835), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [304] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(994), 17, + ACTIONS(569), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(996), 43, + ACTIONS(571), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37340,7 +38972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37349,17 +38980,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37369,31 +39001,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3502] = 3, - ACTIONS(3), 1, + [375] = 4, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(971), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(967), 16, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(969), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37405,7 +39041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37414,17 +39049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37434,31 +39070,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3570] = 3, - ACTIONS(3), 1, + [448] = 4, + ACTIONS(973), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(569), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(571), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37470,7 +39110,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37479,17 +39118,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37499,31 +39139,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3638] = 3, - ACTIONS(3), 1, + [521] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(975), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(977), 45, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37535,26 +39177,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37564,31 +39207,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3706] = 3, - ACTIONS(3), 1, + [592] = 4, + ACTIONS(979), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(515), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(517), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37600,7 +39247,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37609,17 +39255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37629,31 +39276,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3774] = 3, - ACTIONS(3), 1, + [665] = 4, + ACTIONS(581), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(573), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(575), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37665,7 +39316,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37674,17 +39324,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37694,31 +39345,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3842] = 3, - ACTIONS(3), 1, + [738] = 4, + ACTIONS(547), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(539), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(541), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37730,7 +39385,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37739,17 +39393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37759,31 +39414,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3910] = 3, - ACTIONS(3), 1, + [811] = 4, + ACTIONS(537), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(529), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(531), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37795,7 +39454,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37804,17 +39462,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37824,31 +39483,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3978] = 3, - ACTIONS(3), 1, + [884] = 4, + ACTIONS(611), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(603), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(605), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37860,7 +39523,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37869,17 +39531,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37889,31 +39552,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4046] = 3, - ACTIONS(3), 1, + [957] = 4, + ACTIONS(567), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(559), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(561), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37925,7 +39592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37934,17 +39600,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -37954,31 +39621,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4114] = 3, - ACTIONS(3), 1, + [1030] = 4, + ACTIONS(625), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(617), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(619), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -37990,7 +39661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -37999,17 +39669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38019,31 +39690,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4182] = 3, - ACTIONS(3), 1, + [1103] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(998), 17, + ACTIONS(613), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1000), 43, + ACTIONS(615), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38055,7 +39729,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38064,17 +39737,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38084,35 +39758,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4250] = 3, - ACTIONS(3), 1, + [1174] = 5, + ACTIONS(985), 1, + anon_sym_else, + STATE(358), 1, + sym_else_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1002), 17, + ACTIONS(981), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1004), 43, + ACTIONS(983), 43, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_else, anon_sym_if, anon_sym_switch, anon_sym_for, @@ -38120,7 +39799,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38129,17 +39807,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38149,31 +39828,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4318] = 3, - ACTIONS(3), 1, + [1249] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1006), 17, + ACTIONS(987), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1008), 43, + ACTIONS(989), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38185,7 +39867,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38194,17 +39875,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38214,31 +39896,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4386] = 3, - ACTIONS(3), 1, + [1320] = 13, + ACTIONS(894), 1, + sym_identifier, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(903), 1, + anon_sym_function, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(991), 1, + anon_sym_in, + ACTIONS(994), 1, + anon_sym_of, + STATE(1743), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(896), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(824), 13, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(850), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(835), 20, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1411] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1010), 17, + ACTIONS(996), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1012), 43, + ACTIONS(998), 45, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38250,26 +40012,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38279,31 +40042,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4454] = 3, - ACTIONS(3), 1, + [1482] = 4, + ACTIONS(557), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1014), 17, + ACTIONS(549), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1016), 43, + ACTIONS(551), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38315,7 +40082,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38324,17 +40090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38344,31 +40111,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4522] = 3, - ACTIONS(3), 1, + [1555] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1018), 17, + ACTIONS(1000), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1020), 43, + ACTIONS(1002), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38380,7 +40149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38389,17 +40157,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38409,31 +40178,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4590] = 3, - ACTIONS(3), 1, + [1625] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1022), 17, + ACTIONS(1004), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1024), 43, + ACTIONS(1006), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38445,7 +40216,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38454,17 +40224,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38474,31 +40245,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4658] = 3, - ACTIONS(3), 1, + [1695] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1026), 17, + ACTIONS(1008), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1028), 43, + ACTIONS(1010), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38510,7 +40283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38519,17 +40291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38539,31 +40312,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4726] = 3, - ACTIONS(3), 1, + [1765] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1030), 17, + ACTIONS(1012), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1032), 43, + ACTIONS(1014), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38575,7 +40350,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38584,17 +40358,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38604,28 +40379,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4794] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, + [1835] = 11, + ACTIONS(848), 1, anon_sym_EQ_GT, - ACTIONS(854), 1, + ACTIONS(860), 1, anon_sym_EQ, - ACTIONS(902), 1, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(931), 1, + ACTIONS(919), 1, sym_identifier, - ACTIONS(955), 1, + ACTIONS(954), 1, anon_sym_function, - STATE(1609), 1, + STATE(1674), 1, sym_formal_parameters, - ACTIONS(933), 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(921), 6, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(818), 13, + ACTIONS(824), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_SEMI, @@ -38639,7 +40416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -38655,12 +40432,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(829), 21, + ACTIONS(835), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -38671,37 +40447,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [4878] = 3, - ACTIONS(3), 1, + [1921] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1034), 17, + ACTIONS(1012), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1036), 43, + ACTIONS(1014), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38713,7 +40492,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38722,17 +40500,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38742,31 +40521,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4946] = 3, - ACTIONS(3), 1, + [1991] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1038), 17, + ACTIONS(1016), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1040), 43, + ACTIONS(1018), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38778,7 +40559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38787,17 +40567,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38807,31 +40588,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5014] = 3, - ACTIONS(3), 1, + [2061] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1042), 17, + ACTIONS(1020), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1044), 43, + ACTIONS(1022), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38843,7 +40626,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38852,17 +40634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38872,31 +40655,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5082] = 3, - ACTIONS(3), 1, + [2131] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1046), 17, + ACTIONS(1024), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1048), 43, + ACTIONS(1026), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38908,7 +40693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38917,17 +40701,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -38937,31 +40722,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5150] = 3, - ACTIONS(3), 1, + [2201] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1042), 17, + ACTIONS(1028), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1044), 43, + ACTIONS(1030), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -38973,7 +40760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -38982,17 +40768,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39002,31 +40789,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5218] = 3, - ACTIONS(3), 1, + [2271] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1050), 17, + ACTIONS(1032), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1052), 43, + ACTIONS(1034), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39038,7 +40827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39047,17 +40835,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39067,31 +40856,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5286] = 3, - ACTIONS(3), 1, + [2341] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1054), 17, + ACTIONS(1028), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1056), 43, + ACTIONS(1030), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39103,7 +40894,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39112,17 +40902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39132,31 +40923,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5354] = 3, - ACTIONS(3), 1, + [2411] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1058), 17, + ACTIONS(1028), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1060), 43, + ACTIONS(1030), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39168,7 +40961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39177,17 +40969,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39197,31 +40990,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5422] = 3, - ACTIONS(3), 1, + [2481] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1062), 17, + ACTIONS(1028), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1064), 43, + ACTIONS(1030), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39233,7 +41028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39242,17 +41036,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39262,31 +41057,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5490] = 3, - ACTIONS(3), 1, + [2551] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1066), 17, + ACTIONS(1036), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1068), 43, + ACTIONS(1038), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39298,7 +41095,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39307,17 +41103,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39327,31 +41124,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5558] = 3, - ACTIONS(3), 1, + [2621] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1070), 17, + ACTIONS(1040), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1072), 43, + ACTIONS(1042), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39363,7 +41162,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39372,17 +41170,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39392,31 +41191,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5626] = 3, - ACTIONS(3), 1, + [2691] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1074), 17, + ACTIONS(1044), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1076), 43, + ACTIONS(1046), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39428,7 +41229,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39437,17 +41237,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39457,31 +41258,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5694] = 3, - ACTIONS(3), 1, + [2761] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1078), 17, + ACTIONS(1048), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1080), 43, + ACTIONS(1050), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39493,7 +41296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39502,17 +41304,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39522,31 +41325,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5762] = 3, - ACTIONS(3), 1, + [2831] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1082), 17, + ACTIONS(1028), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1084), 43, + ACTIONS(1030), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39558,7 +41363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39567,17 +41371,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39587,31 +41392,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5830] = 3, - ACTIONS(3), 1, + [2901] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1086), 17, + ACTIONS(1028), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1088), 43, + ACTIONS(1030), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39623,7 +41430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39632,17 +41438,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39652,31 +41459,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5898] = 3, - ACTIONS(3), 1, + [2971] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1090), 17, + ACTIONS(1052), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1092), 43, + ACTIONS(1054), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39688,7 +41497,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39697,17 +41505,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39717,31 +41526,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5966] = 3, - ACTIONS(3), 1, + [3041] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1094), 17, + ACTIONS(1056), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1096), 43, + ACTIONS(1058), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39753,7 +41564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39762,17 +41572,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39782,31 +41593,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6034] = 3, - ACTIONS(3), 1, + [3111] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1098), 17, + ACTIONS(1060), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1100), 43, + ACTIONS(1062), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39818,7 +41631,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39827,17 +41639,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39847,31 +41660,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6102] = 3, - ACTIONS(3), 1, + [3181] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1102), 17, + ACTIONS(1064), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1104), 43, + ACTIONS(1066), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39883,7 +41698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39892,17 +41706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39912,31 +41727,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6170] = 3, - ACTIONS(3), 1, + [3251] = 11, + ACTIONS(848), 1, + anon_sym_EQ_GT, + ACTIONS(860), 1, + anon_sym_EQ, + ACTIONS(882), 1, + anon_sym_function, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(919), 1, + sym_identifier, + STATE(1674), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(921), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(824), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(850), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(835), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [3337] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1106), 17, + ACTIONS(1068), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1108), 43, + ACTIONS(1070), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -39948,7 +41840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -39957,17 +41848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -39977,31 +41869,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6238] = 3, - ACTIONS(3), 1, + [3407] = 13, + ACTIONS(894), 1, + sym_identifier, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(903), 1, + anon_sym_function, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(929), 1, + anon_sym_COMMA, + ACTIONS(958), 1, + anon_sym_RBRACK, + ACTIONS(961), 1, + anon_sym_EQ, + STATE(1743), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(896), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(824), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(850), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(835), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [3497] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1110), 17, + ACTIONS(1072), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1112), 43, + ACTIONS(1074), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40013,7 +41984,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40022,17 +41992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40042,31 +42013,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6306] = 3, - ACTIONS(3), 1, + [3567] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1076), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1078), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40078,7 +42051,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40087,17 +42059,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40107,31 +42080,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6374] = 3, - ACTIONS(3), 1, + [3637] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1080), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1082), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40143,7 +42118,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40152,17 +42126,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40172,31 +42147,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6442] = 3, - ACTIONS(3), 1, + [3707] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(986), 17, + ACTIONS(1084), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(988), 43, + ACTIONS(1086), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40208,7 +42185,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40217,17 +42193,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40237,31 +42214,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6510] = 3, - ACTIONS(3), 1, + [3777] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1088), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1090), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40273,7 +42252,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40282,17 +42260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40302,31 +42281,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6578] = 3, - ACTIONS(3), 1, + [3847] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1092), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1094), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40338,7 +42319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40347,17 +42327,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40367,31 +42348,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6646] = 3, - ACTIONS(3), 1, + [3917] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1096), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1098), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40403,7 +42386,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40412,17 +42394,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40432,31 +42415,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6714] = 3, - ACTIONS(3), 1, + [3987] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1100), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1102), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40468,7 +42453,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40477,17 +42461,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40497,31 +42482,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6782] = 3, - ACTIONS(3), 1, + [4057] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1104), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1106), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40533,7 +42520,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40542,17 +42528,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40562,31 +42549,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6850] = 3, - ACTIONS(3), 1, + [4127] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1108), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1110), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40598,7 +42587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40607,17 +42595,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40627,106 +42616,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6918] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(898), 1, - sym_identifier, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, - anon_sym_function, - ACTIONS(909), 1, - anon_sym_EQ_GT, - ACTIONS(940), 1, - anon_sym_COMMA, - ACTIONS(945), 1, - anon_sym_RBRACK, - ACTIONS(948), 1, - anon_sym_EQ, - STATE(1657), 1, - sym_formal_parameters, - ACTIONS(900), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 11, - sym__ternary_qmark, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [7006] = 3, - ACTIONS(3), 1, + [4197] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1112), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1114), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40738,7 +42654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40747,17 +42662,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40767,31 +42683,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7074] = 3, - ACTIONS(3), 1, + [4267] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1116), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1118), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40803,7 +42721,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40812,17 +42729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40832,31 +42750,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7142] = 3, - ACTIONS(3), 1, + [4337] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1120), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1122), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40868,7 +42788,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40877,17 +42796,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40897,31 +42817,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7210] = 3, - ACTIONS(3), 1, + [4407] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1124), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1126), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40933,7 +42855,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -40942,17 +42863,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -40962,31 +42884,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7278] = 3, - ACTIONS(3), 1, + [4477] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1128), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1130), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -40998,7 +42922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41007,17 +42930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41027,31 +42951,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7346] = 3, - ACTIONS(3), 1, + [4547] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1132), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1134), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41063,7 +42989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41072,17 +42997,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41092,31 +43018,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7414] = 3, - ACTIONS(3), 1, + [4617] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1136), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1138), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41128,7 +43056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41137,17 +43064,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41157,31 +43085,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7482] = 3, - ACTIONS(3), 1, + [4687] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1140), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1142), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41193,7 +43123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41202,51 +43131,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [4757] = 11, + ACTIONS(898), 1, + anon_sym_LPAREN, + ACTIONS(901), 1, + anon_sym_EQ, + ACTIONS(903), 1, + anon_sym_function, + ACTIONS(925), 1, + sym_identifier, + ACTIONS(934), 1, + anon_sym_EQ_GT, + STATE(1717), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(927), 6, + anon_sym_export, + anon_sym_let, + anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [7550] = 3, - ACTIONS(3), 1, + ACTIONS(824), 13, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(850), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(835), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [4843] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1144), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1146), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41258,7 +43265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41267,17 +43273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41287,31 +43294,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7618] = 3, - ACTIONS(3), 1, + [4913] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1144), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1146), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41323,7 +43332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41332,17 +43340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41352,31 +43361,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7686] = 3, - ACTIONS(3), 1, + [4983] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1148), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1150), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41388,7 +43399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41397,17 +43407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41417,31 +43428,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7754] = 3, - ACTIONS(3), 1, + [5053] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(990), 17, + ACTIONS(1152), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(992), 43, + ACTIONS(1154), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41453,7 +43466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41462,17 +43474,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41482,31 +43495,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7822] = 3, - ACTIONS(3), 1, + [5123] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1114), 17, + ACTIONS(1156), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1116), 43, + ACTIONS(1158), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41518,7 +43533,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41527,17 +43541,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41547,31 +43562,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7890] = 3, - ACTIONS(3), 1, + [5193] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1118), 17, + ACTIONS(1160), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1120), 43, + ACTIONS(1162), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41583,7 +43600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41592,17 +43608,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41612,31 +43629,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [7958] = 3, - ACTIONS(3), 1, + [5263] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1122), 17, + ACTIONS(1164), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1124), 43, + ACTIONS(1166), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41648,7 +43667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41657,17 +43675,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41677,31 +43696,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8026] = 3, - ACTIONS(3), 1, + [5333] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1126), 17, + ACTIONS(1168), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1128), 43, + ACTIONS(1170), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41713,7 +43734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41722,17 +43742,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41742,31 +43763,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8094] = 3, - ACTIONS(3), 1, + [5403] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1130), 17, + ACTIONS(1172), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1132), 43, + ACTIONS(1174), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41778,7 +43801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41787,17 +43809,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41807,31 +43830,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8162] = 3, - ACTIONS(3), 1, + [5473] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1130), 17, + ACTIONS(1176), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1132), 43, + ACTIONS(1178), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41843,7 +43868,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41852,17 +43876,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41872,31 +43897,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8230] = 3, - ACTIONS(3), 1, + [5543] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1134), 17, + ACTIONS(1180), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1136), 43, + ACTIONS(1182), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41908,7 +43935,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41917,17 +43943,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -41937,31 +43964,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8298] = 3, - ACTIONS(3), 1, + [5613] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1138), 17, + ACTIONS(1184), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1140), 43, + ACTIONS(1186), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -41973,7 +44002,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -41982,17 +44010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42002,31 +44031,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8366] = 3, - ACTIONS(3), 1, + [5683] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1142), 17, + ACTIONS(1188), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1144), 43, + ACTIONS(1190), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42038,7 +44069,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42047,17 +44077,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42067,31 +44098,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8434] = 3, - ACTIONS(3), 1, + [5753] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1146), 17, + ACTIONS(1192), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1148), 43, + ACTIONS(1194), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42103,7 +44136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42112,17 +44144,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42132,31 +44165,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8502] = 3, - ACTIONS(3), 1, + [5823] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1146), 17, + ACTIONS(1196), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1148), 43, + ACTIONS(1198), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42168,7 +44203,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42177,17 +44211,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42197,31 +44232,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8570] = 3, - ACTIONS(3), 1, + [5893] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1150), 17, + ACTIONS(1200), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1152), 43, + ACTIONS(1202), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42233,7 +44270,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42242,17 +44278,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42262,31 +44299,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8638] = 3, - ACTIONS(3), 1, + [5963] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1154), 17, + ACTIONS(1204), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1156), 43, + ACTIONS(1206), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42298,7 +44337,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42307,17 +44345,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42327,31 +44366,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8706] = 3, - ACTIONS(3), 1, + [6033] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1150), 17, + ACTIONS(1208), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1152), 43, + ACTIONS(1210), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42363,7 +44404,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42372,17 +44412,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42392,104 +44433,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8774] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(907), 1, - anon_sym_function, - ACTIONS(923), 1, - sym_identifier, - ACTIONS(929), 1, - anon_sym_EQ_GT, - STATE(1661), 1, - sym_formal_parameters, - ACTIONS(925), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 13, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(829), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [8858] = 3, - ACTIONS(3), 1, + [6103] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1158), 17, + ACTIONS(1212), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1160), 43, + ACTIONS(1214), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42501,7 +44471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42510,17 +44479,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42530,31 +44500,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8926] = 3, - ACTIONS(3), 1, + [6173] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1150), 17, + ACTIONS(1216), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1152), 43, + ACTIONS(1218), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42566,7 +44538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42575,17 +44546,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42595,31 +44567,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [8994] = 3, - ACTIONS(3), 1, + [6243] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1150), 17, + ACTIONS(1220), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1152), 43, + ACTIONS(1222), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42631,7 +44605,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42640,17 +44613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42660,31 +44634,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9062] = 3, - ACTIONS(3), 1, + [6313] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1162), 17, + ACTIONS(1108), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1164), 43, + ACTIONS(1110), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42696,7 +44672,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42705,17 +44680,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42725,31 +44701,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9130] = 3, - ACTIONS(3), 1, + [6383] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1166), 17, + ACTIONS(1224), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1168), 43, + ACTIONS(1226), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42761,7 +44739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42770,17 +44747,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42790,31 +44768,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9198] = 3, - ACTIONS(3), 1, + [6453] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1170), 17, + ACTIONS(1228), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1172), 43, + ACTIONS(1230), 44, anon_sym_export, anon_sym_default, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -42826,7 +44806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -42835,17 +44814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_case, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -42855,32 +44835,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [9266] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, + [6523] = 12, + ACTIONS(848), 1, anon_sym_EQ_GT, - ACTIONS(854), 1, + ACTIONS(858), 1, + anon_sym_COLON, + ACTIONS(860), 1, anon_sym_EQ, - ACTIONS(872), 1, - anon_sym_function, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(931), 1, + ACTIONS(940), 1, sym_identifier, - STATE(1609), 1, - sym_formal_parameters, - ACTIONS(933), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 13, + ACTIONS(942), 1, + anon_sym_LBRACE, + ACTIONS(944), 1, + anon_sym_LBRACK, + STATE(1266), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1188), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(824), 14, 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, @@ -42890,7 +44872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -42906,12 +44888,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(829), 21, + ACTIONS(835), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -42922,103 +44903,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1174), 17, - ts_builtin_sym_end, - anon_sym_LBRACE, - anon_sym_RBRACE, + [6610] = 11, + ACTIONS(898), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1176), 43, + ACTIONS(903), 1, + anon_sym_function, + ACTIONS(1232), 1, + sym_identifier, + ACTIONS(1236), 1, + anon_sym_EQ, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + STATE(1734), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1234), 6, anon_sym_export, - anon_sym_default, - anon_sym_import, - anon_sym_var, anon_sym_let, - anon_sym_const, - anon_sym_else, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - 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_case, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, anon_sym_static, anon_sym_get, anon_sym_set, - [9418] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(902), 1, + ACTIONS(824), 11, + sym__ternary_qmark, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(850), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(835), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_of, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [6695] = 11, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(905), 1, + ACTIONS(901), 1, anon_sym_EQ, - ACTIONS(907), 1, + ACTIONS(903), 1, anon_sym_function, - ACTIONS(923), 1, + ACTIONS(1232), 1, sym_identifier, - ACTIONS(929), 1, + ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(935), 1, - anon_sym_in, - ACTIONS(938), 1, - anon_sym_of, - STATE(1661), 1, + STATE(1734), 1, sym_formal_parameters, - ACTIONS(925), 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1234), 6, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(818), 11, + ACTIONS(824), 11, sym__ternary_qmark, anon_sym_LBRACK, anon_sym_DOT, @@ -43030,7 +45019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43046,11 +45035,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(829), 20, + ACTIONS(835), 22, anon_sym_STAR, + anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43061,34 +45051,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9505] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(902), 1, + [6780] = 13, + ACTIONS(898), 1, anon_sym_LPAREN, - ACTIONS(905), 1, + ACTIONS(901), 1, anon_sym_EQ, - ACTIONS(907), 1, + ACTIONS(903), 1, anon_sym_function, - ACTIONS(1178), 1, + ACTIONS(925), 1, sym_identifier, - ACTIONS(1182), 1, + ACTIONS(934), 1, anon_sym_EQ_GT, - STATE(1651), 1, + ACTIONS(991), 1, + anon_sym_in, + ACTIONS(994), 1, + anon_sym_of, + STATE(1717), 1, sym_formal_parameters, - ACTIONS(1180), 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(927), 6, anon_sym_export, + anon_sym_let, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(818), 11, + ACTIONS(824), 11, sym__ternary_qmark, anon_sym_LBRACK, anon_sym_DOT, @@ -43100,7 +45097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43116,13 +45113,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(829), 22, + ACTIONS(835), 20, anon_sym_STAR, - anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43133,36 +45127,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9588] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(902), 1, - anon_sym_LPAREN, - ACTIONS(907), 1, - anon_sym_function, - ACTIONS(1178), 1, - sym_identifier, - ACTIONS(1182), 1, + [6869] = 12, + ACTIONS(848), 1, anon_sym_EQ_GT, - ACTIONS(1184), 1, + ACTIONS(860), 1, anon_sym_EQ, - STATE(1651), 1, - sym_formal_parameters, - ACTIONS(1180), 5, - anon_sym_export, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(818), 11, - sym__ternary_qmark, + ACTIONS(862), 1, + anon_sym_COLON, + ACTIONS(940), 1, + sym_identifier, + ACTIONS(942), 1, + anon_sym_LBRACE, + ACTIONS(944), 1, anon_sym_LBRACK, + STATE(1266), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1188), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(824), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, sym_optional_chain, anon_sym_LT_EQ, @@ -43172,7 +45171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43188,13 +45187,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(829), 22, + ACTIONS(835), 21, anon_sym_STAR, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43205,46 +45202,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9671] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(831), 1, - anon_sym_COLON, - ACTIONS(846), 1, - anon_sym_RBRACE, - ACTIONS(1190), 1, - anon_sym_LPAREN, - ACTIONS(1193), 1, - anon_sym_EQ, - ACTIONS(1195), 1, + [6956] = 13, + ACTIONS(905), 1, anon_sym_EQ_GT, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, - STATE(1337), 1, - aux_sym_object_repeat1, - ACTIONS(1188), 15, - sym__automatic_semicolon, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(942), 1, + anon_sym_LBRACE, + ACTIONS(944), 1, + anon_sym_LBRACK, + ACTIONS(991), 1, + anon_sym_in, + ACTIONS(994), 1, + anon_sym_of, + ACTIONS(1240), 1, + sym_identifier, + STATE(1259), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1110), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(824), 13, 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(1197), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43260,12 +45263,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), 20, + ACTIONS(835), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43276,45 +45277,48 @@ static const uint16_t ts_small_parse_table[] = { 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, - [9752] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(831), 1, - anon_sym_COLON, + anon_sym_instanceof, + [7044] = 11, ACTIONS(848), 1, - anon_sym_RBRACE, - ACTIONS(1190), 1, - anon_sym_LPAREN, - ACTIONS(1193), 1, - anon_sym_EQ, - ACTIONS(1195), 1, anon_sym_EQ_GT, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, - STATE(1301), 1, - aux_sym_object_repeat1, - ACTIONS(1188), 15, + ACTIONS(860), 1, + anon_sym_EQ, + ACTIONS(940), 1, + sym_identifier, + ACTIONS(942), 1, + anon_sym_LBRACE, + ACTIONS(944), 1, + anon_sym_LBRACK, + STATE(1266), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1188), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(824), 13, 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(1197), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43330,12 +45334,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), 20, + ACTIONS(835), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43346,36 +45349,68 @@ static const uint16_t ts_small_parse_table[] = { 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, - [9833] = 11, - ACTIONS(3), 1, + anon_sym_instanceof, + [7127] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(820), 1, - anon_sym_RBRACE, - ACTIONS(831), 1, - anon_sym_COLON, - ACTIONS(1190), 1, - anon_sym_LPAREN, - ACTIONS(1193), 1, + ACTIONS(1242), 21, + anon_sym_STAR, + anon_sym_in, anon_sym_EQ, - ACTIONS(1195), 1, - anon_sym_EQ_GT, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, - STATE(1337), 1, - aux_sym_object_repeat1, - ACTIONS(1188), 15, - sym__automatic_semicolon, + 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(1244), 36, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -43384,7 +45419,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, + [7193] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1246), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1248), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43400,12 +45474,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), 20, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7259] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1250), 21, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43416,21 +45502,59 @@ static const uint16_t ts_small_parse_table[] = { 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, - [9914] = 3, - ACTIONS(3), 1, + ACTIONS(1252), 36, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7325] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1199), 21, + ACTIONS(1254), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43441,17 +45565,19 @@ static const uint16_t ts_small_parse_table[] = { 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(1201), 35, + ACTIONS(1256), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -43482,16 +45608,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9978] = 3, - ACTIONS(3), 1, + [7391] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1203), 21, + ACTIONS(989), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43502,17 +45628,19 @@ static const uint16_t ts_small_parse_table[] = { 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(1205), 35, + ACTIONS(987), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -43543,16 +45671,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10042] = 3, - ACTIONS(3), 1, + [7457] = 11, + ACTIONS(837), 1, + anon_sym_COLON, + ACTIONS(852), 1, + anon_sym_RBRACE, + ACTIONS(1262), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, + anon_sym_EQ, + ACTIONS(1267), 1, + anon_sym_EQ_GT, + STATE(1302), 1, + aux_sym_object_pattern_repeat1, + STATE(1378), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1207), 21, + ACTIONS(1260), 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(1269), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1258), 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, + [7539] = 5, + ACTIONS(1271), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1269), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1258), 20, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1260), 21, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [7609] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1273), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43563,17 +45827,19 @@ static const uint16_t ts_small_parse_table[] = { 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(1209), 35, + ACTIONS(1275), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -43604,16 +45870,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10106] = 3, - ACTIONS(3), 1, + [7675] = 11, + ACTIONS(826), 1, + anon_sym_RBRACE, + ACTIONS(837), 1, + anon_sym_COLON, + ACTIONS(1262), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, + anon_sym_EQ, + ACTIONS(1267), 1, + anon_sym_EQ_GT, + STATE(1302), 1, + aux_sym_object_pattern_repeat1, + STATE(1378), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 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(1269), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1258), 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, + [7757] = 11, + ACTIONS(837), 1, + anon_sym_COLON, + ACTIONS(854), 1, + anon_sym_RBRACE, + ACTIONS(1262), 1, + anon_sym_LPAREN, + ACTIONS(1265), 1, + anon_sym_EQ, + ACTIONS(1267), 1, + anon_sym_EQ_GT, + STATE(1301), 1, + aux_sym_object_repeat1, + STATE(1302), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 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(1269), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1258), 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, + [7839] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1211), 21, + ACTIONS(1277), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43624,17 +46032,19 @@ static const uint16_t ts_small_parse_table[] = { 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(1213), 35, + ACTIONS(1279), 36, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -43665,44 +46075,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1215), 21, - anon_sym_STAR, - anon_sym_in, + [7905] = 12, + ACTIONS(901), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(1217), 35, - sym__ternary_qmark, + ACTIONS(934), 1, + anon_sym_EQ_GT, + ACTIONS(942), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(991), 1, + anon_sym_in, + ACTIONS(994), 1, anon_sym_of, - anon_sym_COLON, + ACTIONS(1281), 1, + sym_identifier, + ACTIONS(1283), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1388), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(824), 11, + sym__ternary_qmark, + anon_sym_LPAREN, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43718,24 +46125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1219), 21, + ACTIONS(835), 20, anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43746,24 +46139,22 @@ static const uint16_t ts_small_parse_table[] = { 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(1221), 35, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_instanceof, + [7988] = 6, + ACTIONS(901), 1, + anon_sym_EQ, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43779,6 +46170,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(824), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -43787,16 +46190,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 21, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43807,24 +46205,21 @@ static const uint16_t ts_small_parse_table[] = { 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(1225), 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, + [8059] = 6, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -43840,6 +46235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(824), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -43848,33 +46255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10362] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(1197), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -43885,54 +46270,98 @@ static const uint16_t ts_small_parse_table[] = { 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(1188), 20, - sym__ternary_qmark, + [8130] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(987), 15, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, 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, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10430] = 3, - ACTIONS(3), 1, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(989), 41, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [8195] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1209), 15, + ACTIONS(1288), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1207), 40, + ACTIONS(1286), 41, anon_sym_export, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -43943,7 +46372,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -43951,17 +46379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -43971,28 +46400,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10493] = 3, - ACTIONS(3), 1, + [8260] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1231), 15, + ACTIONS(1292), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1229), 40, + ACTIONS(1290), 41, anon_sym_export, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -44003,7 +46434,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -44011,17 +46441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -44031,154 +46462,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10556] = 6, - ACTIONS(3), 1, + [8325] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(909), 1, - anon_sym_EQ_GT, - ACTIONS(911), 1, - anon_sym_EQ, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1296), 15, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(829), 20, - anon_sym_STAR, - anon_sym_in, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(1294), 41, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10625] = 6, - ACTIONS(3), 1, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [8390] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1233), 1, - anon_sym_EQ, - ACTIONS(1235), 1, - anon_sym_EQ_GT, - ACTIONS(1197), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1188), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1292), 15, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1186), 20, - anon_sym_STAR, - anon_sym_in, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(1290), 41, + anon_sym_export, + anon_sym_import, + anon_sym_with, + anon_sym_var, + anon_sym_let, + anon_sym_const, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_await, + anon_sym_while, + anon_sym_do, + anon_sym_try, + anon_sym_break, + anon_sym_continue, + anon_sym_debugger, + anon_sym_return, + anon_sym_throw, + anon_sym_yield, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10694] = 3, - ACTIONS(3), 1, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [8455] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1239), 15, + ACTIONS(1300), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1237), 40, + ACTIONS(1298), 41, anon_sym_export, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -44189,7 +46620,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -44197,17 +46627,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -44217,28 +46648,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10757] = 3, - ACTIONS(3), 1, + [8520] = 6, + ACTIONS(1271), 1, + anon_sym_EQ, + ACTIONS(1302), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1239), 15, + ACTIONS(1269), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1260), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1258), 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, + [8591] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1292), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1237), 40, + ACTIONS(1290), 41, anon_sym_export, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -44249,7 +46747,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -44257,17 +46754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -44277,28 +46775,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10820] = 3, - ACTIONS(3), 1, + [8656] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1239), 15, + ACTIONS(1306), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1237), 40, + ACTIONS(1304), 41, anon_sym_export, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -44309,7 +46809,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -44317,17 +46816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -44337,28 +46837,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10883] = 3, - ACTIONS(3), 1, + [8721] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1239), 15, + ACTIONS(1292), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BANG, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1237), 40, + ACTIONS(1290), 41, anon_sym_export, anon_sym_import, + anon_sym_with, anon_sym_var, anon_sym_let, anon_sym_const, @@ -44369,7 +46871,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_do, anon_sym_try, - anon_sym_with, anon_sym_break, anon_sym_continue, anon_sym_debugger, @@ -44377,17 +46878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_yield, anon_sym_LT, - anon_sym_SLASH, anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_typeof, anon_sym_void, anon_sym_delete, sym_identifier, + sym_private_property_identifier, sym_this, sym_super, sym_true, @@ -44397,14 +46899,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [10946] = 6, - ACTIONS(3), 1, + [8786] = 6, + ACTIONS(1302), 1, + anon_sym_EQ_GT, + ACTIONS(1308), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1227), 1, + ACTIONS(1269), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1260), 19, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1258), 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, + [8857] = 5, + ACTIONS(1308), 1, anon_sym_EQ, - ACTIONS(1235), 1, - anon_sym_EQ_GT, - ACTIONS(1197), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44420,11 +46986,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(1188), 18, + ACTIONS(1260), 19, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -44439,12 +47006,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1186), 20, + ACTIONS(1258), 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, + [8925] = 6, + ACTIONS(901), 1, + anon_sym_EQ, + ACTIONS(950), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(850), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(824), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(835), 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, @@ -44455,79 +47084,172 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11015] = 3, - ACTIONS(3), 1, + [8994] = 6, + ACTIONS(1310), 1, + anon_sym_EQ, + ACTIONS(1312), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1243), 15, - anon_sym_LBRACE, + ACTIONS(1269), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1260), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1241), 40, - anon_sym_export, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, + ACTIONS(1258), 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_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9063] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1246), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [11078] = 6, - ACTIONS(3), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1248), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9126] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(905), 1, + ACTIONS(1250), 21, + anon_sym_STAR, + anon_sym_in, anon_sym_EQ, - ACTIONS(909), 1, - anon_sym_EQ_GT, - ACTIONS(844), 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(1252), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44543,15 +47265,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 18, + 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, + [9189] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1242), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1244), 33, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9252] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1277), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1279), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9315] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(989), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(987), 33, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [9378] = 6, + ACTIONS(848), 1, + anon_sym_EQ_GT, + ACTIONS(860), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(850), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(824), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_LT_EQ, @@ -44562,12 +47495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(829), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -44578,79 +47510,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1247), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1245), 40, - anon_sym_export, - anon_sym_import, - anon_sym_var, - anon_sym_let, - anon_sym_const, - anon_sym_if, - anon_sym_switch, - anon_sym_for, - anon_sym_await, - anon_sym_while, - anon_sym_do, - anon_sym_try, - anon_sym_with, - anon_sym_break, - anon_sym_continue, - anon_sym_debugger, - anon_sym_return, - anon_sym_throw, - anon_sym_yield, - anon_sym_LT, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_typeof, - anon_sym_void, - anon_sym_delete, - sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [11210] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1249), 1, - anon_sym_EQ, - ACTIONS(1251), 1, + [9447] = 7, + ACTIONS(858), 1, + anon_sym_COLON, + ACTIONS(1267), 1, anon_sym_EQ_GT, - ACTIONS(1197), 15, + ACTIONS(1314), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44666,12 +47542,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(1188), 17, + ACTIONS(1260), 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, @@ -44684,12 +47559,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1186), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -44700,19 +47574,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11278] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1195), 1, + [9518] = 7, + ACTIONS(848), 1, anon_sym_EQ_GT, - ACTIONS(1227), 1, + ACTIONS(858), 1, + anon_sym_COLON, + ACTIONS(860), 1, anon_sym_EQ, - ACTIONS(1197), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44728,11 +47606,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(1188), 17, + ACTIONS(824), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -44746,12 +47623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1186), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -44762,21 +47638,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11346] = 3, - ACTIONS(3), 1, + [9589] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1207), 21, + ACTIONS(1273), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -44787,19 +47664,20 @@ static const uint16_t ts_small_parse_table[] = { 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(1209), 33, + ACTIONS(1275), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -44826,36 +47704,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11408] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_EQ_GT, - ACTIONS(854), 1, + [9652] = 7, + ACTIONS(901), 1, anon_sym_EQ, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(934), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(952), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(824), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -44867,35 +47731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(829), 20, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11476] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1195), 1, - anon_sym_EQ_GT, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1197), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44911,30 +47747,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(1188), 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(1186), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -44945,24 +47762,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11544] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(905), 1, + [9723] = 7, + ACTIONS(1271), 1, anon_sym_EQ, - ACTIONS(929), 1, + ACTIONS(1318), 1, anon_sym_EQ_GT, - ACTIONS(927), 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1316), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(818), 13, + ACTIONS(1260), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -44976,7 +47795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -44992,12 +47811,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(829), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45008,19 +47826,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11614] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, + [9794] = 5, + ACTIONS(1271), 1, anon_sym_EQ, - ACTIONS(1251), 1, - anon_sym_EQ_GT, - ACTIONS(1197), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45036,13 +47854,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1188), 17, + ACTIONS(1260), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -45054,12 +47873,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1186), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45070,47 +47888,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1211), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1213), 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, + [9861] = 7, + ACTIONS(862), 1, + anon_sym_COLON, + ACTIONS(1267), 1, + anon_sym_EQ_GT, + ACTIONS(1314), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45126,6 +47920,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(1260), 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, @@ -45134,16 +47937,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11744] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1215), 21, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45154,22 +47952,21 @@ static const uint16_t ts_small_parse_table[] = { 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(1217), 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, + [9932] = 6, + ACTIONS(1267), 1, + anon_sym_EQ_GT, + ACTIONS(1271), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45185,6 +47982,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1260), 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, @@ -45193,16 +48000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1219), 21, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45213,22 +48015,40 @@ static const uint16_t ts_small_parse_table[] = { 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(1221), 33, - sym__automatic_semicolon, - sym__ternary_qmark, + [10001] = 7, + ACTIONS(931), 1, + anon_sym_EQ, + ACTIONS(934), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(929), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(824), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45244,24 +48064,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [11868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1223), 21, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45272,22 +48079,40 @@ static const uint16_t ts_small_parse_table[] = { 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(1225), 33, - sym__automatic_semicolon, - sym__ternary_qmark, + [10072] = 7, + ACTIONS(1318), 1, + anon_sym_EQ_GT, + ACTIONS(1322), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1320), 4, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1260), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45303,22 +48128,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [11930] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(919), 1, + ACTIONS(1258), 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, + [10143] = 6, + ACTIONS(1267), 1, anon_sym_EQ_GT, - ACTIONS(921), 1, + ACTIONS(1314), 1, anon_sym_EQ, - ACTIONS(844), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45334,12 +48173,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(818), 17, + ACTIONS(1260), 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, @@ -45352,12 +48191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(829), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45368,23 +48206,40 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11998] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, + [10212] = 7, + ACTIONS(1302), 1, anon_sym_EQ_GT, - ACTIONS(854), 1, + ACTIONS(1328), 1, anon_sym_EQ, - ACTIONS(935), 1, - anon_sym_in, - ACTIONS(1255), 1, - anon_sym_of, - ACTIONS(844), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1325), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1260), 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(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45400,28 +48255,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(818), 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(829), 19, + ACTIONS(1258), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45432,19 +48270,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12070] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(905), 1, - anon_sym_EQ, - ACTIONS(919), 1, + [10283] = 6, + ACTIONS(848), 1, anon_sym_EQ_GT, - ACTIONS(844), 15, + ACTIONS(901), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45460,12 +48300,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(818), 17, + ACTIONS(824), 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, @@ -45478,12 +48318,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(829), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45494,38 +48333,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12138] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(1259), 1, + [10352] = 7, + ACTIONS(848), 1, anon_sym_EQ_GT, - ACTIONS(1257), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1188), 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(1197), 15, + ACTIONS(860), 1, + anon_sym_EQ, + ACTIONS(862), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45541,12 +48365,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(1186), 20, + ACTIONS(824), 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(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45557,24 +48397,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12208] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, + [10423] = 7, + ACTIONS(905), 1, anon_sym_EQ_GT, - ACTIONS(1264), 1, + ACTIONS(961), 1, anon_sym_EQ, - ACTIONS(1261), 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(958), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1188), 13, + ACTIONS(824), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -45588,7 +48430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45604,12 +48446,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), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45620,80 +48461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 21, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1201), 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, - [12340] = 3, - ACTIONS(3), 1, + [10494] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1203), 21, + ACTIONS(1254), 21, anon_sym_STAR, anon_sym_in, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45704,19 +48487,20 @@ static const uint16_t ts_small_parse_table[] = { 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(1205), 33, + ACTIONS(1256), 33, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -45743,16 +48527,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12402] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_EQ_GT, - ACTIONS(852), 1, - anon_sym_COLON, - ACTIONS(854), 1, + [10557] = 6, + ACTIONS(1271), 1, anon_sym_EQ, - ACTIONS(844), 15, + ACTIONS(1312), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45768,12 +48551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 16, + ACTIONS(1260), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -45785,12 +48569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(829), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45801,21 +48584,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12472] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, + [10626] = 6, + ACTIONS(950), 1, anon_sym_EQ_GT, - ACTIONS(854), 1, + ACTIONS(956), 1, anon_sym_EQ, - ACTIONS(856), 1, - anon_sym_COLON, - ACTIONS(844), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45831,12 +48614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 16, + ACTIONS(824), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -45848,12 +48632,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(829), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45864,17 +48647,38 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12542] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, + [10695] = 6, + ACTIONS(1271), 1, anon_sym_EQ, - ACTIONS(1197), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1316), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1260), 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(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -45890,31 +48694,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(1188), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1186), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -45925,44 +48709,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12608] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1195), 1, + [10763] = 7, + ACTIONS(1302), 1, anon_sym_EQ_GT, - ACTIONS(1253), 1, + ACTIONS(1308), 1, anon_sym_EQ, - ACTIONS(1267), 1, - anon_sym_in, - ACTIONS(1270), 1, - anon_sym_of, - ACTIONS(1197), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1188), 16, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1331), 3, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1260), 13, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -45974,32 +48741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1186), 19, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12680] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 1, - anon_sym_EQ, - ACTIONS(1197), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46015,31 +48757,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(1188), 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(1186), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46050,21 +48772,38 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12746] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(852), 1, - anon_sym_COLON, - ACTIONS(1195), 1, - anon_sym_EQ_GT, - ACTIONS(1253), 1, + [10833] = 6, + ACTIONS(1322), 1, anon_sym_EQ, - ACTIONS(1197), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1320), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1260), 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(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46080,29 +48819,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(1188), 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(1186), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46113,21 +48834,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12816] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(856), 1, - anon_sym_COLON, - ACTIONS(1195), 1, - anon_sym_EQ_GT, - ACTIONS(1253), 1, + [10901] = 5, + ACTIONS(1310), 1, anon_sym_EQ, - ACTIONS(1197), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46143,12 +48862,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(1188), 16, + ACTIONS(1260), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46160,12 +48880,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1186), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46176,24 +48895,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12886] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, + [10967] = 7, + ACTIONS(905), 1, anon_sym_EQ_GT, - ACTIONS(948), 1, + ACTIONS(907), 1, anon_sym_EQ, - ACTIONS(945), 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(964), 3, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(818), 13, + ACTIONS(824), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46207,7 +48927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46223,12 +48943,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(829), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46239,26 +48958,29 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12956] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(929), 1, + [11037] = 8, + ACTIONS(1302), 1, anon_sym_EQ_GT, - ACTIONS(942), 1, + ACTIONS(1308), 1, anon_sym_EQ, - ACTIONS(940), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(818), 13, + ACTIONS(1334), 1, + anon_sym_in, + ACTIONS(1337), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 15, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46270,7 +48992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46286,12 +49008,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(829), 20, + ACTIONS(1258), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46302,24 +49022,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13026] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - anon_sym_EQ_GT, - ACTIONS(1274), 1, + [11109] = 6, + ACTIONS(1328), 1, anon_sym_EQ, - ACTIONS(1272), 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1325), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1188), 13, + ACTIONS(1260), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46333,7 +49053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46349,12 +49069,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), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46365,39 +49084,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13096] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(842), 1, - anon_sym_EQ_GT, + [11177] = 8, ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(907), 1, anon_sym_EQ, - ACTIONS(844), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(818), 17, - sym__automatic_semicolon, + ACTIONS(991), 1, + anon_sym_in, + ACTIONS(1339), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(824), 15, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -46411,12 +49118,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(829), 20, + ACTIONS(850), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(835), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46427,17 +49148,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13164] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 1, + [11249] = 5, + ACTIONS(1314), 1, anon_sym_EQ, - ACTIONS(1197), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46453,7 +49176,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(1188), 17, + ACTIONS(1260), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -46471,12 +49194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1186), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46487,21 +49209,37 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13229] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 1, + [11315] = 6, + ACTIONS(1308), 1, anon_sym_EQ, - ACTIONS(1267), 1, - anon_sym_in, - ACTIONS(1270), 1, - anon_sym_of, - ACTIONS(1197), 15, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1331), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1260), 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(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46517,28 +49255,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(1188), 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(1186), 19, + ACTIONS(1258), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46549,22 +49270,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 1, - anon_sym_EQ, - ACTIONS(1272), 4, + [11382] = 8, + ACTIONS(905), 1, + anon_sym_EQ_GT, + ACTIONS(929), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(958), 1, anon_sym_RBRACK, - ACTIONS(1188), 13, + ACTIONS(961), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(824), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46578,7 +49302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46594,12 +49318,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), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46610,24 +49333,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13365] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1264), 1, + [11453] = 6, + ACTIONS(901), 1, anon_sym_EQ, - ACTIONS(1261), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1188), 13, + ACTIONS(934), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(824), 15, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46639,7 +49363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46655,12 +49379,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), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46671,17 +49394,37 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13432] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1249), 1, + [11520] = 6, + ACTIONS(1271), 1, anon_sym_EQ, - ACTIONS(1197), 15, + ACTIONS(1318), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 15, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46697,30 +49440,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(1188), 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(1186), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46731,24 +49455,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13497] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, + [11587] = 7, + ACTIONS(1308), 1, anon_sym_EQ, - ACTIONS(1257), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1188), 13, + ACTIONS(1334), 1, + anon_sym_in, + ACTIONS(1337), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 15, sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46760,7 +49487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46776,12 +49503,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), 20, + ACTIONS(1258), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46792,23 +49517,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13564] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 1, - anon_sym_EQ, - ACTIONS(1235), 1, + [11656] = 8, + ACTIONS(1302), 1, anon_sym_EQ_GT, - ACTIONS(1277), 3, + ACTIONS(1320), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1325), 1, anon_sym_RBRACK, - ACTIONS(1188), 13, + ACTIONS(1328), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46822,7 +49549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46838,12 +49565,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), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46854,23 +49580,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13633] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - anon_sym_EQ_GT, - ACTIONS(911), 1, - anon_sym_EQ, - ACTIONS(965), 3, + [11727] = 7, + ACTIONS(1320), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1325), 1, anon_sym_RBRACK, - ACTIONS(818), 13, + ACTIONS(1328), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 13, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -46884,7 +49610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46900,12 +49626,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(829), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46916,23 +49641,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13702] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, + [11795] = 8, + ACTIONS(901), 1, anon_sym_EQ, - ACTIONS(1259), 1, + ACTIONS(934), 1, anon_sym_EQ_GT, - ACTIONS(1188), 15, + ACTIONS(991), 1, + anon_sym_in, + ACTIONS(1339), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(824), 13, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -46944,7 +49673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -46960,12 +49689,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), 20, + ACTIONS(835), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -46976,23 +49703,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13768] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 1, + [11865] = 6, + ACTIONS(1236), 1, anon_sym_EQ, - ACTIONS(1277), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1188), 13, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(824), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47004,7 +49732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47020,12 +49748,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), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -47036,25 +49763,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13834] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - anon_sym_EQ_GT, - ACTIONS(1261), 1, - anon_sym_RBRACK, - ACTIONS(1264), 1, + [11931] = 6, + ACTIONS(901), 1, anon_sym_EQ, - ACTIONS(1272), 1, - anon_sym_COMMA, - ACTIONS(1188), 13, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(824), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47066,7 +49792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, + ACTIONS(850), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47082,12 +49808,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), 20, + ACTIONS(835), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -47098,25 +49823,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13904] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(909), 1, - anon_sym_EQ_GT, - ACTIONS(940), 1, - anon_sym_COMMA, - ACTIONS(945), 1, - anon_sym_RBRACK, - ACTIONS(948), 1, + [11997] = 6, + ACTIONS(1341), 1, anon_sym_EQ, - ACTIONS(818), 13, + ACTIONS(1343), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47128,7 +49852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47144,12 +49868,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(829), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -47160,23 +49883,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13974] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(905), 1, + [12063] = 8, + ACTIONS(1271), 1, anon_sym_EQ, - ACTIONS(929), 1, + ACTIONS(1318), 1, anon_sym_EQ_GT, - ACTIONS(818), 15, + ACTIONS(1334), 1, + anon_sym_in, + ACTIONS(1337), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 13, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47188,7 +49915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47204,12 +49931,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(829), 20, + ACTIONS(1258), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -47220,19 +49945,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14040] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(905), 1, + [12133] = 6, + ACTIONS(1271), 1, anon_sym_EQ, - ACTIONS(1182), 1, + ACTIONS(1343), 1, anon_sym_EQ_GT, - ACTIONS(818), 14, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 14, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_of, @@ -47247,7 +49974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47263,12 +49990,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(829), 20, + ACTIONS(1258), 20, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -47279,22 +50005,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14105] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1182), 1, - anon_sym_EQ_GT, - ACTIONS(1184), 1, + [12199] = 7, + ACTIONS(1271), 1, anon_sym_EQ, - ACTIONS(818), 14, + ACTIONS(1334), 1, + anon_sym_in, + ACTIONS(1337), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 13, sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47306,7 +50035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47322,12 +50051,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(829), 20, + ACTIONS(1258), 19, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -47338,25 +50065,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14170] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(905), 1, + [12266] = 5, + ACTIONS(1341), 1, anon_sym_EQ, - ACTIONS(929), 1, - anon_sym_EQ_GT, - ACTIONS(935), 1, - anon_sym_in, - ACTIONS(1255), 1, - anon_sym_of, - ACTIONS(818), 13, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1260), 14, sym__ternary_qmark, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -47368,7 +50092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(844), 15, + ACTIONS(1269), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -47384,11 +50108,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(829), 19, + ACTIONS(1258), 20, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -47399,406 +50123,510 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14239] = 6, - ACTIONS(3), 1, + [12329] = 10, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1280), 1, - anon_sym_EQ, - ACTIONS(1282), 1, - anon_sym_EQ_GT, - ACTIONS(1188), 14, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1345), 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(1347), 22, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [12395] = 9, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1359), 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(1361), 24, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [12459] = 10, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1197), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 20, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1363), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14304] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(1282), 1, - anon_sym_EQ_GT, - ACTIONS(1188), 14, + ACTIONS(1365), 22, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1197), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 20, + [12525] = 5, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(1367), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(517), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14369] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1261), 1, - anon_sym_RBRACK, - ACTIONS(1264), 1, - anon_sym_EQ, - ACTIONS(1272), 1, - anon_sym_COMMA, - ACTIONS(1188), 13, + ACTIONS(515), 29, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 20, + [12581] = 5, + ACTIONS(1349), 1, + anon_sym_LPAREN, + STATE(518), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1369), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14436] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(1259), 1, - anon_sym_EQ_GT, - ACTIONS(1267), 1, - anon_sym_in, - ACTIONS(1270), 1, - anon_sym_of, - ACTIONS(1188), 13, + ACTIONS(1371), 28, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 19, + [12636] = 8, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1373), 1, + sym_optional_chain, + STATE(518), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1369), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14505] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 1, - anon_sym_EQ, - ACTIONS(1188), 14, + ACTIONS(1371), 25, sym__ternary_qmark, - anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 20, + [12697] = 4, + ACTIONS(1375), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(571), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [14567] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(1267), 1, - anon_sym_in, - ACTIONS(1270), 1, - anon_sym_of, - ACTIONS(1188), 13, + ACTIONS(569), 29, sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1197), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_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), 19, + [12750] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1136), 16, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1138), 26, + anon_sym_export, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [12801] = 4, + ACTIONS(1271), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1258), 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(1260), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [14633] = 11, - ACTIONS(3), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [12854] = 4, + ACTIONS(1367), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1284), 1, - sym_identifier, - ACTIONS(1286), 1, + ACTIONS(517), 12, anon_sym_STAR, - ACTIONS(1288), 1, - anon_sym_LBRACE, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - STATE(1507), 1, - sym_string, - STATE(1509), 1, - sym_import_clause, - STATE(1585), 2, - sym_namespace_import_export, - sym_named_imports, - ACTIONS(1292), 12, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1290), 23, - sym__automatic_semicolon, + ACTIONS(515), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -47813,50 +50641,41 @@ 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, - [14701] = 10, - ACTIONS(3), 1, + [12907] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1298), 12, + ACTIONS(563), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1300), 21, + ACTIONS(565), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47870,47 +50689,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [14765] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1310), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1312), 12, + anon_sym_BQUOTE, + [12957] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1377), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1314), 21, + ACTIONS(1379), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47924,44 +50736,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [14829] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1316), 12, + [13007] = 4, + ACTIONS(1385), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1381), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1318), 23, + anon_sym_instanceof, + ACTIONS(1383), 27, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -47974,35 +50784,33 @@ 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, - [14891] = 5, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [13059] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(531), 1, - anon_sym_EQ, - ACTIONS(1320), 1, - sym__automatic_semicolon, - ACTIONS(525), 12, + ACTIONS(1387), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(523), 28, + ACTIONS(1389), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48026,31 +50834,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14945] = 5, - ACTIONS(3), 1, + [13109] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1302), 1, - anon_sym_LPAREN, - STATE(594), 1, - sym_arguments, - ACTIONS(1322), 12, + ACTIONS(1391), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1324), 27, + ACTIONS(1393), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48074,30 +50881,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14998] = 4, - ACTIONS(3), 1, + [13159] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(1186), 12, + ACTIONS(571), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 28, + ACTIONS(569), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48121,36 +50928,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15049] = 5, - ACTIONS(3), 1, + [13209] = 22, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1409), 1, + anon_sym_PIPE, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(531), 1, - anon_sym_EQ, - ACTIONS(1326), 4, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1397), 10, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(527), 12, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [13297] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1423), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(529), 24, + ACTIONS(1425), 29, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48169,25 +51041,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15102] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 1, + [13347] = 13, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1329), 1, + ACTIONS(1355), 1, sym_optional_chain, - STATE(594), 1, - sym_arguments, - ACTIONS(1322), 12, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -48195,13 +51079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1324), 24, + ACTIONS(1397), 18, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_RBRACK, anon_sym_AMP_AMP, @@ -48209,47 +51092,41 @@ 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15161] = 5, - ACTIONS(3), 1, + [13417] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1338), 1, - anon_sym_EQ, - ACTIONS(1335), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1331), 12, + ACTIONS(615), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1333), 24, + ACTIONS(613), 29, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48268,30 +51145,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15214] = 4, - ACTIONS(3), 1, + [13467] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1320), 1, - sym__automatic_semicolon, - ACTIONS(525), 12, + ACTIONS(1427), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(523), 28, + ACTIONS(1429), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48315,36 +51192,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15265] = 5, - ACTIONS(3), 1, + [13517] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1347), 1, - anon_sym_EQ, - ACTIONS(1344), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1340), 12, + ACTIONS(1431), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1342), 24, + ACTIONS(1433), 29, sym__ternary_qmark, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -48363,75 +51239,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15318] = 4, - ACTIONS(3), 1, - sym_comment, + [13567] = 11, + ACTIONS(407), 1, + anon_sym_BQUOTE, ACTIONS(1349), 1, - sym__automatic_semicolon, - ACTIONS(653), 12, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(651), 28, + ACTIONS(1397), 19, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15369] = 3, - ACTIONS(3), 1, + [13633] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1435), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 28, + ACTIONS(1437), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48455,96 +51341,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15417] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [13683] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1357), 5, + ACTIONS(1439), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [15511] = 3, - ACTIONS(3), 1, + [13779] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(661), 12, + ACTIONS(1451), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(663), 28, + ACTIONS(1453), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48568,176 +51458,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15559] = 3, - ACTIONS(3), 1, + [13829] = 18, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1391), 12, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1409), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1393), 28, + ACTIONS(1397), 13, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + [13909] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1228), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15607] = 9, - ACTIONS(3), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1230), 26, + anon_sym_export, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [13959] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(79), 1, + ACTIONS(1140), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1142), 26, + anon_sym_export, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [14009] = 23, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1355), 1, sym_optional_chain, - STATE(766), 2, - sym_template_string, - sym_arguments, - ACTIONS(1316), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1401), 1, anon_sym_GT_GT, + ACTIONS(1405), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1318), 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, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [15667] = 10, - ACTIONS(3), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1395), 1, - anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_LBRACK, - ACTIONS(1399), 1, - anon_sym_DOT, - ACTIONS(1401), 1, - sym_optional_chain, - ACTIONS(1403), 2, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(766), 2, - sym_template_string, - sym_arguments, - ACTIONS(1312), 12, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1314), 19, - sym__automatic_semicolon, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1397), 9, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [15729] = 3, - ACTIONS(3), 1, + [14099] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1405), 12, + ACTIONS(1455), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1407), 28, + ACTIONS(1457), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48761,119 +51728,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15777] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1409), 1, - sym__automatic_semicolon, - ACTIONS(653), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(651), 27, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, + [14149] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1411), 12, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1413), 28, - sym__ternary_qmark, - anon_sym_LBRACE, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1453), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [15875] = 3, - ACTIONS(3), 1, + [14245] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1415), 12, + ACTIONS(1459), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1417), 28, + ACTIONS(1461), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -48897,259 +51845,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15923] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [14295] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1419), 5, + ACTIONS(1463), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [16017] = 3, - ACTIONS(3), 1, + [14391] = 14, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1421), 12, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, 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(1419), 28, + ACTIONS(1397), 18, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16065] = 3, - ACTIONS(3), 1, + [14463] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(653), 12, + ACTIONS(1465), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(651), 28, - sym__automatic_semicolon, + ACTIONS(1467), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16113] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1423), 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14513] = 5, + ACTIONS(1476), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1473), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - [16207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1425), 12, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1423), 28, + ACTIONS(1471), 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, @@ -49168,164 +52069,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16255] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [14567] = 24, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1427), 5, + ACTIONS(1397), 8, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [16349] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_QMARK_QMARK, + [14659] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1429), 5, + ACTIONS(1478), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [16443] = 3, - ACTIONS(3), 1, + [14755] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1431), 12, + ACTIONS(1480), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1433), 28, + ACTIONS(1478), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49349,28 +52254,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16491] = 3, - ACTIONS(3), 1, + [14805] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1435), 12, + ACTIONS(1482), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 28, + ACTIONS(1484), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49394,73 +52301,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1439), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1441), 28, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + [14855] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(1351), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, anon_sym_AMP_AMP, + ACTIONS(1443), 1, anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16587] = 3, - ACTIONS(3), 1, + ACTIONS(1486), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [14951] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1443), 12, + ACTIONS(1488), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1445), 28, + ACTIONS(1490), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49484,28 +52418,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16635] = 3, - ACTIONS(3), 1, + [15001] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1447), 12, + ACTIONS(1492), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1449), 28, + ACTIONS(1494), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49529,28 +52465,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16683] = 3, - ACTIONS(3), 1, + [15051] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1451), 12, + ACTIONS(1496), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1453), 28, + ACTIONS(1498), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49574,28 +52512,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16731] = 3, - ACTIONS(3), 1, + [15101] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1455), 12, + ACTIONS(1500), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1457), 28, + ACTIONS(1502), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49619,33 +52559,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16779] = 3, - ACTIONS(3), 1, + [15151] = 5, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1459), 12, + ACTIONS(1504), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(519), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1461), 28, + ACTIONS(521), 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, @@ -49664,94 +52608,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16827] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [15205] = 20, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1409), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 7, + ACTIONS(1397), 11, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, - [16917] = 3, - ACTIONS(3), 1, + [15289] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1465), 12, + ACTIONS(1507), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1467), 28, + ACTIONS(1509), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49775,96 +52719,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16965] = 26, - ACTIONS(3), 1, + [15339] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1511), 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(1513), 29, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1304), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1306), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15389] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1467), 5, + ACTIONS(1515), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [17059] = 3, - ACTIONS(3), 1, + [15485] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1469), 12, + ACTIONS(1517), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 28, + ACTIONS(1519), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49888,28 +52883,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17107] = 3, - ACTIONS(3), 1, + [15535] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(633), 12, + ACTIONS(1521), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(635), 28, + ACTIONS(1523), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -49933,45 +52930,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17155] = 10, - ACTIONS(3), 1, + [15585] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1036), 15, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(1397), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1399), 1, - anon_sym_DOT, - ACTIONS(1401), 1, - sym_optional_chain, - ACTIONS(1403), 2, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(766), 2, - sym_template_string, - sym_arguments, - ACTIONS(1298), 12, + anon_sym_BQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1038), 26, + anon_sym_export, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [15635] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1525), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1300), 19, - sym__automatic_semicolon, + ACTIONS(1527), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -49985,260 +53021,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [17217] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1473), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1463), 12, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [17295] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1473), 12, + [15685] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(597), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 18, + ACTIONS(595), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [17359] = 13, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [15735] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, + ACTIONS(1024), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(1026), 26, + anon_sym_export, + anon_sym_import, + anon_sym_let, + anon_sym_await, + anon_sym_yield, + anon_sym_LT, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_typeof, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [15785] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1377), 1, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(538), 2, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 10, + ACTIONS(1399), 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(1463), 17, - sym__ternary_qmark, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1519), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, + [15881] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, anon_sym_AMP_AMP, + ACTIONS(1443), 1, anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [17427] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + ACTIONS(1523), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [15977] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1473), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, anon_sym_PIPE, - ACTIONS(1310), 2, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 9, - sym__ternary_qmark, + ACTIONS(1529), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [17513] = 3, - ACTIONS(3), 1, + [16073] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1475), 12, + ACTIONS(1531), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1477), 28, + ACTIONS(1533), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50262,28 +53375,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17561] = 3, - ACTIONS(3), 1, + [16123] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1479), 12, + ACTIONS(601), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1481), 28, + ACTIONS(599), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50307,33 +53422,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17609] = 3, - ACTIONS(3), 1, + [16173] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1494), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [16269] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(585), 12, + ACTIONS(1535), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(583), 28, - sym__automatic_semicolon, + ACTIONS(1537), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50352,28 +53539,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17657] = 3, - ACTIONS(3), 1, + [16319] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1483), 12, + ACTIONS(1539), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1485), 28, + ACTIONS(1541), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50397,33 +53586,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17705] = 3, - ACTIONS(3), 1, + [16369] = 5, + ACTIONS(1550), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1487), 12, + ACTIONS(1547), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1543), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 28, + ACTIONS(1545), 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, @@ -50442,97 +53635,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17753] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [16423] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1377), 1, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1473), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, anon_sym_PIPE, - ACTIONS(1310), 2, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 10, - sym__ternary_qmark, + ACTIONS(1552), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [17837] = 4, - ACTIONS(3), 1, + [16519] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1491), 1, - sym__automatic_semicolon, - ACTIONS(525), 12, + ACTIONS(1554), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(523), 27, + ACTIONS(1556), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50551,28 +53752,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17887] = 3, - ACTIONS(3), 1, + [16569] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1493), 12, + ACTIONS(1558), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1495), 28, + ACTIONS(1560), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50596,28 +53799,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17935] = 3, - ACTIONS(3), 1, + [16619] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(623), 12, + ACTIONS(1562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(625), 28, + ACTIONS(1564), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50641,28 +53846,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17983] = 3, - ACTIONS(3), 1, + [16669] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1497), 12, + ACTIONS(1566), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1499), 28, + ACTIONS(1568), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50686,101 +53893,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18031] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1501), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [18125] = 3, - ACTIONS(3), 1, + [16719] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(605), 12, + ACTIONS(1570), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(603), 28, - sym__automatic_semicolon, + ACTIONS(1572), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -50799,90 +53940,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18173] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1473), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1463), 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, - [18255] = 3, - ACTIONS(3), 1, + [16769] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1503), 12, + ACTIONS(1574), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1505), 28, + ACTIONS(1576), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -50906,84 +53987,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18303] = 14, - ACTIONS(3), 1, + [16819] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1578), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1473), 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(1463), 17, + ACTIONS(1580), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [18373] = 3, - ACTIONS(3), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16869] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1507), 12, + ACTIONS(1570), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1509), 28, + ACTIONS(1572), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51007,225 +54081,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18421] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1511), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [18515] = 23, - ACTIONS(3), 1, + [16919] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1582), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1463), 8, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [18603] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1365), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1463), 9, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [18689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1513), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 28, + ACTIONS(1584), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51249,37 +54128,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18737] = 4, - ACTIONS(3), 1, + [16969] = 6, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1373), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1521), 1, - sym_regex_flags, - ACTIONS(1517), 13, + ACTIONS(1582), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1519), 26, + ACTIONS(1584), 26, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -51292,31 +54174,34 @@ 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, - [18787] = 3, - ACTIONS(3), 1, + [17025] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1523), 12, + ACTIONS(1570), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 28, + ACTIONS(1572), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51340,28 +54225,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18835] = 3, - ACTIONS(3), 1, + [17075] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1580), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [17171] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1523), 12, + ACTIONS(1258), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 28, + ACTIONS(1260), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51385,28 +54342,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18883] = 3, - ACTIONS(3), 1, + [17221] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1523), 12, + ACTIONS(577), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 28, + ACTIONS(579), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51430,73 +54389,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + [17271] = 22, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, anon_sym_GT_GT, + ACTIONS(1405), 1, anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1445), 1, anon_sym_PIPE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 28, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1397), 10, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18979] = 3, - ACTIONS(3), 1, + [17359] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1527), 12, + ACTIONS(1586), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1529), 28, + ACTIONS(1588), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51520,96 +54502,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19027] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [17409] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1531), 5, + ACTIONS(1590), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [19121] = 3, - ACTIONS(3), 1, + [17505] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1533), 12, + ACTIONS(587), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1535), 28, + ACTIONS(589), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51633,28 +54619,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19169] = 3, - ACTIONS(3), 1, + [17555] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(605), 12, + ACTIONS(543), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(603), 28, + ACTIONS(545), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51678,28 +54666,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19217] = 3, - ACTIONS(3), 1, + [17605] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1537), 12, + ACTIONS(533), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1539), 28, + ACTIONS(535), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51723,28 +54713,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19265] = 3, - ACTIONS(3), 1, + [17655] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1541), 12, + ACTIONS(1570), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1543), 28, + ACTIONS(1572), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51768,33 +54760,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19313] = 3, - ACTIONS(3), 1, + [17705] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(599), 12, + ACTIONS(607), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 28, - sym__automatic_semicolon, + ACTIONS(609), 29, sym__ternary_qmark, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -51813,28 +54807,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19361] = 3, - ACTIONS(3), 1, + [17755] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1545), 12, + ACTIONS(1592), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1547), 28, + ACTIONS(1594), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51858,28 +54854,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19409] = 3, - ACTIONS(3), 1, + [17805] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(611), 12, + ACTIONS(1596), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(613), 28, + ACTIONS(1598), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -51903,96 +54901,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19457] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [17855] = 16, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1409), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1549), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1397), 16, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [19551] = 3, - ACTIONS(3), 1, + 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, + [17931] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1551), 12, + ACTIONS(621), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1549), 28, + ACTIONS(623), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -52016,28 +55008,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19599] = 3, - ACTIONS(3), 1, + [17981] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(591), 12, + ACTIONS(553), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(593), 28, + ACTIONS(555), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -52061,73 +55055,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1553), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + [18031] = 21, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, anon_sym_GT_GT, + ACTIONS(1405), 1, anon_sym_AMP, + ACTIONS(1409), 1, anon_sym_PIPE, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1555), 28, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1397), 11, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19695] = 3, - ACTIONS(3), 1, + [18117] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(653), 12, + ACTIONS(1600), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(651), 28, + ACTIONS(1602), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -52151,73 +55167,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19743] = 3, - ACTIONS(3), 1, + [18167] = 11, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(599), 12, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(597), 28, + ACTIONS(1397), 19, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19791] = 3, - ACTIONS(3), 1, + [18233] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1557), 12, + ACTIONS(1604), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1559), 28, + ACTIONS(1606), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -52241,28 +55269,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19839] = 3, - ACTIONS(3), 1, + [18283] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1561), 12, + ACTIONS(1608), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1563), 28, + ACTIONS(1610), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -52286,28 +55316,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19887] = 3, - ACTIONS(3), 1, + [18333] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1565), 12, + ACTIONS(1612), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1567), 28, + ACTIONS(1614), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -52331,28 +55363,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19935] = 3, - ACTIONS(3), 1, + [18383] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(671), 12, + ACTIONS(1616), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(673), 28, + ACTIONS(1618), 29, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -52376,33 +55410,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19983] = 3, - ACTIONS(3), 1, + [18433] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(555), 12, + ACTIONS(615), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 28, + ACTIONS(613), 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_SEMI, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52421,33 +55456,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20031] = 3, - ACTIONS(3), 1, + [18482] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1569), 12, + ACTIONS(601), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1571), 28, + ACTIONS(599), 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_SEMI, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52466,103 +55502,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20079] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [18531] = 10, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1485), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [20173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1573), 12, + ACTIONS(1345), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1575), 28, + ACTIONS(1347), 19, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, 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, @@ -52576,33 +55555,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [20221] = 3, - ACTIONS(3), 1, + [18594] = 4, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1292), 12, + ACTIONS(519), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1290), 28, + ACTIONS(521), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -52624,30 +55602,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20269] = 3, - ACTIONS(3), 1, + [18645] = 4, + ACTIONS(1476), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(585), 12, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(583), 28, + ACTIONS(1471), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -52669,30 +55649,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20317] = 3, - ACTIONS(3), 1, + [18696] = 4, + ACTIONS(1308), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(643), 12, + ACTIONS(1258), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(645), 28, + ACTIONS(1260), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -52714,33 +55696,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20365] = 3, - ACTIONS(3), 1, + [18747] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1577), 12, + ACTIONS(597), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1579), 28, + ACTIONS(595), 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_SEMI, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52759,35 +55742,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20413] = 3, - ACTIONS(3), 1, + [18796] = 9, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1624), 1, + anon_sym_DOT, + ACTIONS(1626), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1581), 12, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1359), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1583), 28, + ACTIONS(1361), 21, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, 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, @@ -52803,92 +55794,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + [18857] = 10, + ACTIONS(83), 1, anon_sym_BQUOTE, - [20461] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(538), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 7, + ACTIONS(1363), 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(1463), 15, + ACTIONS(1365), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20535] = 3, - ACTIONS(3), 1, + [18920] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1585), 12, + ACTIONS(571), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1587), 28, + ACTIONS(569), 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_SEMI, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52907,33 +55893,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20583] = 3, - ACTIONS(3), 1, + [18969] = 4, + ACTIONS(1630), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1589), 12, + ACTIONS(571), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1591), 28, + ACTIONS(569), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, + anon_sym_while, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -52952,38 +55940,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20631] = 6, - ACTIONS(3), 1, + [19020] = 4, + ACTIONS(1632), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1329), 1, - sym_optional_chain, - ACTIONS(1589), 12, + ACTIONS(517), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1591), 25, + ACTIONS(515), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_while, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -52996,103 +55983,36 @@ 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, - [20685] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1595), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [20781] = 3, - ACTIONS(3), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [19071] = 4, + ACTIONS(1550), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1186), 12, + ACTIONS(1543), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 28, + ACTIONS(1545), 27, sym__ternary_qmark, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -53114,758 +56034,770 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20829] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [19122] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1583), 5, + ACTIONS(1634), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - [20923] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [19216] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1379), 1, + ACTIONS(1640), 1, + anon_sym_AMP_AMP, + ACTIONS(1642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1644), 1, + anon_sym_GT_GT, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_PIPE, + ACTIONS(1656), 1, + anon_sym_PERCENT, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1666), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1668), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1473), 12, + ACTIONS(1636), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1646), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 18, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1638), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1660), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20987] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + ACTIONS(1529), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [19310] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1700), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1702), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1485), 4, + ACTIONS(1463), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [21080] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_of, + [19404] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1429), 4, + ACTIONS(1463), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [21173] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [19498] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1637), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, + ACTIONS(1700), 1, anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, + ACTIONS(1702), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1429), 4, + ACTIONS(1494), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [21266] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_of, + [19592] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1637), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1419), 4, + ACTIONS(1494), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [21359] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [19686] = 16, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, - anon_sym_AMP_AMP, - ACTIONS(1637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, - anon_sym_AMP, - ACTIONS(1645), 1, - anon_sym_CARET, - ACTIONS(1647), 1, - anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, - sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1659), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1409), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1549), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1397), 14, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [21452] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + 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, + [19760] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1637), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(1700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1702), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 6, + ACTIONS(1439), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [21541] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_of, + [19854] = 16, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1639), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1651), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1409), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1473), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 11, + ACTIONS(1397), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [21618] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_instanceof, + [19928] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1665), 4, + ACTIONS(1515), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [21711] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_SEMI, + [20022] = 21, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1409), 1, + anon_sym_PIPE, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_AMP_AMP, - ACTIONS(1603), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 6, + ACTIONS(1397), 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, - [21800] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [20106] = 11, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 12, + ACTIONS(1409), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 17, + ACTIONS(1397), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -53878,101 +56810,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [21863] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [20170] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1637), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, + ACTIONS(1700), 1, anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, + ACTIONS(1702), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1485), 4, + ACTIONS(1478), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [21956] = 6, - ACTIONS(3), 1, + anon_sym_of, + [20264] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(531), 1, - anon_sym_EQ, - ACTIONS(533), 1, - sym__automatic_semicolon, - ACTIONS(523), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(527), 12, + ACTIONS(1592), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(529), 23, + ACTIONS(1594), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -53992,1432 +56923,1451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22009] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [20312] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1501), 4, + ACTIONS(1453), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [22102] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [20406] = 22, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1473), 1, - anon_sym_PIPE, - ACTIONS(1639), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1651), 1, + ACTIONS(1684), 1, + anon_sym_CARET, + ACTIONS(1686), 1, + anon_sym_PIPE, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 9, + ACTIONS(1397), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [22185] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [20492] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1637), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, + ACTIONS(1700), 1, anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, + ACTIONS(1702), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1467), 4, + ACTIONS(1486), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [22278] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_of, + [20586] = 11, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, - anon_sym_AMP_AMP, - ACTIONS(1637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, - anon_sym_GT_GT, - ACTIONS(1643), 1, - anon_sym_AMP, - ACTIONS(1645), 1, - anon_sym_CARET, - ACTIONS(1647), 1, - anon_sym_PIPE, - ACTIONS(1651), 1, - anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, - sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1641), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1649), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1657), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1659), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1409), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1531), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [22371] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1397), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1667), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [22464] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [20650] = 28, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(1704), 1, + anon_sym_COMMA, + STATE(1290), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + ACTIONS(1706), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1419), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [22557] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [20748] = 23, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1619), 1, - anon_sym_STAR_STAR, - ACTIONS(1403), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(766), 2, - sym_template_string, - sym_arguments, - ACTIONS(1473), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1678), 1, anon_sym_GT_GT, + ACTIONS(1682), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1463), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1684), 1, anon_sym_CARET, + ACTIONS(1686), 1, + anon_sym_PIPE, + ACTIONS(1690), 1, 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, - [22620] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1395), 1, - anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_LBRACK, - ACTIONS(1399), 1, - anon_sym_DOT, - ACTIONS(1401), 1, - sym_optional_chain, - ACTIONS(1617), 1, - anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(766), 2, - sym_template_string, - sym_arguments, - ACTIONS(1473), 10, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1680), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [22687] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1395), 1, - anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_LBRACK, - ACTIONS(1399), 1, - anon_sym_DOT, - ACTIONS(1401), 1, - sym_optional_chain, - ACTIONS(1651), 1, - anon_sym_PERCENT, - ACTIONS(1653), 1, - anon_sym_STAR_STAR, - ACTIONS(1403), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1631), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 10, + ACTIONS(1672), 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(1463), 16, - 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, + ACTIONS(1694), 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, - [22754] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1347), 1, - anon_sym_EQ, - ACTIONS(1340), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1342), 26, + ACTIONS(1397), 7, 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_of, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22803] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [20836] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1427), 4, + ACTIONS(1519), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [22896] = 5, - ACTIONS(3), 1, + [20930] = 14, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1624), 1, + anon_sym_DOT, + ACTIONS(1626), 1, + sym_optional_chain, + ACTIONS(1690), 1, + anon_sym_PERCENT, + ACTIONS(1692), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(531), 1, - anon_sym_EQ, - ACTIONS(1491), 1, - sym__automatic_semicolon, - ACTIONS(525), 12, + ACTIONS(1628), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1670), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1688), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, 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(523), 25, + ACTIONS(1397), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22947] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [21000] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1473), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1640), 1, + anon_sym_AMP_AMP, + ACTIONS(1642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1617), 1, + ACTIONS(1652), 1, + anon_sym_PIPE, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(1666), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1668), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 8, + ACTIONS(1580), 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, - [23032] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [21094] = 20, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1473), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, - anon_sym_AMP, - ACTIONS(1617), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1409), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 9, + ACTIONS(1397), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [23115] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [21176] = 28, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1605), 1, + ACTIONS(1640), 1, + anon_sym_AMP_AMP, + ACTIONS(1642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1617), 1, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_PIPE, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(1666), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1668), 1, + sym__ternary_qmark, + ACTIONS(1704), 1, + anon_sym_COMMA, + STATE(1290), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1473), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + ACTIONS(1708), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 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, - [23196] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [21274] = 24, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1617), 1, + ACTIONS(1640), 1, + anon_sym_AMP_AMP, + ACTIONS(1642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1644), 1, + anon_sym_GT_GT, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_PIPE, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1615), 2, + ACTIONS(1646), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(766), 2, + ACTIONS(1662), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1664), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 8, + ACTIONS(1638), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1660), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1397), 6, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [21364] = 4, + ACTIONS(1271), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1258), 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(1463), 16, + ACTIONS(1260), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23265] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1395), 1, + [21414] = 21, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1409), 1, + anon_sym_PIPE, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_AMP_AMP, - ACTIONS(1603), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, - sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1549), 4, + ACTIONS(1397), 9, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [23358] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [21498] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1605), 1, + ACTIONS(1642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(1666), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1668), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 7, + ACTIONS(1552), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [21592] = 4, + ACTIONS(1550), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1543), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1545), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [23445] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21642] = 22, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1409), 1, + anon_sym_PIPE, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1605), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 8, + ACTIONS(1397), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [23530] = 22, - ACTIONS(3), 1, + [21728] = 6, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(525), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(79), 1, + ACTIONS(515), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(519), 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(521), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1395), 1, + [21782] = 18, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1473), 1, - anon_sym_PIPE, - ACTIONS(1639), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, - anon_sym_AMP, - ACTIONS(1645), 1, - anon_sym_CARET, - ACTIONS(1651), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1659), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 8, + ACTIONS(1409), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1397), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, - [23615] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [21860] = 13, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1605), 1, - anon_sym_GT_GT, - ACTIONS(1617), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1615), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1409), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1473), 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(1463), 11, + ACTIONS(1397), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [23692] = 3, - ACTIONS(3), 1, + anon_sym_instanceof, + [21928] = 11, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1624), 1, + anon_sym_DOT, + ACTIONS(1626), 1, + sym_optional_chain, + ACTIONS(1692), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1553), 12, + ACTIONS(1628), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1555), 27, + ACTIONS(1397), 17, 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_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23739] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [21992] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1511), 4, + ACTIONS(1486), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [23832] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [22086] = 18, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1605), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1617), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(766), 2, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1672), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1694), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1409), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1397), 11, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [22164] = 11, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1624), 1, + anon_sym_DOT, + ACTIONS(1626), 1, + sym_optional_chain, + ACTIONS(1658), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 7, + ACTIONS(1409), 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(1463), 14, + ACTIONS(1397), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, @@ -55425,608 +58375,653 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23905] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [22228] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1467), 4, + ACTIONS(1439), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [23998] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [22322] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1639), 1, + ACTIONS(1640), 1, + anon_sym_AMP_AMP, + ACTIONS(1642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1651), 1, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_PIPE, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(1666), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1668), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1473), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1631), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 9, + ACTIONS(1478), 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, - [24079] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [22416] = 24, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1651), 1, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1678), 1, + anon_sym_GT_GT, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1684), 1, + anon_sym_CARET, + ACTIONS(1686), 1, + anon_sym_PIPE, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1649), 2, + ACTIONS(1680), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(766), 2, + ACTIONS(1696), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1698), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 8, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1463), 16, + ACTIONS(1694), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1397), 6, 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_of, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [24148] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [22506] = 23, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, - sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1511), 4, + ACTIONS(1397), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [24241] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 1, - anon_sym_EQ, - ACTIONS(1331), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1333), 26, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [22594] = 22, + ACTIONS(83), 1, anon_sym_BQUOTE, - [24290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1347), 1, - anon_sym_EQ, - ACTIONS(1340), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1342), 26, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1620), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(1622), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1624), 1, anon_sym_DOT, + ACTIONS(1626), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1644), 1, + anon_sym_GT_GT, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1650), 1, anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_PIPE, + ACTIONS(1656), 1, anon_sym_PERCENT, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24339] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(1186), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1636), 2, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1646), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 26, + ACTIONS(1664), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1638), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1660), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1397), 8, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24388] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [22680] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1639), 1, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(1700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1702), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 7, + ACTIONS(1515), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [24475] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_of, + [22774] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1700), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1702), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1423), 4, + ACTIONS(1523), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [24568] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_of, + [22868] = 27, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1637), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, + ACTIONS(1700), 1, anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, + ACTIONS(1702), 1, sym__ternary_qmark, - ACTIONS(1671), 1, + ACTIONS(1712), 1, anon_sym_in, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1633), 2, + ACTIONS(1672), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1655), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1669), 4, + ACTIONS(1710), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [24663] = 4, - ACTIONS(3), 1, + anon_sym_of, + [22964] = 28, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1624), 1, + anon_sym_DOT, + ACTIONS(1626), 1, + sym_optional_chain, + ACTIONS(1640), 1, + anon_sym_AMP_AMP, + ACTIONS(1642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1644), 1, + anon_sym_GT_GT, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_PIPE, + ACTIONS(1656), 1, + anon_sym_PERCENT, + ACTIONS(1658), 1, + anon_sym_STAR_STAR, + ACTIONS(1666), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1668), 1, + sym__ternary_qmark, + ACTIONS(1704), 1, + anon_sym_COMMA, + STATE(1290), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(531), 1, - anon_sym_EQ, - ACTIONS(527), 12, + ACTIONS(1628), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1636), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1646), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1654), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1662), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1664), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(1715), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, + ACTIONS(1660), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [23062] = 13, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1624), 1, + anon_sym_DOT, + ACTIONS(1626), 1, + sym_optional_chain, + ACTIONS(1656), 1, + anon_sym_PERCENT, + ACTIONS(1658), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1636), 2, + anon_sym_STAR, anon_sym_SLASH, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -56034,619 +59029,716 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(529), 26, + ACTIONS(1397), 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_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24712] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [23130] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1639), 1, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(1700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1702), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 8, + ACTIONS(1453), 4, sym__automatic_semicolon, - sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [24797] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_of, + [23224] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1639), 1, + ACTIONS(1674), 1, + anon_sym_AMP_AMP, + ACTIONS(1676), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1651), 1, + ACTIONS(1682), 1, + anon_sym_AMP, + ACTIONS(1684), 1, + anon_sym_CARET, + ACTIONS(1686), 1, + anon_sym_PIPE, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(1700), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1702), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(766), 2, + ACTIONS(1696), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1698), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 7, + ACTIONS(1672), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1694), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1519), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_of, + [23318] = 5, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(1632), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(517), 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(1463), 14, - sym__automatic_semicolon, + ACTIONS(515), 25, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24870] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23370] = 22, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1409), 1, + anon_sym_PIPE, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1653), 1, + ACTIONS(1644), 1, + anon_sym_GT_GT, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1656), 1, + anon_sym_PERCENT, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(766), 2, + ACTIONS(1636), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1646), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1654), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1662), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1664), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 12, + ACTIONS(1638), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1660), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1397), 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, + [23456] = 5, + ACTIONS(1620), 1, + anon_sym_LPAREN, + STATE(771), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1369), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 17, + ACTIONS(1371), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24933] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1395), 1, - anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_LBRACK, - ACTIONS(1399), 1, - anon_sym_DOT, - ACTIONS(1401), 1, - sym_optional_chain, - ACTIONS(1619), 1, - anon_sym_STAR_STAR, - ACTIONS(1403), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(766), 2, - sym_template_string, - sym_arguments, - ACTIONS(1473), 12, + anon_sym_BQUOTE, + [23508] = 4, + ACTIONS(1476), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 17, + ACTIONS(1471), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [24996] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1395), 1, + [23558] = 26, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1637), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, + ACTIONS(1700), 1, anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, + ACTIONS(1702), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1583), 4, + ACTIONS(1580), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [25089] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_of, + [23652] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1637), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, + ACTIONS(1700), 1, anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, + ACTIONS(1702), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1357), 4, + ACTIONS(1552), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, - [25182] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + anon_sym_of, + [23746] = 28, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1637), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(1717), 1, + anon_sym_COMMA, + ACTIONS(1720), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1463), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1501), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [25275] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [23844] = 28, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1637), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1643), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1645), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1647), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(1722), 1, + anon_sym_COMMA, + ACTIONS(1725), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1463), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1659), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1423), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [25368] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1395), 1, + [23942] = 8, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1727), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_AMP_AMP, - ACTIONS(1603), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + STATE(771), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1369), 12, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(1609), 1, anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_CARET, - ACTIONS(1613), 1, anon_sym_PIPE, - ACTIONS(1617), 1, - anon_sym_PERCENT, - ACTIONS(1619), 1, - anon_sym_STAR_STAR, - ACTIONS(1627), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, - sym__ternary_qmark, - ACTIONS(1403), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1607), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1615), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(766), 2, - sym_template_string, - sym_arguments, - ACTIONS(1599), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1583), 4, + ACTIONS(1371), 22, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [25461] = 4, - ACTIONS(3), 1, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [24000] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1233), 1, - anon_sym_EQ, - ACTIONS(1186), 12, + ACTIONS(1608), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 26, + ACTIONS(1610), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, sym_optional_chain, anon_sym_AMP_AMP, @@ -56665,287 +59757,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25510] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [24048] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1674), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, + ACTIONS(1676), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1678), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1682), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1684), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1686), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1690), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1692), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1700), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1702), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1670), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1680), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1688), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1696), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1698), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1672), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1694), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1357), 4, + ACTIONS(1529), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - [25603] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 1, - anon_sym_EQ, - ACTIONS(1331), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + anon_sym_of, + [24142] = 20, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1624), 1, + anon_sym_DOT, + ACTIONS(1626), 1, + sym_optional_chain, + ACTIONS(1644), 1, anon_sym_GT_GT, + ACTIONS(1656), 1, + anon_sym_PERCENT, + ACTIONS(1658), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1409), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(1628), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1636), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1646), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1333), 26, + ACTIONS(1664), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1638), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1660), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1397), 9, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [25652] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [24224] = 14, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1635), 1, - anon_sym_AMP_AMP, - ACTIONS(1637), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1639), 1, - anon_sym_GT_GT, - ACTIONS(1643), 1, - anon_sym_AMP, - ACTIONS(1645), 1, - anon_sym_CARET, - ACTIONS(1647), 1, - anon_sym_PIPE, - ACTIONS(1651), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1653), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1661), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1663), 1, - sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1631), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1641), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1649), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1657), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1659), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1633), 3, + ACTIONS(1409), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1655), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1427), 4, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1397), 16, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [25745] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 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, + [24294] = 28, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1674), 1, - anon_sym_COMMA, - ACTIONS(1677), 1, + ACTIONS(1725), 1, anon_sym_RBRACE, - ACTIONS(1357), 2, + ACTIONS(1729), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1486), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1403), 2, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25842] = 8, - ACTIONS(3), 1, + [24392] = 4, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1395), 1, - anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_LBRACK, - ACTIONS(1399), 1, - anon_sym_DOT, - ACTIONS(1679), 1, - sym_optional_chain, - STATE(726), 1, - sym_arguments, - ACTIONS(1322), 12, + ACTIONS(519), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1324), 22, + ACTIONS(521), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -56962,169 +60059,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [25899] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [24442] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_AMP_AMP, - ACTIONS(1603), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1681), 1, - anon_sym_COMMA, - ACTIONS(1684), 1, - anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, ACTIONS(1357), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1403), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [25996] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + ACTIONS(1732), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [24536] = 26, + ACTIONS(83), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1601), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1613), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1531), 4, + ACTIONS(1523), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [26089] = 5, - ACTIONS(3), 1, + [24630] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1395), 1, - anon_sym_LPAREN, - STATE(726), 1, - sym_arguments, - ACTIONS(1322), 12, + ACTIONS(1616), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1324), 25, + ACTIONS(1618), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57144,31 +60239,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26140] = 3, - ACTIONS(3), 1, + [24677] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1577), 12, + ACTIONS(1558), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1579), 27, + ACTIONS(1560), 26, 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_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57188,101 +60283,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26187] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [24724] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_AMP_AMP, - ACTIONS(1603), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1684), 1, - anon_sym_RBRACE, - ACTIONS(1686), 1, + ACTIONS(1734), 1, anon_sym_COMMA, - ACTIONS(1403), 2, + ACTIONS(1736), 1, + anon_sym_RBRACK, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1427), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1597), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [26284] = 4, - ACTIONS(3), 1, + [24821] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(531), 1, - anon_sym_EQ, - ACTIONS(527), 12, + ACTIONS(1600), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(529), 26, + ACTIONS(1602), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57302,30 +60396,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26333] = 3, - ACTIONS(3), 1, + [24868] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1545), 12, + ACTIONS(1511), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1547), 26, + ACTIONS(1513), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57345,30 +60440,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26379] = 3, - ACTIONS(3), 1, + [24915] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1487), 12, + ACTIONS(1586), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 26, + ACTIONS(1588), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57388,30 +60484,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26425] = 3, - ACTIONS(3), 1, + [24962] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1469), 12, + ACTIONS(587), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1471), 26, + ACTIONS(589), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57431,119 +60528,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + [25009] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, anon_sym_GT_GT, + ACTIONS(1405), 1, anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1738), 1, + anon_sym_SEMI, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1505), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [25106] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1740), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26517] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1267), 1, - anon_sym_in, - ACTIONS(1270), 1, - anon_sym_of, - ACTIONS(1186), 11, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [25203] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, anon_sym_AMP_AMP, + ACTIONS(1443), 1, anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1742), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26569] = 3, - ACTIONS(3), 1, + [25300] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1351), 12, + ACTIONS(1521), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1353), 26, + ACTIONS(1523), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57563,165 +60779,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26615] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, - anon_sym_EQ, - ACTIONS(1257), 4, + [25347] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(1744), 1, anon_sym_RBRACK, - ACTIONS(1186), 12, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 21, - sym__ternary_qmark, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [25444] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, + anon_sym_SEMI, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26665] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(675), 1, - sym__automatic_semicolon, - ACTIONS(667), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(671), 12, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(673), 23, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [25541] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1748), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26715] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(643), 12, + ACTIONS(1395), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [25638] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, anon_sym_GT_GT, + ACTIONS(1405), 1, anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1750), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(645), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [25735] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, anon_sym_AMP_AMP, + ACTIONS(1443), 1, anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1752), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26761] = 5, - ACTIONS(3), 1, + [25832] = 5, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(647), 1, - sym__automatic_semicolon, - ACTIONS(639), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(643), 12, + ACTIONS(1754), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(519), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(645), 23, + ACTIONS(521), 21, sym__ternary_qmark, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57741,95 +61170,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26811] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [25883] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1756), 1, + anon_sym_RBRACK, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1689), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [26903] = 3, - ACTIONS(3), 1, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [25980] = 5, + ACTIONS(547), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(555), 12, + ACTIONS(539), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(543), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 26, - sym__automatic_semicolon, + ACTIONS(545), 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, @@ -57850,72 +61285,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [26949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(591), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(593), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + [26031] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(718), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, anon_sym_AMP_AMP, + ACTIONS(1443), 1, anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1758), 1, + anon_sym_RPAREN, + STATE(1395), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [26995] = 3, - ACTIONS(3), 1, + [26128] = 5, + ACTIONS(591), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1391), 12, + ACTIONS(583), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(587), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1393), 26, - sym__automatic_semicolon, + ACTIONS(589), 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, @@ -57936,30 +61400,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27041] = 3, - ACTIONS(3), 1, + [26179] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1435), 12, + ACTIONS(1377), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1437), 26, + ACTIONS(1379), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -57979,30 +61444,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27087] = 3, - ACTIONS(3), 1, + [26226] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(611), 12, + ACTIONS(1455), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(613), 26, + ACTIONS(1457), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58022,30 +61488,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27133] = 3, - ACTIONS(3), 1, + [26273] = 4, + ACTIONS(1310), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1493), 12, + ACTIONS(1258), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1495), 26, + ACTIONS(1260), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58065,30 +61533,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27179] = 3, - ACTIONS(3), 1, + [26322] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1411), 12, + ACTIONS(1570), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1413), 26, + ACTIONS(1572), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58108,143 +61577,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27225] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [26369] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(724), 1, - anon_sym_COMMA, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1691), 1, - anon_sym_RBRACK, - STATE(1300), 1, - aux_sym_array_repeat1, - ACTIONS(1310), 2, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1760), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1421), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1419), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + [26466] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(718), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, anon_sym_AMP_AMP, + ACTIONS(1443), 1, anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1762), 1, + anon_sym_RBRACK, + STATE(1334), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27367] = 5, - ACTIONS(3), 1, + [26563] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(559), 1, - sym__automatic_semicolon, - ACTIONS(551), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(555), 12, + ACTIONS(1554), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(557), 23, + ACTIONS(1556), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58264,186 +61759,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27417] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 1, - anon_sym_EQ, - ACTIONS(1693), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1331), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1333), 21, - sym__ternary_qmark, + [26610] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1764), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1439), 12, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1441), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [27513] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [26707] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(724), 1, - anon_sym_COMMA, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1695), 1, - anon_sym_RBRACK, - STATE(1300), 1, - aux_sym_array_repeat1, - ACTIONS(1310), 2, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1766), 1, + anon_sym_SEMI, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [27609] = 3, - ACTIONS(3), 1, + [26804] = 5, + ACTIONS(1476), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1431), 12, + ACTIONS(1768), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1469), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1433), 26, - sym__automatic_semicolon, + ACTIONS(1471), 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, @@ -58463,97 +61943,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27655] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1395), 1, - anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_LBRACK, - ACTIONS(1399), 1, - anon_sym_DOT, - ACTIONS(1401), 1, - sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_AMP_AMP, - ACTIONS(1603), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, - anon_sym_GT_GT, - ACTIONS(1609), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, - anon_sym_PERCENT, - ACTIONS(1619), 1, - anon_sym_STAR_STAR, - ACTIONS(1627), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, - sym__ternary_qmark, - ACTIONS(1697), 1, - anon_sym_COMMA, - ACTIONS(1403), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1607), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1615), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1625), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1699), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(766), 2, - sym_template_string, - sym_arguments, - ACTIONS(1599), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [27749] = 3, - ACTIONS(3), 1, + [26855] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1455), 12, + ACTIONS(1482), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1457), 26, + ACTIONS(1484), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58573,30 +61987,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27795] = 3, - ACTIONS(3), 1, + [26902] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1459), 12, + ACTIONS(1570), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1461), 26, + ACTIONS(1572), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58616,32 +62031,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27841] = 5, - ACTIONS(3), 1, + [26949] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(595), 1, - sym__automatic_semicolon, - ACTIONS(587), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(591), 12, + ACTIONS(1459), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(593), 23, + ACTIONS(1461), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58661,30 +62075,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27891] = 3, - ACTIONS(3), 1, + [26996] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1573), 12, + ACTIONS(1531), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1575), 26, + ACTIONS(1533), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58704,98 +62119,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [27937] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [27043] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(724), 1, - anon_sym_COMMA, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1443), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1770), 1, + anon_sym_COLON, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27140] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1701), 1, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1772), 1, anon_sym_RPAREN, - STATE(1349), 1, - aux_sym_array_repeat1, - ACTIONS(1310), 2, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28033] = 3, - ACTIONS(3), 1, + [27237] = 5, + ACTIONS(1271), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1585), 12, + ACTIONS(1316), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1258), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1587), 26, - sym__automatic_semicolon, + ACTIONS(1260), 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, @@ -58815,96 +62303,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28079] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [27288] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_AMP_AMP, - ACTIONS(1603), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1403), 2, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1774), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1669), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [28171] = 3, - ACTIONS(3), 1, + [27385] = 5, + ACTIONS(1550), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1541), 12, + ACTIONS(1776), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1543), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1543), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1545), 21, + sym__ternary_qmark, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -58924,344 +62418,445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28217] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [27436] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_AMP_AMP, - ACTIONS(1603), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1697), 1, + ACTIONS(1734), 1, anon_sym_COMMA, - ACTIONS(1403), 2, + ACTIONS(1778), 1, + anon_sym_RBRACE, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1595), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1597), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28311] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [27533] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_AMP_AMP, - ACTIONS(1603), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1697), 1, + ACTIONS(1734), 1, anon_sym_COMMA, - ACTIONS(1403), 2, + ACTIONS(1780), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1703), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(766), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [28405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1551), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1549), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + [27630] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1782), 1, + anon_sym_RBRACE, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28451] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 1, - anon_sym_EQ, - ACTIONS(1693), 1, - anon_sym_of, - ACTIONS(1705), 1, - anon_sym_in, - ACTIONS(1331), 11, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1333), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27727] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1784), 1, + anon_sym_RBRACK, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28503] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1347), 1, - anon_sym_EQ, - ACTIONS(1708), 1, - anon_sym_in, - ACTIONS(1711), 1, - anon_sym_of, - ACTIONS(1340), 11, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1342), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27824] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1786), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28555] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(615), 1, - sym__automatic_semicolon, - ACTIONS(607), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(611), 12, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(613), 23, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [27921] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, anon_sym_AMP_AMP, + ACTIONS(1443), 1, anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1788), 1, + anon_sym_SEMI, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28605] = 3, - ACTIONS(3), 1, + [28018] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1425), 12, + ACTIONS(1539), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1423), 26, + ACTIONS(1541), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59281,206 +62876,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28651] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1713), 1, - sym_regex_flags, - ACTIONS(1517), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1519), 24, - sym__automatic_semicolon, - sym__ternary_qmark, + [28065] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(718), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1790), 1, + anon_sym_RBRACK, + STATE(1334), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28699] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(531), 1, - anon_sym_EQ, - ACTIONS(1715), 1, - anon_sym_in, - ACTIONS(1718), 1, - anon_sym_of, - ACTIONS(527), 11, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(529), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [28162] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1792), 1, + anon_sym_SEMI, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 12, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1481), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [28259] = 26, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(1622), 1, anon_sym_LBRACK, + ACTIONS(1624), 1, anon_sym_DOT, + ACTIONS(1626), 1, sym_optional_chain, + ACTIONS(1640), 1, anon_sym_AMP_AMP, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1644), 1, + anon_sym_GT_GT, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1650), 1, anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_PIPE, + ACTIONS(1656), 1, anon_sym_PERCENT, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1668), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1415), 12, + ACTIONS(1636), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1646), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1417), 26, + ACTIONS(1664), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1590), 3, 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(1638), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1660), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28843] = 3, - ACTIONS(3), 1, + [28352] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1565), 12, + ACTIONS(1604), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1567), 26, + ACTIONS(1606), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59500,32 +63125,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28889] = 5, - ACTIONS(3), 1, + [28399] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1264), 1, - anon_sym_EQ, - ACTIONS(1261), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1186), 12, + ACTIONS(1612), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 21, + ACTIONS(1614), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59545,118 +63169,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [28939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 1, - anon_sym_EQ, - ACTIONS(1272), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1186), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1188), 21, - sym__ternary_qmark, + [28446] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, anon_sym_CARET, + ACTIONS(1413), 1, anon_sym_PERCENT, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1794), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [28989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(633), 12, + ACTIONS(1395), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(635), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [29035] = 3, - ACTIONS(3), 1, + [28543] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1292), 12, + ACTIONS(1566), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1290), 26, + ACTIONS(1568), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59676,30 +63282,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29081] = 3, - ACTIONS(3), 1, + [28590] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1465), 12, + ACTIONS(1596), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1467), 26, + ACTIONS(1598), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59719,30 +63326,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29127] = 3, - ACTIONS(3), 1, + [28637] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1483), 12, + ACTIONS(1507), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1485), 26, + ACTIONS(1509), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59762,31 +63370,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29173] = 4, - ACTIONS(3), 1, + [28684] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1249), 1, - anon_sym_EQ, - ACTIONS(1186), 12, + ACTIONS(1578), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 25, + ACTIONS(1580), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59806,30 +63414,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29221] = 3, - ACTIONS(3), 1, + [28731] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1475), 12, + ACTIONS(1517), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1477), 26, + ACTIONS(1519), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59849,30 +63458,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29267] = 3, - ACTIONS(3), 1, + [28778] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1581), 12, + ACTIONS(1465), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1583), 26, + ACTIONS(1467), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59892,30 +63502,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29313] = 3, - ACTIONS(3), 1, + [28825] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1186), 12, + ACTIONS(1574), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 26, + ACTIONS(1576), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -59935,143 +63546,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29359] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [28872] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(724), 1, - anon_sym_COMMA, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1720), 1, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1796), 1, anon_sym_RPAREN, - STATE(1272), 1, - aux_sym_array_repeat1, - ACTIONS(1310), 2, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29455] = 4, - ACTIONS(3), 1, + [28969] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1713), 1, - sym_regex_flags, - ACTIONS(1517), 14, + ACTIONS(1258), 12, anon_sym_STAR, anon_sym_in, - anon_sym_of, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1519), 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [29503] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 1, - anon_sym_EQ, - ACTIONS(1186), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - 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(1188), 25, + ACTIONS(1260), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60091,97 +63659,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29551] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [29016] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(724), 1, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1722), 1, - anon_sym_RBRACK, - STATE(1310), 1, + ACTIONS(1798), 1, + anon_sym_RPAREN, + STATE(1396), 1, aux_sym_array_repeat1, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [29647] = 3, - ACTIONS(3), 1, + [29113] = 4, + ACTIONS(1314), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1569), 12, + ACTIONS(1258), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1571), 26, + ACTIONS(1260), 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, @@ -60202,97 +63773,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29693] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1395), 1, - anon_sym_LPAREN, - ACTIONS(1397), 1, - anon_sym_LBRACK, - ACTIONS(1399), 1, - anon_sym_DOT, - ACTIONS(1401), 1, - sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_AMP_AMP, - ACTIONS(1603), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, - anon_sym_GT_GT, - ACTIONS(1609), 1, - anon_sym_AMP, - ACTIONS(1611), 1, - anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, - anon_sym_PERCENT, - ACTIONS(1619), 1, - anon_sym_STAR_STAR, - ACTIONS(1627), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, - sym__ternary_qmark, - ACTIONS(1697), 1, - anon_sym_COMMA, - ACTIONS(1403), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1607), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1615), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1625), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1724), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(766), 2, - sym_template_string, - sym_arguments, - ACTIONS(1599), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [29787] = 3, - ACTIONS(3), 1, + [29162] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1443), 12, + ACTIONS(1451), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1445), 26, + ACTIONS(1453), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60312,36 +63817,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29833] = 6, - ACTIONS(3), 1, + [29209] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1397), 1, - anon_sym_LBRACK, - ACTIONS(1399), 1, - anon_sym_DOT, - ACTIONS(1679), 1, - sym_optional_chain, - ACTIONS(1589), 12, + ACTIONS(553), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1591), 23, + ACTIONS(555), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -60358,29 +63861,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29885] = 3, - ACTIONS(3), 1, + [29256] = 5, + ACTIONS(557), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1589), 12, + ACTIONS(549), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(553), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1591), 26, - sym__automatic_semicolon, + ACTIONS(555), 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, @@ -60401,30 +63907,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29931] = 3, - ACTIONS(3), 1, + [29307] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(623), 12, + ACTIONS(621), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(625), 26, + ACTIONS(623), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60444,30 +63951,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [29977] = 3, - ACTIONS(3), 1, + [29354] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(661), 12, + ACTIONS(563), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(663), 26, + ACTIONS(565), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60487,32 +63995,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30023] = 5, - ACTIONS(3), 1, + [29401] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(637), 1, - sym__automatic_semicolon, - ACTIONS(629), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(633), 12, + ACTIONS(607), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(635), 23, + ACTIONS(609), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60532,29 +64039,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30073] = 3, - ACTIONS(3), 1, + [29448] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1800), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1507), 12, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29545] = 5, + ACTIONS(581), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(573), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(577), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1509), 26, - sym__automatic_semicolon, + ACTIONS(579), 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, @@ -60575,32 +64154,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30119] = 5, - ACTIONS(3), 1, + [29596] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(531), 1, - anon_sym_EQ, - ACTIONS(1718), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(527), 12, + ACTIONS(1492), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(529), 21, + ACTIONS(1494), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60620,28 +64198,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30169] = 5, - ACTIONS(3), 1, + [29643] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1802), 1, + anon_sym_RPAREN, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(627), 1, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [29740] = 5, + ACTIONS(625), 1, sym__automatic_semicolon, - ACTIONS(619), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(617), 2, anon_sym_else, anon_sym_while, - ACTIONS(623), 12, + ACTIONS(621), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(625), 23, + ACTIONS(623), 23, sym__ternary_qmark, anon_sym_COMMA, anon_sym_LPAREN, @@ -60665,32 +64313,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30219] = 5, - ACTIONS(3), 1, + [29791] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1347), 1, - anon_sym_EQ, - ACTIONS(1711), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1340), 12, + ACTIONS(1525), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1342), 21, + ACTIONS(1527), 26, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60710,30 +64357,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30269] = 3, - ACTIONS(3), 1, + [29838] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1497), 12, + ACTIONS(1480), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1499), 26, + ACTIONS(1478), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60753,30 +64401,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30315] = 3, - ACTIONS(3), 1, + [29885] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1523), 12, + ACTIONS(1535), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 26, + ACTIONS(1537), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60796,29 +64445,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30361] = 3, - ACTIONS(3), 1, + [29932] = 5, + ACTIONS(567), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1523), 12, + ACTIONS(559), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(563), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 26, - sym__automatic_semicolon, + ACTIONS(565), 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, @@ -60839,29 +64491,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30407] = 3, - ACTIONS(3), 1, + [29983] = 5, + ACTIONS(611), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1523), 12, + ACTIONS(603), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(607), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 26, - sym__automatic_semicolon, + ACTIONS(609), 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, @@ -60882,30 +64537,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30453] = 3, - ACTIONS(3), 1, + [30034] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1523), 12, + ACTIONS(1562), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1525), 26, + ACTIONS(1564), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -60925,29 +64581,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30499] = 3, - ACTIONS(3), 1, + [30081] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1804), 1, + anon_sym_RBRACE, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30178] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(718), 1, + anon_sym_COMMA, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1806), 1, + anon_sym_RPAREN, + STATE(1324), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [30275] = 4, + ACTIONS(1808), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1513), 12, + ACTIONS(1381), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1515), 26, + anon_sym_instanceof, + ACTIONS(1383), 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, @@ -60964,34 +64761,34 @@ 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, - [30545] = 3, - ACTIONS(3), 1, + [30324] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1405), 12, + ACTIONS(1496), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1407), 26, + ACTIONS(1498), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61011,30 +64808,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30591] = 3, - ACTIONS(3), 1, + [30371] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1451), 12, + ACTIONS(1387), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1453), 26, + ACTIONS(1389), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61054,98 +64852,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30637] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [30418] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(724), 1, - anon_sym_COMMA, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1726), 1, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1810), 1, anon_sym_RPAREN, - STATE(1348), 1, - aux_sym_array_repeat1, - ACTIONS(1310), 2, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [30733] = 3, - ACTIONS(3), 1, + [30515] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1527), 12, + ACTIONS(1391), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1529), 26, + ACTIONS(1393), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61165,33 +64965,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30779] = 3, - ACTIONS(3), 1, + [30562] = 6, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1624), 1, + anon_sym_DOT, + ACTIONS(1727), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1533), 12, + ACTIONS(1582), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1535), 26, + ACTIONS(1584), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -61208,30 +65012,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30825] = 3, - ACTIONS(3), 1, + [30615] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1537), 12, + ACTIONS(1570), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1539), 26, + ACTIONS(1572), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61251,32 +65056,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30871] = 5, - ACTIONS(3), 1, + [30662] = 26, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1622), 1, + anon_sym_LBRACK, + ACTIONS(1624), 1, + anon_sym_DOT, + ACTIONS(1626), 1, + sym_optional_chain, + ACTIONS(1640), 1, + anon_sym_AMP_AMP, + ACTIONS(1642), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1644), 1, + anon_sym_GT_GT, + ACTIONS(1648), 1, + anon_sym_AMP, + ACTIONS(1650), 1, + anon_sym_CARET, + ACTIONS(1652), 1, + anon_sym_PIPE, + ACTIONS(1656), 1, + anon_sym_PERCENT, + ACTIONS(1658), 1, + anon_sym_STAR_STAR, + ACTIONS(1666), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1668), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(665), 1, + ACTIONS(1628), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1636), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1646), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1654), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1662), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1664), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1638), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1660), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1710), 3, sym__automatic_semicolon, - ACTIONS(657), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(661), 12, + anon_sym_COMMA, + anon_sym_SEMI, + [30755] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1500), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(663), 23, + ACTIONS(1502), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61296,30 +65167,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30921] = 3, - ACTIONS(3), 1, + [30802] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1401), 1, + anon_sym_GT_GT, + ACTIONS(1405), 1, + anon_sym_AMP, + ACTIONS(1407), 1, + anon_sym_CARET, + ACTIONS(1413), 1, + anon_sym_PERCENT, + ACTIONS(1415), 1, + anon_sym_STAR_STAR, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1395), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1403), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1411), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1419), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1421), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1399), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1417), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1812), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [30895] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1447), 12, + ACTIONS(1427), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1449), 26, + ACTIONS(1429), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61339,29 +65278,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [30967] = 3, - ACTIONS(3), 1, + [30942] = 4, + ACTIONS(1808), 1, + sym_regex_flags, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1557), 12, + ACTIONS(1381), 14, anon_sym_STAR, anon_sym_in, + anon_sym_of, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1559), 26, + anon_sym_instanceof, + ACTIONS(1383), 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, @@ -61378,34 +65320,34 @@ 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, - [31013] = 3, - ACTIONS(3), 1, + [30991] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(671), 12, + ACTIONS(1488), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(673), 26, + ACTIONS(1490), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61425,30 +65367,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [31059] = 3, - ACTIONS(3), 1, + [31038] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1561), 12, + ACTIONS(1582), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1563), 26, + ACTIONS(1584), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, sym_optional_chain, @@ -61468,1577 +65411,1018 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [31105] = 26, - ACTIONS(3), 1, + [31085] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1732), 1, - anon_sym_AMP_AMP, - ACTIONS(1734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, - anon_sym_GT_GT, - ACTIONS(1740), 1, - anon_sym_AMP, - ACTIONS(1742), 1, - anon_sym_CARET, - ACTIONS(1744), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_PERCENT, - ACTIONS(1750), 1, - anon_sym_STAR_STAR, - ACTIONS(1758), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1501), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1728), 2, + ACTIONS(1431), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1746), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1754), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1756), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1730), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31196] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1732), 1, - anon_sym_AMP_AMP, - ACTIONS(1734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, anon_sym_AMP, - ACTIONS(1742), 1, - anon_sym_CARET, - ACTIONS(1744), 1, anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_PERCENT, - ACTIONS(1750), 1, - anon_sym_STAR_STAR, - ACTIONS(1758), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1511), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1746), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1756), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1730), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1752), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31287] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_RBRACK, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31380] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, - anon_sym_PERCENT, - ACTIONS(1379), 1, - anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1433), 26, + sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(1593), 1, anon_sym_COMMA, - ACTIONS(1764), 1, anon_sym_RBRACE, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31473] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1395), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1399), 1, anon_sym_DOT, - ACTIONS(1401), 1, sym_optional_chain, - ACTIONS(1601), 1, anon_sym_AMP_AMP, - ACTIONS(1603), 1, anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, - anon_sym_GT_GT, - ACTIONS(1609), 1, - anon_sym_AMP, - ACTIONS(1611), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, - sym__ternary_qmark, - ACTIONS(1403), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1607), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1615), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1623), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1625), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1766), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(766), 2, - sym_template_string, - sym_arguments, - ACTIONS(1599), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1621), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31564] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1736), 1, - anon_sym_GT_GT, - ACTIONS(1748), 1, - anon_sym_PERCENT, - ACTIONS(1750), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + anon_sym_BQUOTE, + [31132] = 5, + ACTIONS(537), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(529), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(533), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1746), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1730), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1473), 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(1463), 9, + ACTIONS(535), 23, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [31639] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1304), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1768), 1, - anon_sym_RPAREN, - ACTIONS(1310), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + anon_sym_BQUOTE, + [31183] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1570), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [31732] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1732), 1, - anon_sym_AMP_AMP, - ACTIONS(1734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, anon_sym_AMP, - ACTIONS(1742), 1, - anon_sym_CARET, - ACTIONS(1744), 1, anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_PERCENT, - ACTIONS(1750), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1746), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1756), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1730), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1752), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1463), 4, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1572), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - [31819] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1304), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1770), 1, - anon_sym_RPAREN, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [31912] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, + [31230] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1593), 1, + ACTIONS(1734), 1, anon_sym_COMMA, - ACTIONS(1772), 1, + ACTIONS(1814), 1, anon_sym_RPAREN, - ACTIONS(1310), 2, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32005] = 26, - ACTIONS(3), 1, + [31327] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1423), 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(1425), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1304), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1732), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, - anon_sym_GT_GT, - ACTIONS(1740), 1, - anon_sym_AMP, - ACTIONS(1742), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1744), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1429), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1746), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1754), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1756), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1730), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1752), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32096] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, + [31374] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, - anon_sym_AMP_AMP, - ACTIONS(1734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1744), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(1734), 1, + anon_sym_COMMA, + ACTIONS(1816), 1, + anon_sym_SEMI, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1531), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1728), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32187] = 26, - ACTIONS(3), 1, + [31471] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(577), 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(579), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1304), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1732), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, - anon_sym_GT_GT, - ACTIONS(1740), 1, - anon_sym_AMP, - ACTIONS(1742), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1744), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1467), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1728), 2, + anon_sym_BQUOTE, + [31518] = 5, + ACTIONS(1322), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1320), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1258), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1746), 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(1754), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1730), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1752), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32278] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1260), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1304), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1774), 1, - anon_sym_RBRACK, - ACTIONS(1310), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + anon_sym_BQUOTE, + [31569] = 5, + ACTIONS(1328), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1325), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1258), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32371] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1260), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1304), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1776), 1, - anon_sym_RBRACE, - ACTIONS(1310), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + anon_sym_BQUOTE, + [31620] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(543), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32464] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(545), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1304), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1778), 1, - anon_sym_RPAREN, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1355), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [32557] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, + [31667] = 28, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1593), 1, + ACTIONS(1734), 1, anon_sym_COMMA, - ACTIONS(1780), 1, + ACTIONS(1818), 1, anon_sym_RPAREN, - ACTIONS(1310), 2, + STATE(1118), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32650] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [31764] = 28, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(718), 1, + anon_sym_COMMA, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1782), 1, - anon_sym_RPAREN, - ACTIONS(1310), 2, + ACTIONS(1820), 1, + anon_sym_RBRACK, + STATE(1368), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [32743] = 27, - ACTIONS(3), 1, + [31861] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(533), 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(535), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1304), 1, + anon_sym_SEMI, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1784), 1, - anon_sym_COLON, - ACTIONS(1310), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + anon_sym_BQUOTE, + [31908] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1435), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [32836] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1736), 1, anon_sym_GT_GT, - ACTIONS(1748), 1, - anon_sym_PERCENT, - ACTIONS(1750), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1473), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1728), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1746), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1730), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1752), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1463), 7, + ACTIONS(1437), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [32915] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, + [31955] = 26, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1786), 1, - anon_sym_RPAREN, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + ACTIONS(1822), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33008] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [32047] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1744), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1485), 2, + ACTIONS(1463), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1728), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33099] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [32139] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1788), 1, - anon_sym_RPAREN, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1494), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33192] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1790), 1, + [32231] = 16, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1793), 1, - anon_sym_COLON, - ACTIONS(1186), 12, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1832), 1, + anon_sym_GT_GT, + ACTIONS(1844), 1, + anon_sym_PERCENT, + ACTIONS(1846), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1824), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1834), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1842), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 7, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - 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(1188), 23, - sym__automatic_semicolon, + ACTIONS(1397), 12, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + 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_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [33241] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [32303] = 11, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 12, + ACTIONS(1409), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 15, + ACTIONS(1397), 15, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -63054,219 +66438,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33302] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [32365] = 22, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1795), 1, - anon_sym_RPAREN, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33395] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 1, - anon_sym_LPAREN, - ACTIONS(1800), 1, - anon_sym_COLON, - ACTIONS(1507), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1509), 23, - sym__automatic_semicolon, + ACTIONS(1397), 6, sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + 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_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [32449] = 23, + ACTIONS(407), 1, anon_sym_BQUOTE, - [33444] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1744), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1549), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1728), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33535] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + ACTIONS(1397), 5, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [32535] = 14, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1748), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(538), 2, + ACTIONS(1842), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 10, + ACTIONS(1409), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 14, + ACTIONS(1397), 14, sym__ternary_qmark, anon_sym_LBRACE, anon_sym_COLON, @@ -63281,3010 +66617,2988 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [33600] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 1, - anon_sym_EQ, - ACTIONS(1277), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1186), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1188), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [33649] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [32603] = 20, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, - anon_sym_AMP_AMP, - ACTIONS(1734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, - anon_sym_AMP, - ACTIONS(1742), 1, - anon_sym_CARET, - ACTIONS(1744), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1423), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1728), 2, + ACTIONS(1409), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33740] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + ACTIONS(1397), 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, + [32683] = 21, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, - anon_sym_AMP_AMP, - ACTIONS(1734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1409), 1, + anon_sym_PIPE, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1742), 1, - anon_sym_CARET, - ACTIONS(1744), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1357), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1728), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33831] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + ACTIONS(1397), 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, + [32765] = 22, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, - anon_sym_AMP_AMP, - ACTIONS(1734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1409), 1, + anon_sym_PIPE, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1744), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1583), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1728), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [33922] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + ACTIONS(1397), 6, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [32849] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1802), 1, - anon_sym_RBRACK, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1439), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34015] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [32941] = 13, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 10, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1397), 14, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1677), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(538), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [33007] = 11, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1846), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1409), 12, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1397), 15, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34106] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [33069] = 18, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, - anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(1684), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34197] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + ACTIONS(1409), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1397), 9, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + [33145] = 24, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1750), 1, + ACTIONS(1828), 1, + anon_sym_AMP_AMP, + ACTIONS(1830), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1832), 1, + anon_sym_GT_GT, + ACTIONS(1836), 1, + anon_sym_AMP, + ACTIONS(1838), 1, + anon_sym_CARET, + ACTIONS(1840), 1, + anon_sym_PIPE, + ACTIONS(1844), 1, + anon_sym_PERCENT, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1473), 12, + ACTIONS(1824), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - 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(1463), 15, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(1842), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1826), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1848), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [34258] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + ACTIONS(1397), 4, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + [33233] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1804), 1, - anon_sym_RBRACE, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1515), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34351] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [33325] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1473), 1, - anon_sym_PIPE, - ACTIONS(1736), 1, + ACTIONS(1828), 1, + anon_sym_AMP_AMP, + ACTIONS(1830), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1748), 1, + ACTIONS(1840), 1, + anon_sym_PIPE, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1854), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1856), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1523), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 6, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [34434] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [33417] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1736), 1, + ACTIONS(1828), 1, + anon_sym_AMP_AMP, + ACTIONS(1830), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1748), 1, + ACTIONS(1836), 1, + anon_sym_AMP, + ACTIONS(1838), 1, + anon_sym_CARET, + ACTIONS(1840), 1, + anon_sym_PIPE, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1854), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1856), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1453), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(538), 2, + ACTIONS(1850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1852), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 7, + ACTIONS(1826), 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(1463), 12, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1848), 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, - [34505] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [33509] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1736), 1, + ACTIONS(1828), 1, + anon_sym_AMP_AMP, + ACTIONS(1830), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1744), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1854), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1856), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1519), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 6, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [34588] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [33601] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1736), 1, + ACTIONS(1830), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1744), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1854), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1856), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1552), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 5, - sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [34673] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [33693] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1744), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1419), 2, + ACTIONS(1580), 2, anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(1728), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34764] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [33785] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1473), 1, - anon_sym_PIPE, - ACTIONS(1736), 1, + ACTIONS(1828), 1, + anon_sym_AMP_AMP, + ACTIONS(1830), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1748), 1, + ACTIONS(1838), 1, + anon_sym_CARET, + ACTIONS(1840), 1, + anon_sym_PIPE, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1854), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1856), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1529), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 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, - [34845] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [33877] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1478), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(1806), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [34936] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [33969] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1601), 1, - anon_sym_AMP_AMP, - ACTIONS(1603), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1609), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1611), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1613), 1, - anon_sym_PIPE, - ACTIONS(1617), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1619), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1627), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1629), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1808), 1, - anon_sym_SEMI, - ACTIONS(1810), 1, - sym__automatic_semicolon, - ACTIONS(1403), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1597), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1607), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1615), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1623), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1625), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + ACTIONS(1858), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1599), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1621), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35029] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [34061] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1812), 1, - anon_sym_RPAREN, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1486), 2, + anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35122] = 14, - ACTIONS(3), 1, + [34153] = 6, + ACTIONS(1308), 1, + anon_sym_EQ, + ACTIONS(1334), 1, + anon_sym_in, + ACTIONS(1337), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1258), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1260), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1304), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1748), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1750), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + anon_sym_BQUOTE, + [34205] = 5, + ACTIONS(1860), 1, + anon_sym_LPAREN, + ACTIONS(1863), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1435), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1746), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1473), 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(1463), 14, + ACTIONS(1437), 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, - [35189] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, + [34255] = 6, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(1754), 1, + anon_sym_of, + ACTIONS(1865), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(519), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(521), 23, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1304), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1361), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, - anon_sym_GT_GT, - ACTIONS(1369), 1, - anon_sym_AMP, - ACTIONS(1371), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, - sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1814), 1, - anon_sym_RPAREN, - ACTIONS(1310), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + anon_sym_BQUOTE, + [34307] = 6, + ACTIONS(1476), 1, + anon_sym_EQ, + ACTIONS(1768), 1, + anon_sym_of, + ACTIONS(1868), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1469), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1367), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1375), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1471), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1359), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1381), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35282] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, + [34359] = 5, + ACTIONS(1308), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1331), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1258), 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(1260), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1304), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1732), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, - anon_sym_GT_GT, - ACTIONS(1740), 1, - anon_sym_AMP, - ACTIONS(1742), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1744), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1427), 2, - anon_sym_LBRACE, - anon_sym_COLON, - ACTIONS(1728), 2, + anon_sym_BQUOTE, + [34409] = 6, + ACTIONS(1550), 1, + anon_sym_EQ, + ACTIONS(1776), 1, + anon_sym_of, + ACTIONS(1871), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1543), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1746), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1545), 23, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1730), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1752), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35373] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, + [34461] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1593), 1, - anon_sym_COMMA, - ACTIONS(1816), 1, - anon_sym_RBRACK, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + ACTIONS(1720), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35466] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [34553] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1427), 1, - anon_sym_of, - ACTIONS(1822), 1, - anon_sym_AMP_AMP, - ACTIONS(1824), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1834), 1, - anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + ACTIONS(1725), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35556] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + [34645] = 5, + ACTIONS(1874), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1840), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1473), 12, + ACTIONS(1877), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1258), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 14, + ACTIONS(1260), 23, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_of, + 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, - [35616] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, + [34695] = 27, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1622), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1624), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1626), 1, sym_optional_chain, - ACTIONS(1511), 1, - anon_sym_of, - ACTIONS(1822), 1, + ACTIONS(1640), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, + ACTIONS(1642), 1, anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1644), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1648), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1650), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1652), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1656), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1658), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, + ACTIONS(1666), 1, anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, + ACTIONS(1668), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(1879), 1, + anon_sym_SEMI, + ACTIONS(1881), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1628), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1636), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1646), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1654), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1662), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1664), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(741), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1638), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1660), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35706] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [34789] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1744), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1852), 1, + ACTIONS(1883), 1, anon_sym_COLON, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35796] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [34880] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1531), 1, + ACTIONS(1515), 1, anon_sym_of, - ACTIONS(1822), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, + ACTIONS(1915), 1, anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, + ACTIONS(1917), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [35886] = 26, - ACTIONS(3), 1, + [34971] = 6, + ACTIONS(523), 1, + anon_sym_EQ, + ACTIONS(1504), 1, + anon_sym_RBRACK, + ACTIONS(1754), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(519), 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(521), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1304), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1467), 1, - anon_sym_of, - ACTIONS(1822), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, - anon_sym_GT_GT, - ACTIONS(1830), 1, - anon_sym_AMP, - ACTIONS(1832), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1834), 1, - anon_sym_PIPE, - ACTIONS(1838), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1818), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1836), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1844), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1846), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1820), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1842), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35976] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, + [35022] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1744), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1854), 1, + ACTIONS(1919), 1, anon_sym_COLON, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36066] = 26, - ACTIONS(3), 1, + [35113] = 6, + ACTIONS(1473), 1, + anon_sym_RBRACK, + ACTIONS(1476), 1, + anon_sym_EQ, + ACTIONS(1768), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1469), 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(1471), 21, + sym__ternary_qmark, anon_sym_LPAREN, - ACTIONS(1304), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, anon_sym_DOT, - ACTIONS(1308), 1, sym_optional_chain, - ACTIONS(1485), 1, - anon_sym_of, - ACTIONS(1822), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, - anon_sym_GT_GT, - ACTIONS(1830), 1, - anon_sym_AMP, - ACTIONS(1832), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1834), 1, - anon_sym_PIPE, - ACTIONS(1838), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1818), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1836), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1844), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1846), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1820), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1842), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36156] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1302), 1, + [35164] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1549), 1, + ACTIONS(1529), 1, anon_sym_of, - ACTIONS(1822), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, + ACTIONS(1915), 1, anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, + ACTIONS(1917), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36246] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [35255] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1419), 1, - anon_sym_of, - ACTIONS(1822), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(1921), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36336] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [35346] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1429), 1, + ACTIONS(1486), 1, anon_sym_of, - ACTIONS(1822), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, + ACTIONS(1915), 1, anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, + ACTIONS(1917), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36426] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [35437] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1822), 1, + ACTIONS(1580), 1, + anon_sym_of, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1915), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1917), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1463), 3, - sym__ternary_qmark, - anon_sym_of, - anon_sym_QMARK_QMARK, - ACTIONS(1820), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [36512] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [35528] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1826), 1, + ACTIONS(1519), 1, + anon_sym_of, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1838), 1, + ACTIONS(1897), 1, + anon_sym_AMP, + ACTIONS(1899), 1, + anon_sym_CARET, + ACTIONS(1901), 1, + anon_sym_PIPE, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1915), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1917), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1820), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1842), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1473), 4, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 8, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - [36586] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1261), 1, - anon_sym_RBRACK, - ACTIONS(1264), 1, - anon_sym_EQ, - ACTIONS(1272), 1, - anon_sym_COMMA, - ACTIONS(1186), 12, - anon_sym_STAR, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - 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(1188), 21, - sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1909), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [36636] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [35619] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1669), 1, + ACTIONS(1478), 1, anon_sym_of, - ACTIONS(1822), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, + ACTIONS(1915), 1, anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, + ACTIONS(1917), 1, sym__ternary_qmark, - ACTIONS(1856), 1, - anon_sym_in, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1820), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1842), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36728] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1838), 1, - anon_sym_PERCENT, - ACTIONS(1840), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1818), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 10, + ACTIONS(1887), 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(1463), 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(1909), 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, - [36792] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [35710] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1473), 1, - anon_sym_PIPE, - ACTIONS(1826), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1838), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1449), 1, + sym__ternary_qmark, + ACTIONS(1923), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 5, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [36874] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [35801] = 14, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1473), 1, - anon_sym_PIPE, - ACTIONS(1826), 1, - anon_sym_GT_GT, - ACTIONS(1830), 1, - anon_sym_AMP, - ACTIONS(1838), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1846), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1409), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1463), 6, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1397), 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, - [36954] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + anon_sym_instanceof, + [35868] = 20, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1826), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1838), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1473), 2, + ACTIONS(1409), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 6, + ACTIONS(1397), 6, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [37032] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [35947] = 21, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, - anon_sym_AMP_AMP, - ACTIONS(1734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1409), 1, + anon_sym_PIPE, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1742), 1, - anon_sym_CARET, - ACTIONS(1744), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1859), 1, - anon_sym_COLON, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37122] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + ACTIONS(1397), 6, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [36028] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, + ACTIONS(1453), 1, + anon_sym_of, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1744), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, + ACTIONS(1915), 1, anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, + ACTIONS(1917), 1, sym__ternary_qmark, - ACTIONS(1861), 1, - anon_sym_COLON, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37212] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [36119] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1838), 1, - anon_sym_PERCENT, - ACTIONS(1840), 1, - anon_sym_STAR_STAR, - ACTIONS(1310), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1818), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1836), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1473), 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(1463), 13, - sym__ternary_qmark, - anon_sym_of, + ACTIONS(1828), 1, anon_sym_AMP_AMP, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [37278] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, - anon_sym_BQUOTE, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(1304), 1, - anon_sym_LBRACK, - ACTIONS(1306), 1, - anon_sym_DOT, - ACTIONS(1308), 1, - sym_optional_chain, - ACTIONS(1822), 1, - anon_sym_AMP_AMP, - ACTIONS(1826), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1854), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1856), 1, + sym__ternary_qmark, + ACTIONS(1925), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 4, - sym__ternary_qmark, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - [37362] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [36210] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, + ACTIONS(1439), 1, + anon_sym_of, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1744), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, + ACTIONS(1915), 1, anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, + ACTIONS(1917), 1, sym__ternary_qmark, - ACTIONS(1863), 1, - anon_sym_LBRACE, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37452] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [36301] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1363), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1373), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1865), 1, - anon_sym_RBRACK, - ACTIONS(1310), 2, + ACTIONS(1927), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37542] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [36392] = 22, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1826), 1, + ACTIONS(1409), 1, + anon_sym_PIPE, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1834), 1, - anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1463), 5, + ACTIONS(1397), 5, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, - [37624] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [36475] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1826), 1, + ACTIONS(1463), 1, + anon_sym_of, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1838), 1, + ACTIONS(1897), 1, + anon_sym_AMP, + ACTIONS(1899), 1, + anon_sym_CARET, + ACTIONS(1901), 1, + anon_sym_PIPE, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1915), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1917), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(538), 2, + ACTIONS(1911), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1913), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1473), 7, + ACTIONS(1887), 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(1463), 11, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(1909), 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, - [37694] = 6, - ACTIONS(3), 1, + [36566] = 13, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1905), 1, + anon_sym_PERCENT, + ACTIONS(1907), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(531), 1, - anon_sym_EQ, - ACTIONS(1326), 1, - anon_sym_RBRACK, - ACTIONS(1718), 1, - anon_sym_COMMA, - ACTIONS(527), 12, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1885), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -66292,528 +69606,608 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(529), 21, + ACTIONS(1397), 13, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [37744] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [36631] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1361), 1, - anon_sym_AMP_AMP, - ACTIONS(1363), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1365), 1, + ACTIONS(1401), 1, anon_sym_GT_GT, - ACTIONS(1369), 1, + ACTIONS(1405), 1, anon_sym_AMP, - ACTIONS(1371), 1, + ACTIONS(1407), 1, anon_sym_CARET, - ACTIONS(1373), 1, - anon_sym_PIPE, - ACTIONS(1377), 1, + ACTIONS(1413), 1, anon_sym_PERCENT, - ACTIONS(1379), 1, + ACTIONS(1415), 1, anon_sym_STAR_STAR, - ACTIONS(1387), 1, + ACTIONS(1441), 1, + anon_sym_AMP_AMP, + ACTIONS(1443), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1445), 1, + anon_sym_PIPE, + ACTIONS(1447), 1, anon_sym_QMARK_QMARK, - ACTIONS(1389), 1, + ACTIONS(1449), 1, sym__ternary_qmark, - ACTIONS(1867), 1, + ACTIONS(1929), 1, anon_sym_RBRACK, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1355), 2, + ACTIONS(1395), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1367), 2, + ACTIONS(1403), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1375), 2, + ACTIONS(1411), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1383), 2, + ACTIONS(1419), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1385), 2, + ACTIONS(1421), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1359), 3, + ACTIONS(1399), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1381), 3, + ACTIONS(1417), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37834] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [36722] = 27, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, + ACTIONS(1710), 1, + anon_sym_of, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1744), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, + ACTIONS(1915), 1, anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, + ACTIONS(1917), 1, sym__ternary_qmark, - ACTIONS(1869), 1, - anon_sym_COLON, - ACTIONS(1310), 2, + ACTIONS(1931), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1887), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [37924] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [36815] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1840), 1, + ACTIONS(1552), 1, + anon_sym_of, + ACTIONS(1889), 1, + anon_sym_AMP_AMP, + ACTIONS(1891), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1893), 1, + anon_sym_GT_GT, + ACTIONS(1897), 1, + anon_sym_AMP, + ACTIONS(1899), 1, + anon_sym_CARET, + ACTIONS(1901), 1, + anon_sym_PIPE, + ACTIONS(1905), 1, + anon_sym_PERCENT, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1310), 2, + ACTIONS(1915), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1917), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1473), 12, + ACTIONS(1885), 2, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1463), 14, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1887), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1909), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [37984] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [36906] = 23, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1423), 1, - anon_sym_of, - ACTIONS(1822), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38074] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + ACTIONS(1397), 4, + sym__ternary_qmark, + anon_sym_of, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [36991] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1501), 1, - anon_sym_of, - ACTIONS(1822), 1, + ACTIONS(1828), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1832), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1836), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1838), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1840), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1844), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, + ACTIONS(1856), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(1934), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1824), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1834), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1826), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1848), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38164] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1344), 1, - anon_sym_RBRACK, - ACTIONS(1347), 1, - anon_sym_EQ, - ACTIONS(1711), 1, - anon_sym_COMMA, - ACTIONS(1340), 12, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1342), 21, - sym__ternary_qmark, + [37082] = 26, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, + ACTIONS(1351), 1, anon_sym_LBRACK, + ACTIONS(1353), 1, anon_sym_DOT, + ACTIONS(1355), 1, sym_optional_chain, + ACTIONS(1523), 1, + anon_sym_of, + ACTIONS(1889), 1, anon_sym_AMP_AMP, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1893), 1, + anon_sym_GT_GT, + ACTIONS(1897), 1, + anon_sym_AMP, + ACTIONS(1899), 1, anon_sym_CARET, + ACTIONS(1901), 1, + anon_sym_PIPE, + ACTIONS(1905), 1, anon_sym_PERCENT, + ACTIONS(1907), 1, anon_sym_STAR_STAR, + ACTIONS(1915), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1917), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1885), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1903), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1911), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1913), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1887), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1909), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [38214] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [37173] = 26, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1583), 1, + ACTIONS(1494), 1, anon_sym_of, - ACTIONS(1822), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1824), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, + ACTIONS(1915), 1, anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, + ACTIONS(1917), 1, sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38304] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [37264] = 22, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1357), 1, - anon_sym_of, - ACTIONS(1822), 1, - anon_sym_AMP_AMP, - ACTIONS(1824), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1826), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1830), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1832), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1834), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1838), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1840), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1848), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1850), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1818), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1828), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1836), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1844), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1846), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1820), 3, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1842), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38394] = 6, - ACTIONS(3), 1, + ACTIONS(1397), 5, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + [37347] = 11, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1907), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1335), 1, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 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(1397), 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, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [37408] = 6, + ACTIONS(1547), 1, anon_sym_RBRACK, - ACTIONS(1338), 1, + ACTIONS(1550), 1, anon_sym_EQ, - ACTIONS(1693), 1, + ACTIONS(1776), 1, anon_sym_COMMA, - ACTIONS(1331), 12, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1543), 12, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1333), 21, + ACTIONS(1545), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -66835,90 +70229,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38444] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(425), 1, + [37459] = 11, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1302), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1304), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1306), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1308), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, - anon_sym_AMP_AMP, - ACTIONS(1734), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, - anon_sym_GT_GT, - ACTIONS(1740), 1, - anon_sym_AMP, - ACTIONS(1742), 1, - anon_sym_CARET, - ACTIONS(1744), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1738), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(1746), 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(1754), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1397), 14, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(538), 2, - sym_template_string, - sym_arguments, - ACTIONS(1730), 3, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1752), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [38531] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1227), 1, + [37520] = 6, + ACTIONS(1320), 1, + anon_sym_COMMA, + ACTIONS(1325), 1, + anon_sym_RBRACK, + ACTIONS(1328), 1, anon_sym_EQ, - ACTIONS(1267), 1, - anon_sym_in, - ACTIONS(1270), 1, - anon_sym_of, - ACTIONS(1186), 11, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1258), 12, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1188), 21, + ACTIONS(1260), 21, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -66940,175 +70324,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38580] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, + [37571] = 24, + ACTIONS(407), 1, anon_sym_BQUOTE, - ACTIONS(1395), 1, + ACTIONS(1349), 1, anon_sym_LPAREN, - ACTIONS(1397), 1, + ACTIONS(1351), 1, anon_sym_LBRACK, - ACTIONS(1399), 1, + ACTIONS(1353), 1, anon_sym_DOT, - ACTIONS(1401), 1, + ACTIONS(1355), 1, sym_optional_chain, - ACTIONS(1732), 1, + ACTIONS(1889), 1, anon_sym_AMP_AMP, - ACTIONS(1734), 1, + ACTIONS(1891), 1, anon_sym_PIPE_PIPE, - ACTIONS(1736), 1, + ACTIONS(1893), 1, anon_sym_GT_GT, - ACTIONS(1740), 1, + ACTIONS(1897), 1, anon_sym_AMP, - ACTIONS(1742), 1, + ACTIONS(1899), 1, anon_sym_CARET, - ACTIONS(1744), 1, + ACTIONS(1901), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1905), 1, anon_sym_PERCENT, - ACTIONS(1750), 1, + ACTIONS(1907), 1, anon_sym_STAR_STAR, - ACTIONS(1758), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1760), 1, - sym__ternary_qmark, - ACTIONS(1310), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1728), 2, + ACTIONS(1885), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1738), 2, + ACTIONS(1895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(1746), 2, + ACTIONS(1903), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1754), 2, + ACTIONS(1911), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1756), 2, + ACTIONS(1913), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(766), 2, + STATE(553), 2, sym_template_string, sym_arguments, - ACTIONS(1730), 3, + ACTIONS(1397), 3, + sym__ternary_qmark, + anon_sym_of, + anon_sym_QMARK_QMARK, + ACTIONS(1887), 3, anon_sym_in, anon_sym_LT, anon_sym_GT, - ACTIONS(1752), 3, + ACTIONS(1909), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38667] = 6, - ACTIONS(3), 1, + [37658] = 18, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1893), 1, + anon_sym_GT_GT, + ACTIONS(1905), 1, + anon_sym_PERCENT, + ACTIONS(1907), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1338), 1, - anon_sym_EQ, - ACTIONS(1693), 1, - anon_sym_of, - ACTIONS(1705), 1, - anon_sym_in, - ACTIONS(1331), 11, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1885), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1903), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1887), 3, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, + ACTIONS(1909), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1409), 4, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1333), 21, + ACTIONS(1397), 8, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [37733] = 16, + ACTIONS(407), 1, anon_sym_BQUOTE, - [38716] = 6, - ACTIONS(3), 1, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1893), 1, + anon_sym_GT_GT, + ACTIONS(1905), 1, + anon_sym_PERCENT, + ACTIONS(1907), 1, + anon_sym_STAR_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1347), 1, - anon_sym_EQ, - ACTIONS(1708), 1, - anon_sym_in, - ACTIONS(1711), 1, - anon_sym_of, - ACTIONS(1340), 11, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1885), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1895), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1903), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1409), 7, + anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - 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(1342), 21, + ACTIONS(1397), 11, sym__ternary_qmark, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - sym_optional_chain, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [38765] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1521), 1, + [37804] = 4, + ACTIONS(1385), 1, sym_regex_flags, - ACTIONS(1517), 14, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1381), 14, anon_sym_STAR, anon_sym_in, anon_sym_of, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_instanceof, - ACTIONS(1519), 20, + ACTIONS(1383), 20, sym__ternary_qmark, anon_sym_LPAREN, anon_sym_LBRACK, @@ -67129,5535 +70541,6793 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [38810] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 1, - anon_sym_EQ, - ACTIONS(1186), 12, + [37850] = 24, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(103), 1, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - 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(1188), 22, - sym__ternary_qmark, + ACTIONS(105), 1, + anon_sym_COMMA, + ACTIONS(115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(1938), 1, + anon_sym_LBRACE, + ACTIONS(1940), 1, + anon_sym_RBRACE, + ACTIONS(1942), 1, + anon_sym_LBRACK, + ACTIONS(1944), 1, + anon_sym_async, + ACTIONS(1948), 1, + anon_sym_static, + STATE(922), 1, + aux_sym_export_statement_repeat1, + STATE(1017), 1, + sym_decorator, + STATE(1329), 1, + aux_sym_object_repeat1, + STATE(1341), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1946), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(1950), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1936), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1322), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1350), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1356), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1650), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [37936] = 25, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1622), 1, anon_sym_LBRACK, + ACTIONS(1624), 1, anon_sym_DOT, + ACTIONS(1626), 1, sym_optional_chain, + ACTIONS(1828), 1, anon_sym_AMP_AMP, + ACTIONS(1830), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1832), 1, + anon_sym_GT_GT, + ACTIONS(1836), 1, + anon_sym_AMP, + ACTIONS(1838), 1, anon_sym_CARET, + ACTIONS(1840), 1, + anon_sym_PIPE, + ACTIONS(1844), 1, anon_sym_PERCENT, + ACTIONS(1846), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1854), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1856), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [38855] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(531), 1, - anon_sym_EQ, - ACTIONS(1715), 1, - anon_sym_in, - ACTIONS(1718), 1, - anon_sym_of, - ACTIONS(527), 11, + ACTIONS(1824), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1834), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1842), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1850), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(529), 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, + ACTIONS(1852), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(741), 2, + sym_template_string, + sym_arguments, + ACTIONS(1826), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1848), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [38904] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, + [38024] = 24, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(97), 1, + ACTIONS(103), 1, anon_sym_STAR, - ACTIONS(99), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(107), 1, + ACTIONS(115), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1873), 1, + ACTIONS(1938), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, - anon_sym_RBRACE, - ACTIONS(1877), 1, + ACTIONS(1942), 1, anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(1954), 1, + anon_sym_RBRACE, + ACTIONS(1956), 1, anon_sym_async, - ACTIONS(1883), 1, + ACTIONS(1958), 1, anon_sym_static, - STATE(923), 1, + STATE(922), 1, aux_sym_export_statement_repeat1, - STATE(1007), 1, + STATE(1017), 1, sym_decorator, - STATE(1249), 1, + STATE(1341), 1, aux_sym_object_pattern_repeat1, - STATE(1256), 1, + STATE(1342), 1, aux_sym_object_repeat1, - ACTIONS(1871), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1881), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1946), 2, sym_number, sym_private_property_identifier, - ACTIONS(1885), 2, + ACTIONS(1960), 2, anon_sym_get, anon_sym_set, - STATE(1257), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1260), 3, + ACTIONS(1952), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1350), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1274), 3, + STATE(1352), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(1356), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1560), 3, + STATE(1650), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [38985] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, + [38110] = 24, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(97), 1, + ACTIONS(103), 1, anon_sym_STAR, - ACTIONS(99), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(107), 1, + ACTIONS(115), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1873), 1, + ACTIONS(1938), 1, anon_sym_LBRACE, - ACTIONS(1877), 1, + ACTIONS(1942), 1, anon_sym_LBRACK, - ACTIONS(1889), 1, + ACTIONS(1964), 1, anon_sym_RBRACE, - ACTIONS(1891), 1, + ACTIONS(1966), 1, anon_sym_async, - ACTIONS(1893), 1, + ACTIONS(1968), 1, anon_sym_static, - STATE(923), 1, + STATE(922), 1, aux_sym_export_statement_repeat1, - STATE(1007), 1, + STATE(1017), 1, sym_decorator, - STATE(1249), 1, - aux_sym_object_pattern_repeat1, - STATE(1256), 1, + STATE(1329), 1, aux_sym_object_repeat1, - ACTIONS(1881), 2, + STATE(1341), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1946), 2, sym_number, sym_private_property_identifier, - ACTIONS(1887), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1895), 2, + ACTIONS(1970), 2, anon_sym_get, anon_sym_set, - STATE(1257), 3, + ACTIONS(1962), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1322), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1260), 3, + STATE(1350), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1274), 3, + STATE(1356), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1560), 3, + STATE(1650), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [39066] = 23, - ACTIONS(3), 1, + [38196] = 25, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(1351), 1, + anon_sym_LBRACK, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(1355), 1, + sym_optional_chain, + ACTIONS(1828), 1, + anon_sym_AMP_AMP, + ACTIONS(1830), 1, + anon_sym_PIPE_PIPE, + ACTIONS(1832), 1, + anon_sym_GT_GT, + ACTIONS(1836), 1, + anon_sym_AMP, + ACTIONS(1838), 1, + anon_sym_CARET, + ACTIONS(1840), 1, + anon_sym_PIPE, + ACTIONS(1844), 1, + anon_sym_PERCENT, + ACTIONS(1846), 1, + anon_sym_STAR_STAR, + ACTIONS(1854), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1856), 1, + sym__ternary_qmark, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1357), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1824), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1834), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(1842), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1850), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1852), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(553), 2, + sym_template_string, + sym_arguments, + ACTIONS(1826), 3, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1848), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38284] = 6, + ACTIONS(1271), 1, + anon_sym_EQ, + ACTIONS(1334), 1, + anon_sym_in, + ACTIONS(1337), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(87), 1, + ACTIONS(1258), 11, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1260), 21, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [38334] = 24, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(97), 1, + ACTIONS(103), 1, anon_sym_STAR, - ACTIONS(99), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(107), 1, + ACTIONS(115), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1873), 1, + ACTIONS(1938), 1, anon_sym_LBRACE, - ACTIONS(1877), 1, + ACTIONS(1942), 1, anon_sym_LBRACK, - ACTIONS(1899), 1, + ACTIONS(1974), 1, anon_sym_RBRACE, - ACTIONS(1901), 1, + ACTIONS(1976), 1, anon_sym_async, - ACTIONS(1903), 1, + ACTIONS(1978), 1, anon_sym_static, - STATE(923), 1, + STATE(922), 1, aux_sym_export_statement_repeat1, - STATE(1007), 1, + STATE(1017), 1, sym_decorator, - STATE(1249), 1, - aux_sym_object_pattern_repeat1, - STATE(1256), 1, + STATE(1329), 1, aux_sym_object_repeat1, - ACTIONS(1881), 2, + STATE(1341), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1946), 2, sym_number, sym_private_property_identifier, - ACTIONS(1897), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1905), 2, + ACTIONS(1980), 2, anon_sym_get, anon_sym_set, - STATE(1257), 3, + ACTIONS(1972), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1322), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1260), 3, + STATE(1350), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1274), 3, + STATE(1356), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1560), 3, + STATE(1650), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [39147] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, + [38420] = 24, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(97), 1, + ACTIONS(103), 1, anon_sym_STAR, - ACTIONS(99), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(107), 1, + ACTIONS(115), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1873), 1, + ACTIONS(1938), 1, anon_sym_LBRACE, - ACTIONS(1877), 1, + ACTIONS(1942), 1, anon_sym_LBRACK, - ACTIONS(1909), 1, + ACTIONS(1984), 1, anon_sym_RBRACE, - ACTIONS(1911), 1, + ACTIONS(1986), 1, anon_sym_async, - ACTIONS(1913), 1, + ACTIONS(1988), 1, anon_sym_static, - STATE(923), 1, + STATE(922), 1, aux_sym_export_statement_repeat1, - STATE(1007), 1, + STATE(1017), 1, sym_decorator, - STATE(1249), 1, - aux_sym_object_pattern_repeat1, - STATE(1256), 1, + STATE(1329), 1, aux_sym_object_repeat1, - ACTIONS(1881), 2, + STATE(1341), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1946), 2, sym_number, sym_private_property_identifier, - ACTIONS(1907), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1915), 2, + ACTIONS(1990), 2, anon_sym_get, anon_sym_set, - STATE(1257), 3, + ACTIONS(1982), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1322), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1260), 3, + STATE(1350), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1274), 3, + STATE(1356), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1560), 3, + STATE(1650), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [39228] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, + [38506] = 24, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(97), 1, + ACTIONS(103), 1, anon_sym_STAR, - ACTIONS(99), 1, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(107), 1, + ACTIONS(115), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1873), 1, + ACTIONS(1938), 1, anon_sym_LBRACE, - ACTIONS(1877), 1, + ACTIONS(1942), 1, anon_sym_LBRACK, - ACTIONS(1919), 1, + ACTIONS(1994), 1, anon_sym_RBRACE, - ACTIONS(1921), 1, + ACTIONS(1996), 1, anon_sym_async, - ACTIONS(1923), 1, + ACTIONS(1998), 1, anon_sym_static, - STATE(923), 1, + STATE(922), 1, aux_sym_export_statement_repeat1, - STATE(1007), 1, + STATE(1017), 1, sym_decorator, - STATE(1249), 1, - aux_sym_object_pattern_repeat1, - STATE(1253), 1, + STATE(1329), 1, aux_sym_object_repeat1, - ACTIONS(1881), 2, + STATE(1341), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1946), 2, sym_number, sym_private_property_identifier, - ACTIONS(1917), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1925), 2, + ACTIONS(2000), 2, anon_sym_get, anon_sym_set, - STATE(1260), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(1264), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1274), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1560), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [39309] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(97), 1, - anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_COMMA, - ACTIONS(107), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(876), 1, - anon_sym_SQUOTE, - ACTIONS(1873), 1, - anon_sym_LBRACE, - ACTIONS(1877), 1, - anon_sym_LBRACK, - ACTIONS(1929), 1, - anon_sym_RBRACE, - ACTIONS(1931), 1, - anon_sym_async, - ACTIONS(1933), 1, - anon_sym_static, - STATE(923), 1, - aux_sym_export_statement_repeat1, - STATE(1007), 1, - sym_decorator, - STATE(1249), 1, - aux_sym_object_pattern_repeat1, - STATE(1256), 1, - aux_sym_object_repeat1, - ACTIONS(1881), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1927), 2, + ACTIONS(1992), 3, anon_sym_export, + anon_sym_let, sym_identifier, - ACTIONS(1935), 2, - anon_sym_get, - anon_sym_set, - STATE(1257), 3, + STATE(1322), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1260), 3, + STATE(1350), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1274), 3, + STATE(1356), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1560), 3, + STATE(1650), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [39390] = 23, - ACTIONS(3), 1, + [38592] = 4, + ACTIONS(1341), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(87), 1, + ACTIONS(1258), 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(1260), 22, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + sym_optional_chain, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [38638] = 21, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(97), 1, + ACTIONS(103), 1, anon_sym_STAR, - ACTIONS(99), 1, - anon_sym_COMMA, - ACTIONS(107), 1, + ACTIONS(115), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1873), 1, + ACTIONS(1938), 1, anon_sym_LBRACE, - ACTIONS(1877), 1, + ACTIONS(1942), 1, anon_sym_LBRACK, - ACTIONS(1939), 1, - anon_sym_RBRACE, - ACTIONS(1941), 1, + ACTIONS(2007), 1, anon_sym_async, - ACTIONS(1943), 1, + ACTIONS(2009), 1, anon_sym_static, - STATE(923), 1, + STATE(922), 1, aux_sym_export_statement_repeat1, - STATE(1007), 1, + STATE(1017), 1, sym_decorator, - STATE(1249), 1, - aux_sym_object_pattern_repeat1, - STATE(1253), 1, - aux_sym_object_repeat1, - ACTIONS(1881), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1946), 2, sym_number, sym_private_property_identifier, - ACTIONS(1937), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1945), 2, + ACTIONS(2004), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2011), 2, anon_sym_get, anon_sym_set, - STATE(1260), 3, + ACTIONS(2002), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1350), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1264), 3, + STATE(1637), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(1274), 3, + STATE(1639), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1560), 3, + STATE(1650), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [39471] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(97), 1, + [38716] = 23, + ACTIONS(2016), 1, anon_sym_STAR, - ACTIONS(107), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, + ACTIONS(2019), 1, + anon_sym_RBRACE, + ACTIONS(2021), 1, + anon_sym_SEMI, + ACTIONS(2024), 1, + anon_sym_LBRACK, + ACTIONS(2027), 1, + sym_glimmer_opening_tag, + ACTIONS(2030), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(2033), 1, anon_sym_SQUOTE, - ACTIONS(1873), 1, - anon_sym_LBRACE, - ACTIONS(1877), 1, - anon_sym_LBRACK, - ACTIONS(1952), 1, + ACTIONS(2036), 1, anon_sym_async, - ACTIONS(1954), 1, + ACTIONS(2042), 1, + anon_sym_AT, + ACTIONS(2045), 1, anon_sym_static, - STATE(923), 1, + ACTIONS(2048), 1, + aux_sym_method_definition_token1, + STATE(882), 1, + aux_sym_class_body_repeat1, + STATE(920), 1, aux_sym_export_statement_repeat1, - STATE(1007), 1, + STATE(976), 1, + sym_glimmer_template, + STATE(979), 1, + sym_class_static_block, + STATE(980), 1, + sym_method_definition, + STATE(1017), 1, sym_decorator, - ACTIONS(1881), 2, + STATE(1551), 1, + sym_field_definition, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2039), 2, sym_number, sym_private_property_identifier, - ACTIONS(1947), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1949), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1956), 2, + ACTIONS(2051), 2, anon_sym_get, anon_sym_set, - STATE(1260), 3, + ACTIONS(2013), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1148), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1443), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1450), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(1560), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [39544] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(87), 1, + [38793] = 23, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(1960), 1, + ACTIONS(2056), 1, anon_sym_STAR, - ACTIONS(1962), 1, + ACTIONS(2058), 1, anon_sym_RBRACE, - ACTIONS(1964), 1, + ACTIONS(2060), 1, + anon_sym_SEMI, + ACTIONS(2062), 1, anon_sym_LBRACK, - ACTIONS(1966), 1, + ACTIONS(2064), 1, + sym_glimmer_opening_tag, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2068), 1, + anon_sym_SQUOTE, + ACTIONS(2070), 1, anon_sym_async, - ACTIONS(1970), 1, + ACTIONS(2074), 1, anon_sym_static, - STATE(878), 1, + ACTIONS(2076), 1, + aux_sym_method_definition_token1, + STATE(890), 1, aux_sym_class_body_repeat1, STATE(920), 1, aux_sym_export_statement_repeat1, - STATE(955), 1, - sym_method_definition, - STATE(982), 1, + STATE(976), 1, sym_glimmer_template, - STATE(1007), 1, + STATE(979), 1, + sym_class_static_block, + STATE(980), 1, + sym_method_definition, + STATE(1017), 1, sym_decorator, - STATE(1186), 1, - sym_glimmer_opening_tag, - STATE(1368), 1, + STATE(1551), 1, sym_field_definition, - ACTIONS(1958), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1968), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2072), 2, sym_number, sym_private_property_identifier, - ACTIONS(1972), 2, + ACTIONS(2078), 2, anon_sym_get, anon_sym_set, - STATE(1091), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [39613] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(876), 1, - anon_sym_SQUOTE, - ACTIONS(1873), 1, - anon_sym_LBRACE, - ACTIONS(1877), 1, - anon_sym_LBRACK, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(1978), 1, - anon_sym_RBRACE, - STATE(1249), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1980), 2, - sym_number, - sym_private_property_identifier, - STATE(1274), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1560), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1599), 3, + ACTIONS(2054), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1148), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1974), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39668] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(87), 1, + [38870] = 23, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(1960), 1, + ACTIONS(2056), 1, anon_sym_STAR, - ACTIONS(1964), 1, + ACTIONS(2062), 1, anon_sym_LBRACK, - ACTIONS(1966), 1, + ACTIONS(2064), 1, + sym_glimmer_opening_tag, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2068), 1, + anon_sym_SQUOTE, + ACTIONS(2070), 1, anon_sym_async, - ACTIONS(1970), 1, + ACTIONS(2074), 1, anon_sym_static, - ACTIONS(1982), 1, + ACTIONS(2076), 1, + aux_sym_method_definition_token1, + ACTIONS(2080), 1, anon_sym_RBRACE, - STATE(878), 1, + ACTIONS(2082), 1, + anon_sym_SEMI, + STATE(885), 1, aux_sym_class_body_repeat1, STATE(920), 1, aux_sym_export_statement_repeat1, - STATE(955), 1, - sym_method_definition, - STATE(982), 1, + STATE(976), 1, sym_glimmer_template, - STATE(1007), 1, + STATE(979), 1, + sym_class_static_block, + STATE(980), 1, + sym_method_definition, + STATE(1017), 1, sym_decorator, - STATE(1186), 1, - sym_glimmer_opening_tag, - STATE(1368), 1, + STATE(1551), 1, sym_field_definition, - ACTIONS(1958), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1968), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2072), 2, sym_number, sym_private_property_identifier, - ACTIONS(1972), 2, + ACTIONS(2078), 2, anon_sym_get, anon_sym_set, - STATE(1091), 3, + ACTIONS(2054), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1148), 3, sym_string, sym__property_name, sym_computed_property_name, - [39737] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(87), 1, + [38947] = 23, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(1960), 1, + ACTIONS(2056), 1, anon_sym_STAR, - ACTIONS(1964), 1, + ACTIONS(2062), 1, anon_sym_LBRACK, - ACTIONS(1966), 1, + ACTIONS(2064), 1, + sym_glimmer_opening_tag, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2068), 1, + anon_sym_SQUOTE, + ACTIONS(2070), 1, anon_sym_async, - ACTIONS(1970), 1, + ACTIONS(2074), 1, anon_sym_static, - ACTIONS(1984), 1, + ACTIONS(2076), 1, + aux_sym_method_definition_token1, + ACTIONS(2084), 1, anon_sym_RBRACE, - STATE(874), 1, + ACTIONS(2086), 1, + anon_sym_SEMI, + STATE(882), 1, aux_sym_class_body_repeat1, STATE(920), 1, aux_sym_export_statement_repeat1, - STATE(955), 1, - sym_method_definition, - STATE(982), 1, + STATE(976), 1, sym_glimmer_template, - STATE(1007), 1, + STATE(979), 1, + sym_class_static_block, + STATE(980), 1, + sym_method_definition, + STATE(1017), 1, sym_decorator, - STATE(1186), 1, - sym_glimmer_opening_tag, - STATE(1368), 1, + STATE(1551), 1, sym_field_definition, - ACTIONS(1958), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1968), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2072), 2, sym_number, sym_private_property_identifier, - ACTIONS(1972), 2, + ACTIONS(2078), 2, anon_sym_get, anon_sym_set, - STATE(1091), 3, + ACTIONS(2054), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1148), 3, sym_string, sym__property_name, sym_computed_property_name, - [39806] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1989), 1, + [39024] = 23, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2056), 1, anon_sym_STAR, - ACTIONS(1992), 1, - anon_sym_RBRACE, - ACTIONS(1994), 1, + ACTIONS(2062), 1, anon_sym_LBRACK, - ACTIONS(1997), 1, - anon_sym_LTtemplate_GT, - ACTIONS(2000), 1, - anon_sym_async, - ACTIONS(2003), 1, + ACTIONS(2064), 1, + sym_glimmer_opening_tag, + ACTIONS(2066), 1, anon_sym_DQUOTE, - ACTIONS(2006), 1, + ACTIONS(2068), 1, anon_sym_SQUOTE, - ACTIONS(2012), 1, - anon_sym_AT, - ACTIONS(2015), 1, + ACTIONS(2070), 1, + anon_sym_async, + ACTIONS(2074), 1, anon_sym_static, - STATE(878), 1, + ACTIONS(2076), 1, + aux_sym_method_definition_token1, + ACTIONS(2086), 1, + anon_sym_SEMI, + ACTIONS(2088), 1, + anon_sym_RBRACE, + STATE(882), 1, aux_sym_class_body_repeat1, STATE(920), 1, aux_sym_export_statement_repeat1, - STATE(955), 1, - sym_method_definition, - STATE(982), 1, + STATE(976), 1, sym_glimmer_template, - STATE(1007), 1, + STATE(979), 1, + sym_class_static_block, + STATE(980), 1, + sym_method_definition, + STATE(1017), 1, sym_decorator, - STATE(1186), 1, - sym_glimmer_opening_tag, - STATE(1368), 1, + STATE(1551), 1, sym_field_definition, - ACTIONS(1986), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2009), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2072), 2, sym_number, sym_private_property_identifier, - ACTIONS(2018), 2, + ACTIONS(2078), 2, anon_sym_get, anon_sym_set, - STATE(1091), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [39875] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(693), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(876), 1, - anon_sym_SQUOTE, - ACTIONS(1873), 1, - anon_sym_LBRACE, - ACTIONS(1877), 1, - anon_sym_LBRACK, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(2023), 1, - anon_sym_RBRACE, - STATE(1254), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1980), 2, - sym_number, - sym_private_property_identifier, - STATE(1258), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(1560), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(1599), 3, + ACTIONS(2054), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1148), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2021), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [39930] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(87), 1, + [39101] = 23, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(1960), 1, + ACTIONS(2056), 1, anon_sym_STAR, - ACTIONS(1964), 1, + ACTIONS(2062), 1, anon_sym_LBRACK, - ACTIONS(1966), 1, + ACTIONS(2064), 1, + sym_glimmer_opening_tag, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2068), 1, + anon_sym_SQUOTE, + ACTIONS(2070), 1, anon_sym_async, - ACTIONS(1970), 1, + ACTIONS(2074), 1, anon_sym_static, - ACTIONS(2025), 1, + ACTIONS(2076), 1, + aux_sym_method_definition_token1, + ACTIONS(2090), 1, anon_sym_RBRACE, - STATE(876), 1, + ACTIONS(2092), 1, + anon_sym_SEMI, + STATE(886), 1, aux_sym_class_body_repeat1, STATE(920), 1, aux_sym_export_statement_repeat1, - STATE(955), 1, - sym_method_definition, - STATE(982), 1, + STATE(976), 1, sym_glimmer_template, - STATE(1007), 1, + STATE(979), 1, + sym_class_static_block, + STATE(980), 1, + sym_method_definition, + STATE(1017), 1, sym_decorator, - STATE(1186), 1, - sym_glimmer_opening_tag, - STATE(1368), 1, + STATE(1551), 1, sym_field_definition, - ACTIONS(1958), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1968), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2072), 2, sym_number, sym_private_property_identifier, - ACTIONS(1972), 2, + ACTIONS(2078), 2, anon_sym_get, anon_sym_set, - STATE(1091), 3, + ACTIONS(2054), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1148), 3, sym_string, sym__property_name, sym_computed_property_name, - [39999] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(87), 1, + [39178] = 23, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(1960), 1, + ACTIONS(2056), 1, anon_sym_STAR, - ACTIONS(1964), 1, + ACTIONS(2062), 1, anon_sym_LBRACK, - ACTIONS(1966), 1, + ACTIONS(2064), 1, + sym_glimmer_opening_tag, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2068), 1, + anon_sym_SQUOTE, + ACTIONS(2070), 1, anon_sym_async, - ACTIONS(1970), 1, + ACTIONS(2074), 1, anon_sym_static, - ACTIONS(2027), 1, + ACTIONS(2076), 1, + aux_sym_method_definition_token1, + ACTIONS(2094), 1, anon_sym_RBRACE, - STATE(883), 1, + ACTIONS(2096), 1, + anon_sym_SEMI, + STATE(889), 1, aux_sym_class_body_repeat1, STATE(920), 1, aux_sym_export_statement_repeat1, - STATE(955), 1, - sym_method_definition, - STATE(982), 1, + STATE(976), 1, sym_glimmer_template, - STATE(1007), 1, + STATE(979), 1, + sym_class_static_block, + STATE(980), 1, + sym_method_definition, + STATE(1017), 1, sym_decorator, - STATE(1186), 1, - sym_glimmer_opening_tag, - STATE(1368), 1, + STATE(1551), 1, sym_field_definition, - ACTIONS(1958), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1968), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2072), 2, sym_number, sym_private_property_identifier, - ACTIONS(1972), 2, + ACTIONS(2078), 2, anon_sym_get, anon_sym_set, - STATE(1091), 3, + ACTIONS(2054), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1148), 3, sym_string, sym__property_name, sym_computed_property_name, - [40068] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(87), 1, + [39255] = 23, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(1960), 1, + ACTIONS(2056), 1, anon_sym_STAR, - ACTIONS(1964), 1, + ACTIONS(2062), 1, anon_sym_LBRACK, - ACTIONS(1966), 1, + ACTIONS(2064), 1, + sym_glimmer_opening_tag, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2068), 1, + anon_sym_SQUOTE, + ACTIONS(2070), 1, anon_sym_async, - ACTIONS(1970), 1, + ACTIONS(2074), 1, anon_sym_static, - ACTIONS(2029), 1, + ACTIONS(2076), 1, + aux_sym_method_definition_token1, + ACTIONS(2086), 1, + anon_sym_SEMI, + ACTIONS(2098), 1, anon_sym_RBRACE, - STATE(884), 1, + STATE(882), 1, aux_sym_class_body_repeat1, STATE(920), 1, aux_sym_export_statement_repeat1, - STATE(955), 1, - sym_method_definition, - STATE(982), 1, + STATE(976), 1, sym_glimmer_template, - STATE(1007), 1, + STATE(979), 1, + sym_class_static_block, + STATE(980), 1, + sym_method_definition, + STATE(1017), 1, sym_decorator, - STATE(1186), 1, - sym_glimmer_opening_tag, - STATE(1368), 1, + STATE(1551), 1, sym_field_definition, - ACTIONS(1958), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1968), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2072), 2, sym_number, sym_private_property_identifier, - ACTIONS(1972), 2, + ACTIONS(2078), 2, anon_sym_get, anon_sym_set, - STATE(1091), 3, + ACTIONS(2054), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1148), 3, sym_string, sym__property_name, sym_computed_property_name, - [40137] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(87), 1, + [39332] = 23, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(1960), 1, + ACTIONS(2056), 1, anon_sym_STAR, - ACTIONS(1964), 1, + ACTIONS(2062), 1, anon_sym_LBRACK, - ACTIONS(1966), 1, + ACTIONS(2064), 1, + sym_glimmer_opening_tag, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2068), 1, + anon_sym_SQUOTE, + ACTIONS(2070), 1, anon_sym_async, - ACTIONS(1970), 1, + ACTIONS(2074), 1, anon_sym_static, - ACTIONS(2031), 1, + ACTIONS(2076), 1, + aux_sym_method_definition_token1, + ACTIONS(2086), 1, + anon_sym_SEMI, + ACTIONS(2100), 1, anon_sym_RBRACE, - STATE(878), 1, + STATE(882), 1, aux_sym_class_body_repeat1, STATE(920), 1, aux_sym_export_statement_repeat1, - STATE(955), 1, - sym_method_definition, - STATE(982), 1, + STATE(976), 1, sym_glimmer_template, - STATE(1007), 1, + STATE(979), 1, + sym_class_static_block, + STATE(980), 1, + sym_method_definition, + STATE(1017), 1, sym_decorator, - STATE(1186), 1, - sym_glimmer_opening_tag, - STATE(1368), 1, + STATE(1551), 1, sym_field_definition, - ACTIONS(1958), 2, - anon_sym_export, - sym_identifier, - ACTIONS(1968), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2072), 2, sym_number, sym_private_property_identifier, - ACTIONS(1972), 2, + ACTIONS(2078), 2, anon_sym_get, anon_sym_set, - STATE(1091), 3, + ACTIONS(2054), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1148), 3, sym_string, sym__property_name, sym_computed_property_name, - [40206] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(55), 1, - anon_sym_LTtemplate_GT, - ACTIONS(87), 1, + [39409] = 20, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(1294), 1, + ACTIONS(103), 1, + anon_sym_STAR, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(716), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1960), 1, - anon_sym_STAR, - ACTIONS(1964), 1, + ACTIONS(2104), 1, + anon_sym_COMMA, + ACTIONS(2106), 1, + anon_sym_RBRACE, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(1966), 1, + ACTIONS(2110), 1, anon_sym_async, - ACTIONS(1970), 1, + ACTIONS(2114), 1, anon_sym_static, - ACTIONS(2033), 1, - anon_sym_RBRACE, - STATE(878), 1, - aux_sym_class_body_repeat1, - STATE(920), 1, + STATE(922), 1, aux_sym_export_statement_repeat1, - STATE(955), 1, - sym_method_definition, - STATE(982), 1, - sym_glimmer_template, - STATE(1007), 1, + STATE(1017), 1, sym_decorator, - STATE(1186), 1, - sym_glimmer_opening_tag, - STATE(1368), 1, - sym_field_definition, - ACTIONS(1958), 2, + STATE(1394), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2112), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2116), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2102), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1359), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(1392), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + [39479] = 14, + ACTIONS(692), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(1938), 1, + anon_sym_LBRACE, + ACTIONS(1942), 1, + anon_sym_LBRACK, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2122), 1, + anon_sym_RBRACE, + STATE(1338), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2124), 2, + sym_number, + sym_private_property_identifier, + STATE(1315), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1650), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(1664), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2118), 7, anon_sym_export, + anon_sym_let, + anon_sym_async, sym_identifier, - ACTIONS(1968), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(1972), 2, + anon_sym_static, anon_sym_get, anon_sym_set, - STATE(1091), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [40275] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, + [39536] = 18, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(97), 1, + ACTIONS(103), 1, anon_sym_STAR, - ACTIONS(720), 1, + ACTIONS(123), 1, + aux_sym_method_definition_token1, + ACTIONS(716), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2041), 1, + ACTIONS(2130), 1, anon_sym_async, - ACTIONS(2045), 1, + ACTIONS(2132), 1, anon_sym_static, - STATE(923), 1, + STATE(922), 1, aux_sym_export_statement_repeat1, - STATE(1007), 1, + STATE(1017), 1, sym_decorator, - ACTIONS(2035), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2037), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2043), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2112), 2, sym_number, sym_private_property_identifier, - ACTIONS(2047), 2, + ACTIONS(2128), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2134), 2, anon_sym_get, anon_sym_set, - STATE(1278), 3, + ACTIONS(2126), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1359), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1450), 3, + STATE(1637), 3, sym_spread_element, sym_method_definition, sym_pair, - [40335] = 12, - ACTIONS(3), 1, + [39601] = 14, + ACTIONS(692), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(1938), 1, + anon_sym_LBRACE, + ACTIONS(1942), 1, + anon_sym_LBRACK, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2138), 1, + anon_sym_RBRACE, + STATE(1341), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(693), 1, + ACTIONS(2124), 2, + sym_number, + sym_private_property_identifier, + STATE(1356), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(1650), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(1664), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2136), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [39658] = 12, + ACTIONS(692), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1873), 1, + ACTIONS(1938), 1, anon_sym_LBRACE, - ACTIONS(1877), 1, + ACTIONS(1942), 1, anon_sym_LBRACK, - ACTIONS(1980), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2124), 2, sym_number, sym_private_property_identifier, - ACTIONS(2051), 2, + ACTIONS(2142), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1443), 3, + STATE(1639), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(1560), 3, + STATE(1650), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(1599), 3, + STATE(1664), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2049), 6, + ACTIONS(2140), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [40385] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [39710] = 15, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(852), 1, + anon_sym_RBRACE, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(884), 1, - anon_sym_async, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2055), 1, - anon_sym_RBRACE, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(882), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - [40441] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + ACTIONS(888), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [39766] = 16, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(852), 1, + anon_sym_RBRACE, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - ACTIONS(2061), 1, - anon_sym_RBRACE, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - [40495] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [39824] = 16, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(884), 1, + ACTIONS(890), 1, anon_sym_async, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - ACTIONS(2061), 1, + ACTIONS(2150), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(882), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - [40551] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + ACTIONS(888), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [39882] = 15, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(820), 1, + ACTIONS(826), 1, anon_sym_RBRACE, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [40605] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [39938] = 15, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2055), 1, - anon_sym_RBRACE, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, + ACTIONS(2152), 1, + anon_sym_RBRACE, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [40659] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [39994] = 16, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(846), 1, + ACTIONS(826), 1, anon_sym_RBRACE, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - [40713] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [40052] = 16, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(846), 1, + ACTIONS(854), 1, anon_sym_RBRACE, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(884), 1, + ACTIONS(890), 1, anon_sym_async, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1301), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + STATE(1302), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(882), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - [40769] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + ACTIONS(888), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [40110] = 15, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(820), 1, + ACTIONS(854), 1, anon_sym_RBRACE, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(884), 1, - anon_sym_async, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1301), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + STATE(1302), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(882), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - [40825] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + ACTIONS(888), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [40166] = 15, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(884), 1, - anon_sym_async, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - ACTIONS(2063), 1, + ACTIONS(2154), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1301), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(882), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - [40881] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + ACTIONS(888), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [40222] = 16, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(848), 1, - anon_sym_RBRACE, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, + ACTIONS(2154), 1, + anon_sym_RBRACE, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1301), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - [40935] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [40280] = 15, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(848), 1, - anon_sym_RBRACE, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(884), 1, - anon_sym_async, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, + ACTIONS(2150), 1, + anon_sym_RBRACE, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1301), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(882), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - [40991] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + ACTIONS(888), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [40336] = 16, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - ACTIONS(2065), 1, + ACTIONS(2152), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - [41045] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [40394] = 13, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, - anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - ACTIONS(2063), 1, + ACTIONS(2154), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1301), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41099] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + anon_sym_get, + anon_sym_set, + [40445] = 13, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(884), 1, - anon_sym_async, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, - anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - ACTIONS(2065), 1, + ACTIONS(2150), 1, anon_sym_RBRACE, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(882), 3, + STATE(1622), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - STATE(1438), 3, + anon_sym_get, + anon_sym_set, + [40496] = 14, + ACTIONS(2062), 1, + anon_sym_LBRACK, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2068), 1, + anon_sym_SQUOTE, + ACTIONS(2156), 1, + anon_sym_STAR, + ACTIONS(2158), 1, + anon_sym_LBRACE, + ACTIONS(2160), 1, + anon_sym_async, + ACTIONS(2166), 1, + sym__automatic_semicolon, + STATE(970), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2162), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2164), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2146), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + STATE(1138), 3, sym_string, sym__property_name, sym_computed_property_name, - [41155] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + ACTIONS(2054), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [40549] = 13, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(852), 1, + anon_sym_RBRACE, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - ACTIONS(2065), 1, - anon_sym_RBRACE, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41204] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [40600] = 13, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(854), 1, + anon_sym_RBRACE, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - ACTIONS(2061), 1, - anon_sym_RBRACE, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1301), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + STATE(1302), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41253] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [40651] = 13, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(826), 1, + anon_sym_RBRACE, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_RBRACE, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1301), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41302] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [40702] = 13, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(874), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2055), 1, - anon_sym_RBRACE, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, + ACTIONS(2152), 1, + anon_sym_RBRACE, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41351] = 13, - ACTIONS(3), 1, + [40753] = 12, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2144), 1, + anon_sym_STAR, + ACTIONS(2148), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(99), 1, + ACTIONS(884), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(892), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2146), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2169), 2, anon_sym_COMMA, - ACTIONS(846), 1, anon_sym_RBRACE, - ACTIONS(874), 1, + STATE(1622), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [40801] = 13, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2104), 1, + anon_sym_COMMA, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2059), 1, - anon_sym_EQ, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, - STATE(1337), 1, + ACTIONS(2144), 1, + anon_sym_STAR, + ACTIONS(2172), 1, + anon_sym_RBRACE, + STATE(1390), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(2057), 2, + ACTIONS(892), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [41400] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [40851] = 14, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(2104), 1, anon_sym_COMMA, - ACTIONS(820), 1, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2144), 1, + anon_sym_STAR, + ACTIONS(2172), 1, anon_sym_RBRACE, - ACTIONS(874), 1, + STATE(1390), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(892), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2146), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(1622), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [40903] = 13, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2059), 1, + ACTIONS(2144), 1, + anon_sym_STAR, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, - STATE(1337), 1, - aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(2057), 2, + ACTIONS(892), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + ACTIONS(2169), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [40953] = 18, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2174), 1, anon_sym_export, + ACTIONS(2176), 1, + anon_sym_STAR, + ACTIONS(2178), 1, + anon_sym_class, + ACTIONS(2180), 1, anon_sym_async, + ACTIONS(2184), 1, + anon_sym_static, + ACTIONS(2186), 1, + aux_sym_method_definition_token1, + ACTIONS(2188), 1, + anon_sym_get, + ACTIONS(2190), 1, + anon_sym_set, + STATE(977), 1, + aux_sym_export_statement_repeat1, + STATE(1017), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(888), 2, + anon_sym_let, sym_identifier, + ACTIONS(2182), 2, + sym_number, + sym_private_property_identifier, + STATE(1626), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [41013] = 16, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2062), 1, + anon_sym_LBRACK, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2068), 1, + anon_sym_SQUOTE, + ACTIONS(2192), 1, + anon_sym_STAR, + ACTIONS(2194), 1, + anon_sym_async, + ACTIONS(2198), 1, anon_sym_static, + ACTIONS(2200), 1, + aux_sym_method_definition_token1, + ACTIONS(2202), 1, anon_sym_get, + ACTIONS(2204), 1, anon_sym_set, - [41449] = 13, - ACTIONS(3), 1, + STATE(977), 1, + aux_sym_export_statement_repeat1, + STATE(1017), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(99), 1, - anon_sym_COMMA, - ACTIONS(848), 1, - anon_sym_RBRACE, - ACTIONS(874), 1, + ACTIONS(2196), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2054), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1137), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [41068] = 11, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2206), 1, + anon_sym_STAR, + ACTIONS(2210), 1, + anon_sym_get, + ACTIONS(2212), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2208), 2, + sym_number, + sym_private_property_identifier, + STATE(1587), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2146), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(888), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [41113] = 16, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2176), 1, + anon_sym_STAR, + ACTIONS(2180), 1, + anon_sym_async, + ACTIONS(2184), 1, + anon_sym_static, + ACTIONS(2186), 1, + aux_sym_method_definition_token1, + ACTIONS(2188), 1, + anon_sym_get, + ACTIONS(2190), 1, + anon_sym_set, + STATE(977), 1, + aux_sym_export_statement_repeat1, + STATE(1017), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2182), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(888), 3, + anon_sym_export, + anon_sym_let, + sym_identifier, + STATE(1626), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [41168] = 11, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2214), 1, + anon_sym_STAR, + ACTIONS(2218), 1, + anon_sym_get, + ACTIONS(2220), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2216), 2, + sym_number, + sym_private_property_identifier, + STATE(1569), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2146), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(888), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [41213] = 11, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2104), 1, + anon_sym_COMMA, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2059), 1, - anon_sym_EQ, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, - STATE(1301), 1, + ACTIONS(2172), 1, + anon_sym_RBRACE, + STATE(1390), 1, aux_sym_object_repeat1, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41498] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [41258] = 10, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(884), 1, - anon_sym_async, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, - anon_sym_STAR, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - ACTIONS(878), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(886), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2057), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2067), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(882), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1438), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [41546] = 12, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(876), 1, - anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_LBRACK, - ACTIONS(2053), 1, - anon_sym_STAR, - ACTIONS(2059), 1, - anon_sym_EQ, - ACTIONS(878), 2, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2067), 2, + ACTIONS(2169), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [41592] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + anon_sym_get, + anon_sym_set, + [41301] = 12, + ACTIONS(2062), 1, + anon_sym_LBRACK, + ACTIONS(2066), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(2068), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_LBRACK, - ACTIONS(2070), 1, + ACTIONS(2222), 1, anon_sym_STAR, - ACTIONS(2072), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2074), 2, + ACTIONS(2224), 1, + anon_sym_async, + ACTIONS(2228), 1, anon_sym_get, + ACTIONS(2230), 1, anon_sym_set, - STATE(1459), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2226), 2, + sym_number, + sym_private_property_identifier, + STATE(1132), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(2054), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - ACTIONS(2057), 4, + ACTIONS(2146), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [41633] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, + [41348] = 10, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1964), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2076), 1, + ACTIONS(2232), 1, anon_sym_STAR, - ACTIONS(2078), 1, - anon_sym_async, - ACTIONS(2082), 1, - anon_sym_get, - ACTIONS(2084), 1, - anon_sym_set, - ACTIONS(2080), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2234), 2, sym_number, sym_private_property_identifier, - ACTIONS(1958), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1088), 3, + ACTIONS(2236), 2, + anon_sym_get, + anon_sym_set, + STATE(1567), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2057), 4, + ACTIONS(2146), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [41678] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(876), 1, - anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_LBRACK, - ACTIONS(2086), 1, - anon_sym_STAR, - ACTIONS(2090), 1, - anon_sym_get, - ACTIONS(2092), 1, - anon_sym_set, - ACTIONS(2088), 2, - sym_number, - sym_private_property_identifier, - STATE(1497), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - ACTIONS(2057), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [41721] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [41391] = 10, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2094), 1, + ACTIONS(2156), 1, anon_sym_STAR, - ACTIONS(2096), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2238), 2, sym_number, sym_private_property_identifier, - ACTIONS(2098), 2, + ACTIONS(2240), 2, anon_sym_get, anon_sym_set, - STATE(1495), 3, + STATE(1531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - ACTIONS(2057), 4, + ACTIONS(2146), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [41762] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(876), 1, - anon_sym_SQUOTE, - ACTIONS(882), 1, - sym_identifier, - ACTIONS(2039), 1, - anon_sym_LBRACK, - ACTIONS(2100), 1, + ACTIONS(888), 5, anon_sym_export, - ACTIONS(2102), 1, - anon_sym_STAR, - ACTIONS(2104), 1, - anon_sym_class, - ACTIONS(2106), 1, + anon_sym_let, anon_sym_async, - ACTIONS(2110), 1, + sym_identifier, anon_sym_static, - ACTIONS(2112), 1, - anon_sym_get, - ACTIONS(2114), 1, - anon_sym_set, - STATE(959), 1, - aux_sym_export_statement_repeat1, - STATE(1007), 1, - sym_decorator, - ACTIONS(2108), 2, - sym_number, - sym_private_property_identifier, - STATE(1354), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [41817] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [41434] = 12, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2116), 2, + ACTIONS(2242), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - [41860] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [41481] = 11, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(884), 1, - anon_sym_async, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2053), 1, + ACTIONS(2144), 1, anon_sym_STAR, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(886), 2, + ACTIONS(892), 2, anon_sym_get, anon_sym_set, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2116), 2, + ACTIONS(2242), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(882), 3, - anon_sym_export, - sym_identifier, - anon_sym_static, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - [41905] = 10, - ACTIONS(3), 1, + ACTIONS(888), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [41526] = 4, + ACTIONS(2244), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(571), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(569), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, - ACTIONS(876), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_LBRACK, - ACTIONS(2059), 1, - anon_sym_EQ, - ACTIONS(878), 2, sym_number, sym_private_property_identifier, - ACTIONS(2057), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2067), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1438), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(882), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [41556] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2246), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [41946] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, + ACTIONS(2248), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, - ACTIONS(1296), 1, anon_sym_SQUOTE, - ACTIONS(1964), 1, - anon_sym_LBRACK, - ACTIONS(2070), 1, - anon_sym_STAR, - ACTIONS(2118), 1, - anon_sym_async, - ACTIONS(2120), 2, sym_number, sym_private_property_identifier, - ACTIONS(2122), 2, + anon_sym_AT, + aux_sym_method_definition_token1, + [41584] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2250), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1958), 3, + ACTIONS(2252), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41612] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2250), 7, anon_sym_export, + anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - STATE(1121), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2057), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_get, + anon_sym_set, + ACTIONS(2252), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_EQ, - [41989] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, - ACTIONS(876), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_LBRACK, - ACTIONS(2124), 1, - anon_sym_STAR, - ACTIONS(2128), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41640] = 6, + ACTIONS(2258), 1, + anon_sym_LPAREN, + ACTIONS(2260), 1, + anon_sym_DOT, + STATE(1019), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2254), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_get, - ACTIONS(2130), 1, anon_sym_set, - ACTIONS(2126), 2, + ACTIONS(2256), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(1515), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(882), 4, + anon_sym_AT, + aux_sym_method_definition_token1, + [41674] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2250), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - ACTIONS(2057), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_get, + anon_sym_set, + ACTIONS(2252), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_EQ, - [42032] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(1294), 1, + anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, - ACTIONS(1296), 1, anon_sym_SQUOTE, - ACTIONS(1964), 1, - anon_sym_LBRACK, - ACTIONS(2132), 1, - anon_sym_STAR, - ACTIONS(2134), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41702] = 4, + ACTIONS(2262), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(517), 7, + anon_sym_export, + anon_sym_let, anon_sym_async, - ACTIONS(2138), 1, + sym_identifier, anon_sym_static, - ACTIONS(2140), 1, anon_sym_get, - ACTIONS(2142), 1, anon_sym_set, - STATE(959), 1, - aux_sym_export_statement_repeat1, - STATE(1007), 1, - sym_decorator, - ACTIONS(1958), 2, - anon_sym_export, - sym_identifier, - ACTIONS(2136), 2, + ACTIONS(515), 11, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(1099), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [42082] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + anon_sym_AT, + aux_sym_method_definition_token1, + [41732] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2144), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2264), 2, sym_number, sym_private_property_identifier, - STATE(1498), 3, + STATE(1589), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2057), 4, + ACTIONS(2146), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42118] = 8, - ACTIONS(3), 1, + [41770] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(2266), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2268), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, - ACTIONS(876), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_LBRACK, - ACTIONS(2146), 2, sym_number, sym_private_property_identifier, - STATE(1516), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2057), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(882), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [41798] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2270), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42154] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(874), 1, + ACTIONS(2272), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, - ACTIONS(876), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_LBRACK, - ACTIONS(2102), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41826] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2274), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2276), 12, anon_sym_STAR, - ACTIONS(2106), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41854] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2278), 7, + anon_sym_export, + anon_sym_let, anon_sym_async, - ACTIONS(2110), 1, + sym_identifier, anon_sym_static, - ACTIONS(2112), 1, anon_sym_get, - ACTIONS(2114), 1, anon_sym_set, - STATE(959), 1, - aux_sym_export_statement_repeat1, - STATE(1007), 1, - sym_decorator, - ACTIONS(882), 2, + ACTIONS(2280), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41882] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2278), 7, anon_sym_export, + anon_sym_let, + anon_sym_async, sym_identifier, - ACTIONS(2108), 2, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2280), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(1354), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [42204] = 9, - ACTIONS(3), 1, + anon_sym_AT, + aux_sym_method_definition_token1, + [41910] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(2278), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2280), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [41938] = 9, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - ACTIONS(2057), 2, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2116), 2, + ACTIONS(2242), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(1438), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42242] = 8, - ACTIONS(3), 1, + [41978] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2278), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2280), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42006] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2278), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2280), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42034] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2278), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2280), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42062] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(2246), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2248), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42090] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2148), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2282), 2, sym_number, sym_private_property_identifier, - STATE(1517), 3, + STATE(1588), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2057), 4, + ACTIONS(2146), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(882), 6, + ACTIONS(888), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [42128] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2250), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42278] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + ACTIONS(2252), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, - ACTIONS(876), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_LBRACK, - ACTIONS(2072), 2, sym_number, sym_private_property_identifier, - STATE(1459), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2057), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(882), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [42156] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2246), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42314] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + ACTIONS(2248), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, - ACTIONS(876), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, - anon_sym_LBRACK, - ACTIONS(2150), 2, sym_number, sym_private_property_identifier, - STATE(1499), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2057), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(882), 6, + anon_sym_AT, + aux_sym_method_definition_token1, + [42184] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2284), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42350] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + ACTIONS(2286), 12, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_glimmer_opening_tag, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [42212] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2096), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2238), 2, sym_number, sym_private_property_identifier, - STATE(1495), 3, + STATE(1531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2057), 4, + ACTIONS(2146), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [42386] = 3, - ACTIONS(3), 1, + [42250] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2152), 6, + ACTIONS(2246), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2154), 11, + ACTIONS(2248), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42411] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42278] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 6, + ACTIONS(2246), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2158), 11, + ACTIONS(2248), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42436] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(822), 1, - anon_sym_var, - ACTIONS(836), 1, - anon_sym_class, - ACTIONS(838), 1, - anon_sym_async, - ACTIONS(840), 1, - anon_sym_function, - ACTIONS(2057), 1, - anon_sym_LPAREN, - ACTIONS(2160), 1, - anon_sym_default, - STATE(424), 1, - sym_declaration, - STATE(1007), 1, - sym_decorator, - STATE(1211), 1, - aux_sym_export_statement_repeat1, - ACTIONS(824), 2, - anon_sym_let, - anon_sym_const, - STATE(358), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [42481] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42306] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2162), 6, + ACTIONS(2250), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2164), 11, + ACTIONS(2252), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42506] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42334] = 8, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2234), 2, + sym_number, + sym_private_property_identifier, + STATE(1567), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2146), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(888), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [42372] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2162), 6, + ACTIONS(2246), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2164), 11, + ACTIONS(2248), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42531] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42400] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2162), 6, + ACTIONS(2246), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2164), 11, + ACTIONS(2248), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42556] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42428] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2152), 6, + ACTIONS(2250), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2154), 11, + ACTIONS(2252), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42581] = 6, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42456] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2170), 1, - anon_sym_LPAREN, - ACTIONS(2172), 1, - anon_sym_DOT, - STATE(993), 1, - sym_arguments, - ACTIONS(2166), 7, + ACTIONS(2246), 7, anon_sym_export, - anon_sym_class, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2168), 7, + ACTIONS(2248), 12, anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42612] = 4, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42484] = 8, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2174), 1, + ACTIONS(2288), 2, + sym_number, + sym_private_property_identifier, + STATE(1571), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2146), 4, sym__automatic_semicolon, - ACTIONS(525), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(523), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + [42522] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, + ACTIONS(880), 1, anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2290), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [42639] = 3, - ACTIONS(3), 1, + STATE(1572), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2146), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(888), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [42560] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2176), 6, + ACTIONS(2246), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2178), 11, + ACTIONS(2248), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42664] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42588] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2180), 6, + ACTIONS(2246), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2182), 11, + ACTIONS(2248), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42689] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42616] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2152), 6, + ACTIONS(2246), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2154), 11, + ACTIONS(2248), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42714] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42644] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2152), 6, + ACTIONS(2292), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2154), 11, + ACTIONS(2294), 12, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42739] = 4, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42672] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2184), 1, - sym__automatic_semicolon, - ACTIONS(653), 6, + ACTIONS(1431), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(651), 10, + ACTIONS(1433), 11, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42766] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42699] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 6, + ACTIONS(2296), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2158), 11, + ACTIONS(2298), 11, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42791] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42726] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 6, + ACTIONS(2300), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2158), 11, + ACTIONS(2302), 11, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42816] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42753] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2186), 6, + ACTIONS(2304), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2188), 11, + ACTIONS(2306), 11, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42841] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42780] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 6, + ACTIONS(2308), 9, anon_sym_export, + anon_sym_let, + anon_sym_DOT, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2158), 11, + ACTIONS(2310), 9, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42866] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42807] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2190), 6, + ACTIONS(1539), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2192), 11, + ACTIONS(1541), 11, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42891] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42834] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2152), 6, + ACTIONS(571), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2154), 11, + ACTIONS(569), 11, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42916] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42861] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 6, + ACTIONS(2312), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2158), 11, + ACTIONS(2314), 11, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42941] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42888] = 6, + ACTIONS(2320), 1, + anon_sym_AT, + STATE(977), 1, + aux_sym_export_statement_repeat1, + STATE(1017), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2194), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2196), 11, + ACTIONS(2318), 7, anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - [42966] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + ACTIONS(2316), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [42921] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 6, + ACTIONS(597), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2158), 11, + ACTIONS(595), 11, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [42991] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42948] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2156), 6, + ACTIONS(2323), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2158), 11, + ACTIONS(2325), 11, anon_sym_STAR, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [43016] = 3, - ACTIONS(3), 1, + aux_sym_method_definition_token1, + [42975] = 4, + ACTIONS(2327), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(585), 6, + ACTIONS(2323), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(583), 10, + ACTIONS(2325), 10, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + sym_glimmer_opening_tag, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [43040] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + aux_sym_method_definition_token1, + [43004] = 10, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_EQ_GT, - ACTIONS(2200), 2, + ACTIONS(2232), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2234), 2, sym_number, sym_private_property_identifier, - STATE(1422), 3, + ACTIONS(2236), 2, + anon_sym_get, + anon_sym_set, + STATE(1567), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, + [43044] = 11, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(2330), 1, + anon_sym_STAR, + ACTIONS(2334), 1, anon_sym_get, + ACTIONS(2336), 1, anon_sym_set, - [43076] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2206), 1, - anon_sym_SEMI, - ACTIONS(2202), 6, + ACTIONS(2332), 2, + sym_number, + sym_private_property_identifier, + STATE(1434), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2204), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + [43086] = 12, + ACTIONS(878), 1, anon_sym_DQUOTE, + ACTIONS(880), 1, anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(2338), 1, + anon_sym_STAR, + ACTIONS(2340), 1, + anon_sym_async, + ACTIONS(2344), 1, + anon_sym_get, + ACTIONS(2346), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2342), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [43102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2208), 8, + STATE(1498), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 4, anon_sym_export, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2210), 8, - anon_sym_STAR, - anon_sym_LPAREN, - anon_sym_LBRACK, + [43130] = 11, + ACTIONS(878), 1, anon_sym_DQUOTE, + ACTIONS(880), 1, anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(2348), 1, + anon_sym_STAR, + ACTIONS(2352), 1, + anon_sym_get, + ACTIONS(2354), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2350), 2, sym_number, sym_private_property_identifier, + STATE(1439), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [43172] = 13, + ACTIONS(93), 1, anon_sym_AT, - [43126] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(822), 1, + ACTIONS(828), 1, anon_sym_var, - ACTIONS(836), 1, + ACTIONS(842), 1, anon_sym_class, - ACTIONS(838), 1, + ACTIONS(844), 1, anon_sym_async, - ACTIONS(840), 1, + ACTIONS(846), 1, anon_sym_function, - ACTIONS(2160), 1, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(2356), 1, anon_sym_default, - STATE(424), 1, + STATE(374), 1, sym_declaration, - STATE(1007), 1, + STATE(1017), 1, sym_decorator, - STATE(1211), 1, + STATE(1251), 1, aux_sym_export_statement_repeat1, - ACTIONS(824), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(830), 2, anon_sym_let, anon_sym_const, - STATE(358), 5, + STATE(368), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [43168] = 11, - ACTIONS(3), 1, + [43218] = 9, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(2358), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(2360), 2, + sym_number, + sym_private_property_identifier, + STATE(1510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [43256] = 11, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2212), 1, + ACTIONS(2362), 1, anon_sym_STAR, - ACTIONS(2216), 1, + ACTIONS(2366), 1, anon_sym_get, - ACTIONS(2218), 1, + ACTIONS(2368), 1, anon_sym_set, - ACTIONS(2214), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2364), 2, sym_number, sym_private_property_identifier, - STATE(1447), 3, + STATE(1499), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 5, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [43208] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2224), 1, - anon_sym_AT, - STATE(959), 1, - aux_sym_export_statement_repeat1, - STATE(1007), 1, - sym_decorator, - ACTIONS(2222), 6, + [43298] = 10, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(2370), 1, anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2360), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2372), 2, + anon_sym_get, + anon_sym_set, + STATE(1510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [43338] = 11, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(2374), 1, + anon_sym_STAR, + ACTIONS(2378), 1, + anon_sym_get, + ACTIONS(2380), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2376), 2, + sym_number, + sym_private_property_identifier, + STATE(1591), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 5, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + [43380] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, + ACTIONS(880), 1, anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2382), 2, sym_number, sym_private_property_identifier, - ACTIONS(2220), 7, + STATE(1495), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, anon_sym_export, - anon_sym_class, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43238] = 3, - ACTIONS(3), 1, + [43415] = 8, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(653), 6, + ACTIONS(2384), 2, + sym_number, + sym_private_property_identifier, + STATE(1442), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(651), 10, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + [43450] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, + ACTIONS(880), 1, anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2386), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [43262] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(822), 1, - anon_sym_var, - ACTIONS(836), 1, - anon_sym_class, - ACTIONS(838), 1, - anon_sym_async, - ACTIONS(840), 1, - anon_sym_function, - ACTIONS(2227), 1, - anon_sym_default, - STATE(424), 1, - sym_declaration, - STATE(1007), 1, - sym_decorator, - STATE(1211), 1, - aux_sym_export_statement_repeat1, - ACTIONS(824), 2, + STATE(1438), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, + anon_sym_export, anon_sym_let, - anon_sym_const, - STATE(358), 5, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [43304] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [43485] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2229), 1, - anon_sym_STAR, - ACTIONS(2231), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2388), 2, + sym_number, + sym_private_property_identifier, + STATE(1437), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, + anon_sym_export, + anon_sym_let, anon_sym_async, - ACTIONS(2235), 1, + sym_identifier, + anon_sym_static, anon_sym_get, - ACTIONS(2237), 1, anon_sym_set, - ACTIONS(2233), 2, + [43520] = 8, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2390), 2, sym_number, sym_private_property_identifier, - ACTIONS(882), 3, + STATE(1433), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, + anon_sym_async, sym_identifier, anon_sym_static, - STATE(1448), 3, + anon_sym_get, + anon_sym_set, + [43555] = 8, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2360), 2, + sym_number, + sym_private_property_identifier, + STATE(1510), 3, sym_string, sym__property_name, sym_computed_property_name, - [43346] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + ACTIONS(888), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [43590] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2239), 1, - anon_sym_STAR, - ACTIONS(2243), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2392), 2, + sym_number, + sym_private_property_identifier, + STATE(1432), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, + anon_sym_export, + anon_sym_let, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_get, - ACTIONS(2245), 1, anon_sym_set, - ACTIONS(2241), 2, + [43625] = 8, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2394), 2, sym_number, sym_private_property_identifier, - STATE(1396), 3, + STATE(1592), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, - [43386] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + anon_sym_get, + anon_sym_set, + [43660] = 11, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, - anon_sym_LPAREN, - ACTIONS(2247), 1, + ACTIONS(2396), 1, anon_sym_STAR, - ACTIONS(2200), 2, + ACTIONS(2398), 1, + anon_sym_async, + ACTIONS(2402), 1, + anon_sym_get, + ACTIONS(2404), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2400), 2, sym_number, sym_private_property_identifier, - ACTIONS(2249), 2, - anon_sym_get, - anon_sym_set, - STATE(1422), 3, + STATE(1497), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 4, + ACTIONS(888), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - [43424] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [43701] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2096), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2406), 2, sym_number, sym_private_property_identifier, - STATE(1495), 3, + STATE(1496), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43457] = 3, - ACTIONS(3), 1, + [43736] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2251), 6, + ACTIONS(1535), 8, anon_sym_export, + anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2253), 9, + ACTIONS(1537), 8, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [43480] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + aux_sym_method_definition_token1, + [43761] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2255), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2408), 2, sym_number, sym_private_property_identifier, - STATE(1454), 3, + STATE(1593), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43513] = 8, - ACTIONS(3), 1, + [43796] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(2254), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2256), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [43821] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2257), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2410), 2, sym_number, sym_private_property_identifier, - STATE(1449), 3, + STATE(1601), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43546] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [43856] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2259), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2412), 2, sym_number, sym_private_property_identifier, - STATE(1538), 3, + STATE(1602), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43579] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [43891] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2200), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2414), 2, sym_number, sym_private_property_identifier, - STATE(1422), 3, + STATE(1446), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43612] = 3, - ACTIONS(3), 1, + [43926] = 8, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1443), 6, + ACTIONS(2416), 2, + sym_number, + sym_private_property_identifier, + STATE(1604), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1445), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [43635] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [43961] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2261), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2418), 2, sym_number, sym_private_property_identifier, - STATE(1399), 3, + STATE(1605), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43668] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2263), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43689] = 3, - ACTIONS(3), 1, + [43996] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1435), 6, + ACTIONS(1612), 8, anon_sym_export, + anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1437), 9, + ACTIONS(1614), 8, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [43712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2265), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43733] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + aux_sym_method_definition_token1, + [44021] = 10, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, - anon_sym_LPAREN, - ACTIONS(2267), 2, + ACTIONS(2156), 1, + anon_sym_STAR, + ACTIONS(2420), 1, + anon_sym_async, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2238), 2, sym_number, sym_private_property_identifier, - STATE(1540), 3, + ACTIONS(2240), 2, + anon_sym_get, + anon_sym_set, + STATE(1531), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [43766] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44060] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2269), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2422), 2, sym_number, sym_private_property_identifier, - STATE(1392), 3, + STATE(1449), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43799] = 8, - ACTIONS(3), 1, + [44095] = 12, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(828), 1, + anon_sym_var, + ACTIONS(842), 1, + anon_sym_class, + ACTIONS(844), 1, + anon_sym_async, + ACTIONS(846), 1, + anon_sym_function, + ACTIONS(2424), 1, + anon_sym_default, + STATE(374), 1, + sym_declaration, + STATE(1017), 1, + sym_decorator, + STATE(1251), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(830), 2, + anon_sym_let, + anon_sym_const, + STATE(368), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [44138] = 12, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(828), 1, + anon_sym_var, + ACTIONS(842), 1, + anon_sym_class, + ACTIONS(844), 1, + anon_sym_async, + ACTIONS(846), 1, + anon_sym_function, + ACTIONS(2356), 1, + anon_sym_default, + STATE(374), 1, + sym_declaration, + STATE(1017), 1, + sym_decorator, + STATE(1251), 1, + aux_sym_export_statement_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(830), 2, + anon_sym_let, + anon_sym_const, + STATE(368), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [44181] = 10, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(890), 1, + anon_sym_async, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, - anon_sym_LPAREN, - ACTIONS(2271), 2, + ACTIONS(2144), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - STATE(1510), 3, + ACTIONS(892), 2, + anon_sym_get, + anon_sym_set, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 4, anon_sym_export, - anon_sym_async, + anon_sym_let, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, - [43832] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2273), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43853] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44220] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2275), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2426), 2, sym_number, sym_private_property_identifier, - STATE(1524), 3, + STATE(1585), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43886] = 8, - ACTIONS(3), 1, + [44255] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(1616), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1618), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [44280] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2277), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2234), 2, sym_number, sym_private_property_identifier, - STATE(1523), 3, + STATE(1567), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43919] = 3, - ACTIONS(3), 1, + [44315] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2279), 6, + ACTIONS(2428), 8, anon_sym_export, + anon_sym_let, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2281), 9, + ACTIONS(2430), 8, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, anon_sym_AT, - [43942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2283), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [43963] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + aux_sym_method_definition_token1, + [44340] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2285), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2432), 2, sym_number, sym_private_property_identifier, - STATE(1400), 3, + STATE(1584), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [43996] = 8, - ACTIONS(3), 1, + [44375] = 3, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(2434), 8, + anon_sym_export, + anon_sym_let, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(2436), 8, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + aux_sym_method_definition_token1, + [44400] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2287), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2438), 2, sym_number, sym_private_property_identifier, - STATE(1388), 3, + STATE(1520), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44029] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44435] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2289), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2440), 2, sym_number, sym_private_property_identifier, - STATE(1513), 3, + STATE(1519), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44062] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44470] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2291), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2442), 2, sym_number, sym_private_property_identifier, - STATE(1352), 3, + STATE(1582), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44095] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2293), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [44116] = 3, - ACTIONS(3), 1, + [44505] = 8, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1455), 6, + ACTIONS(2444), 2, + sym_number, + sym_private_property_identifier, + STATE(1504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1457), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, + [44540] = 11, + ACTIONS(878), 1, anon_sym_DQUOTE, + ACTIONS(880), 1, anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(2446), 1, + anon_sym_STAR, + ACTIONS(2448), 1, + anon_sym_async, + ACTIONS(2452), 1, + anon_sym_get, + ACTIONS(2454), 1, + anon_sym_set, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2450), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [44139] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + STATE(1570), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 4, + anon_sym_export, + anon_sym_let, + sym_identifier, + anon_sym_static, + [44581] = 8, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2146), 1, anon_sym_LPAREN, - ACTIONS(2295), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2456), 2, sym_number, sym_private_property_identifier, - STATE(1393), 3, + STATE(1503), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44172] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44616] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(878), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2458), 2, sym_number, sym_private_property_identifier, - STATE(1438), 3, + STATE(1501), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44202] = 3, - ACTIONS(3), 1, + [44648] = 7, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1533), 7, + ACTIONS(2360), 2, + sym_number, + sym_private_property_identifier, + STATE(1510), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, anon_sym_export, - anon_sym_class, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1535), 7, - anon_sym_STAR, - anon_sym_LBRACK, + [44680] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, + ACTIONS(880), 1, anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2238), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [44224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2297), 7, + STATE(1531), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, anon_sym_export, - anon_sym_class, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2299), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [44246] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44712] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2301), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2442), 2, sym_number, sym_private_property_identifier, - STATE(1511), 3, + STATE(1582), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44276] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44744] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2303), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(884), 2, sym_number, sym_private_property_identifier, - STATE(1395), 3, + STATE(1622), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44306] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44776] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2200), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2460), 2, sym_number, sym_private_property_identifier, - STATE(1422), 3, + STATE(1590), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44336] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44808] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2287), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2462), 2, sym_number, sym_private_property_identifier, - STATE(1388), 3, + STATE(1600), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44366] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44840] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2305), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2464), 2, sym_number, sym_private_property_identifier, - STATE(1496), 3, + STATE(1440), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44396] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44872] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2307), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2466), 2, sym_number, sym_private_property_identifier, - STATE(1514), 3, + STATE(1603), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44426] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [44904] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2309), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2468), 2, sym_number, sym_private_property_identifier, - STATE(1522), 3, + STATE(1583), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44456] = 7, - ACTIONS(3), 1, + [44936] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(2470), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [44958] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2311), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2472), 2, sym_number, sym_private_property_identifier, - STATE(1537), 3, + STATE(1568), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44486] = 7, - ACTIONS(3), 1, + [44990] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(2474), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [45012] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2271), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2234), 2, sym_number, sym_private_property_identifier, - STATE(1510), 3, + STATE(1567), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44516] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [45044] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2096), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2476), 2, sym_number, sym_private_property_identifier, - STATE(1495), 3, + STATE(1586), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44546] = 3, - ACTIONS(3), 1, + [45076] = 7, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2166), 7, + ACTIONS(2478), 2, + sym_number, + sym_private_property_identifier, + STATE(1447), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, anon_sym_export, - anon_sym_class, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2168), 7, - anon_sym_STAR, - anon_sym_LBRACK, + [45108] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, + ACTIONS(880), 1, anon_sym_SQUOTE, + ACTIONS(2108), 1, + anon_sym_LBRACK, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2422), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - [44568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1351), 7, + STATE(1449), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(888), 7, anon_sym_export, - anon_sym_class, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1353), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [44590] = 7, - ACTIONS(3), 1, + [45140] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2480), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [45162] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(2482), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [45184] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2313), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2484), 2, sym_number, sym_private_property_identifier, - STATE(1446), 3, + STATE(1435), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [44620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2315), 7, + ACTIONS(888), 7, anon_sym_export, - anon_sym_class, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2317), 7, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [44642] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, + [45216] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2072), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2486), 2, sym_number, sym_private_property_identifier, - STATE(1459), 3, + STATE(1502), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, + ACTIONS(888), 7, anon_sym_export, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [44672] = 7, - ACTIONS(3), 1, + [45248] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(874), 1, + ACTIONS(2488), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [45270] = 7, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(876), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2039), 1, + ACTIONS(2108), 1, anon_sym_LBRACK, - ACTIONS(2319), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2490), 2, sym_number, sym_private_property_identifier, - STATE(1391), 3, + STATE(1518), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(882), 6, - anon_sym_export, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [44702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1585), 7, + ACTIONS(888), 7, anon_sym_export, - anon_sym_class, + anon_sym_let, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1587), 7, - anon_sym_STAR, - anon_sym_LBRACK, + [45302] = 11, + ACTIONS(2066), 1, anon_sym_DQUOTE, + ACTIONS(2068), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - [44724] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + ACTIONS(2492), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2494), 1, + anon_sym_STAR, + ACTIONS(2496), 1, anon_sym_LBRACE, - ACTIONS(2325), 1, - anon_sym_COLON, - ACTIONS(2327), 1, - anon_sym_GT, - ACTIONS(2329), 1, - anon_sym_SLASH, - ACTIONS(2331), 1, - sym_jsx_identifier, - ACTIONS(2333), 1, + ACTIONS(2500), 1, anon_sym_DOT, - STATE(1041), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, - sym_jsx_namespace_name, - STATE(1156), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44759] = 11, - ACTIONS(3), 1, + STATE(1263), 1, + sym_string, + STATE(1459), 1, + sym_import_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2321), 1, + STATE(1706), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(2498), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [45340] = 11, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2325), 1, + ACTIONS(2506), 1, anon_sym_COLON, - ACTIONS(2327), 1, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2333), 1, + ACTIONS(2512), 1, anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_SLASH, - STATE(1034), 1, + ACTIONS(2514), 1, + anon_sym_SLASH_GT, + STATE(1092), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, - sym_jsx_expression, - sym_jsx_attribute, - [44794] = 11, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2321), 1, - sym_identifier, - ACTIONS(2323), 1, - anon_sym_LBRACE, - ACTIONS(2325), 1, - anon_sym_COLON, - ACTIONS(2327), 1, - anon_sym_GT, - ACTIONS(2331), 1, - sym_jsx_identifier, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_SLASH, - STATE(1047), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, - sym_jsx_namespace_name, - STATE(1156), 2, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [44829] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [45376] = 11, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2325), 1, + ACTIONS(2506), 1, anon_sym_COLON, - ACTIONS(2327), 1, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2333), 1, + ACTIONS(2512), 1, anon_sym_DOT, - ACTIONS(2339), 1, - anon_sym_SLASH, - STATE(1051), 1, + ACTIONS(2516), 1, + anon_sym_SLASH_GT, + STATE(1081), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [44864] = 7, - ACTIONS(2341), 1, + [45412] = 8, + ACTIONS(2518), 1, anon_sym_LBRACE, - ACTIONS(2343), 1, + ACTIONS(2522), 1, anon_sym_LT, - ACTIONS(2345), 1, - sym_jsx_text, - ACTIONS(2347), 1, - sym_comment, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1148), 1, + ACTIONS(2524), 1, + anon_sym_LT_SLASH, + STATE(547), 1, sym_jsx_closing_element, - STATE(1055), 5, + STATE(1057), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2520), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1061), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44890] = 7, - ACTIONS(2341), 1, + [45442] = 8, + ACTIONS(2518), 1, anon_sym_LBRACE, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2349), 1, + ACTIONS(2522), 1, anon_sym_LT, - ACTIONS(2351), 1, - sym_jsx_text, - STATE(705), 1, + ACTIONS(2528), 1, + anon_sym_LT_SLASH, + STATE(690), 1, sym_jsx_closing_element, - STATE(1020), 1, + STATE(1057), 1, sym_jsx_opening_element, - STATE(1019), 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2526), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1069), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [44916] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, - sym_identifier, - ACTIONS(2323), 1, + [45472] = 8, + ACTIONS(2518), 1, anon_sym_LBRACE, - ACTIONS(2327), 1, - anon_sym_GT, - ACTIONS(2331), 1, - sym_jsx_identifier, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2335), 1, - anon_sym_SLASH, - STATE(1059), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, - sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(2522), 1, + anon_sym_LT, + ACTIONS(2530), 1, + anon_sym_LT_SLASH, + STATE(1057), 1, + sym_jsx_opening_element, + STATE(1206), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2526), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1069), 4, + sym_jsx_element, sym_jsx_expression, - sym_jsx_attribute, - [44948] = 10, - ACTIONS(3), 1, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [45502] = 8, + ACTIONS(2518), 1, + anon_sym_LBRACE, + ACTIONS(2522), 1, + anon_sym_LT, + ACTIONS(2532), 1, + anon_sym_LT_SLASH, + STATE(1057), 1, + sym_jsx_opening_element, + STATE(1155), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2321), 1, + ACTIONS(2526), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1069), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [45532] = 11, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2325), 1, + ACTIONS(2506), 1, anon_sym_COLON, - ACTIONS(2327), 1, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2335), 1, - anon_sym_SLASH, - STATE(1058), 1, + ACTIONS(2512), 1, + anon_sym_DOT, + ACTIONS(2534), 1, + anon_sym_SLASH_GT, + STATE(1087), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [44980] = 7, - ACTIONS(2341), 1, + [45568] = 8, + ACTIONS(2518), 1, anon_sym_LBRACE, - ACTIONS(2345), 1, - sym_jsx_text, - ACTIONS(2347), 1, + ACTIONS(2522), 1, + anon_sym_LT, + ACTIONS(2532), 1, + anon_sym_LT_SLASH, + STATE(1057), 1, + sym_jsx_opening_element, + STATE(1161), 1, + sym_jsx_closing_element, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2349), 1, + ACTIONS(2536), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1055), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [45598] = 8, + ACTIONS(2518), 1, + anon_sym_LBRACE, + ACTIONS(2522), 1, anon_sym_LT, - STATE(703), 1, + ACTIONS(2528), 1, + anon_sym_LT_SLASH, + STATE(781), 1, sym_jsx_closing_element, - STATE(1020), 1, + STATE(1057), 1, sym_jsx_opening_element, - STATE(1055), 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2538), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1053), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45006] = 7, - ACTIONS(2341), 1, + [45628] = 8, + ACTIONS(2518), 1, anon_sym_LBRACE, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2353), 1, + ACTIONS(2522), 1, anon_sym_LT, - ACTIONS(2355), 1, - sym_jsx_text, - STATE(1020), 1, + ACTIONS(2530), 1, + anon_sym_LT_SLASH, + STATE(1057), 1, sym_jsx_opening_element, - STATE(1305), 1, + STATE(1176), 1, sym_jsx_closing_element, - STATE(1031), 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2540), 2, + sym_jsx_text, + sym_html_character_reference, + STATE(1054), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45032] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [45658] = 11, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2327), 1, + ACTIONS(2506), 1, + anon_sym_COLON, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2329), 1, - anon_sym_SLASH, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2333), 1, + ACTIONS(2512), 1, anon_sym_DOT, - STATE(1042), 1, + ACTIONS(2542), 1, + anon_sym_SLASH_GT, + STATE(1076), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45064] = 7, - ACTIONS(2341), 1, + [45694] = 8, + ACTIONS(2518), 1, anon_sym_LBRACE, - ACTIONS(2343), 1, + ACTIONS(2522), 1, anon_sym_LT, - ACTIONS(2347), 1, + ACTIONS(2524), 1, + anon_sym_LT_SLASH, + STATE(554), 1, + sym_jsx_closing_element, + STATE(1057), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2357), 1, + ACTIONS(2526), 2, sym_jsx_text, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1160), 1, - sym_jsx_closing_element, - STATE(1015), 5, + sym_html_character_reference, + STATE(1069), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45090] = 10, - ACTIONS(3), 1, + [45724] = 10, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, + anon_sym_LBRACE, + ACTIONS(2508), 1, + anon_sym_GT, + ACTIONS(2510), 1, + sym_jsx_identifier, + ACTIONS(2512), 1, + anon_sym_DOT, + ACTIONS(2514), 1, + anon_sym_SLASH_GT, + STATE(1084), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1152), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2321), 1, + STATE(1157), 2, + sym_jsx_expression, + sym_jsx_attribute, + [45757] = 10, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2325), 1, + ACTIONS(2506), 1, anon_sym_COLON, - ACTIONS(2327), 1, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2329), 1, - anon_sym_SLASH, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - STATE(1040), 1, + ACTIONS(2542), 1, + anon_sym_SLASH_GT, + STATE(1075), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45122] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(876), 1, - anon_sym_SQUOTE, - ACTIONS(2323), 1, + [45790] = 10, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, - anon_sym_LT, - STATE(1022), 1, - sym_jsx_opening_element, - STATE(1144), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [45148] = 10, - ACTIONS(3), 1, + ACTIONS(2508), 1, + anon_sym_GT, + ACTIONS(2510), 1, + sym_jsx_identifier, + ACTIONS(2512), 1, + anon_sym_DOT, + ACTIONS(2542), 1, + anon_sym_SLASH_GT, + STATE(1078), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1152), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2321), 1, + STATE(1157), 2, + sym_jsx_expression, + sym_jsx_attribute, + [45823] = 10, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2325), 1, + ACTIONS(2506), 1, anon_sym_COLON, - ACTIONS(2327), 1, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2337), 1, - anon_sym_SLASH, - STATE(1033), 1, + ACTIONS(2534), 1, + anon_sym_SLASH_GT, + STATE(1088), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45180] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(874), 1, - anon_sym_DQUOTE, - ACTIONS(876), 1, - anon_sym_SQUOTE, - ACTIONS(2323), 1, + [45856] = 10, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2359), 1, - anon_sym_LT, - STATE(1022), 1, - sym_jsx_opening_element, - STATE(1143), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym_string, - [45206] = 10, - ACTIONS(3), 1, + ACTIONS(2506), 1, + anon_sym_COLON, + ACTIONS(2508), 1, + anon_sym_GT, + ACTIONS(2510), 1, + sym_jsx_identifier, + ACTIONS(2516), 1, + anon_sym_SLASH_GT, + STATE(1071), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1152), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2321), 1, + STATE(1157), 2, + sym_jsx_expression, + sym_jsx_attribute, + [45889] = 10, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2325), 1, + ACTIONS(2506), 1, anon_sym_COLON, - ACTIONS(2327), 1, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2339), 1, - anon_sym_SLASH, - STATE(1052), 1, + ACTIONS(2514), 1, + anon_sym_SLASH_GT, + STATE(1072), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45238] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [45922] = 10, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2327), 1, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2333), 1, + ACTIONS(2512), 1, anon_sym_DOT, - ACTIONS(2339), 1, - anon_sym_SLASH, - STATE(1050), 1, + ACTIONS(2516), 1, + anon_sym_SLASH_GT, + STATE(1089), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45270] = 7, - ACTIONS(2341), 1, + [45955] = 7, + ACTIONS(2544), 1, anon_sym_LBRACE, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2361), 1, + ACTIONS(2550), 1, anon_sym_LT, - ACTIONS(2363), 1, - sym_jsx_text, - STATE(534), 1, - sym_jsx_closing_element, - STATE(1020), 1, + ACTIONS(2553), 1, + anon_sym_LT_SLASH, + STATE(1057), 1, sym_jsx_opening_element, - STATE(1030), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [45296] = 7, - ACTIONS(2341), 1, - anon_sym_LBRACE, - ACTIONS(2345), 1, - sym_jsx_text, - ACTIONS(2347), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2361), 1, - anon_sym_LT, - STATE(536), 1, - sym_jsx_closing_element, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1055), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [45322] = 7, - ACTIONS(2341), 1, - anon_sym_LBRACE, - ACTIONS(2345), 1, + ACTIONS(2547), 2, sym_jsx_text, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2353), 1, - anon_sym_LT, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1296), 1, - sym_jsx_closing_element, - STATE(1055), 5, + sym_html_character_reference, + STATE(1069), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [45348] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [45982] = 10, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2327), 1, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2333), 1, + ACTIONS(2512), 1, anon_sym_DOT, - ACTIONS(2337), 1, - anon_sym_SLASH, - STATE(1046), 1, + ACTIONS(2534), 1, + anon_sym_SLASH_GT, + STATE(1085), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45380] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46015] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2365), 1, + ACTIONS(2555), 1, anon_sym_GT, - ACTIONS(2367), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2557), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45409] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46045] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2369), 1, + ACTIONS(2555), 1, anon_sym_GT, - ACTIONS(2371), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2559), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45438] = 6, - ACTIONS(2341), 1, - anon_sym_LBRACE, - ACTIONS(2345), 1, - sym_jsx_text, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2373), 1, - anon_sym_LT, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1055), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [45461] = 6, - ACTIONS(2341), 1, - anon_sym_LBRACE, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2375), 1, - anon_sym_LT, - ACTIONS(2377), 1, - sym_jsx_text, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1035), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [45484] = 6, - ACTIONS(2341), 1, - anon_sym_LBRACE, - ACTIONS(2345), 1, - sym_jsx_text, - ACTIONS(2347), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2379), 1, - anon_sym_LT, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1055), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1157), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [45507] = 6, - ACTIONS(2341), 1, + sym_jsx_attribute, + [46075] = 9, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2347), 1, + ACTIONS(2508), 1, + anon_sym_GT, + ACTIONS(2510), 1, + sym_jsx_identifier, + ACTIONS(2542), 1, + anon_sym_SLASH_GT, + STATE(1090), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1152), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2381), 1, - anon_sym_LT, - ACTIONS(2383), 1, - sym_jsx_text, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1037), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1157), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [45530] = 6, - ACTIONS(2341), 1, + sym_jsx_attribute, + [46105] = 9, + ACTIONS(2502), 1, + sym_identifier, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2345), 1, - sym_jsx_text, - ACTIONS(2347), 1, + ACTIONS(2510), 1, + sym_jsx_identifier, + ACTIONS(2561), 1, + anon_sym_GT, + ACTIONS(2563), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(1152), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2385), 1, - anon_sym_LT, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1055), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1157), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [45553] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + sym_jsx_attribute, + [46135] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2365), 1, + ACTIONS(2555), 1, anon_sym_GT, - ACTIONS(2387), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2565), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45582] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46165] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2369), 1, + ACTIONS(2567), 1, anon_sym_GT, - ACTIONS(2389), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2569), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45611] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46195] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, - sym_jsx_identifier, - ACTIONS(2391), 1, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2393), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2510), 1, + sym_jsx_identifier, + ACTIONS(2516), 1, + anon_sym_SLASH_GT, + STATE(1093), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45640] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46225] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2395), 1, + ACTIONS(2571), 1, anon_sym_GT, - ACTIONS(2397), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2573), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45669] = 6, - ACTIONS(2341), 1, + [46255] = 7, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2399), 1, + ACTIONS(2575), 1, anon_sym_LT, - ACTIONS(2401), 1, - sym_jsx_text, - STATE(1020), 1, + ACTIONS(2577), 1, + anon_sym_DQUOTE, + ACTIONS(2579), 1, + anon_sym_SQUOTE, + STATE(1059), 1, sym_jsx_opening_element, - STATE(1039), 5, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1203), 4, sym_jsx_element, - sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [45692] = 9, - ACTIONS(3), 1, + sym__jsx_string, + [46281] = 7, + ACTIONS(2504), 1, + anon_sym_LBRACE, + ACTIONS(2575), 1, + anon_sym_LT, + ACTIONS(2577), 1, + anon_sym_DQUOTE, + ACTIONS(2579), 1, + anon_sym_SQUOTE, + STATE(1059), 1, + sym_jsx_opening_element, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2321), 1, + STATE(1204), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [46307] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2395), 1, + ACTIONS(2567), 1, anon_sym_GT, - ACTIONS(2403), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2581), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45721] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46337] = 8, + ACTIONS(2583), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2586), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2591), 1, sym_jsx_identifier, - ACTIONS(2391), 1, - anon_sym_GT, - ACTIONS(2405), 1, - anon_sym_SLASH, - STATE(1054), 1, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45750] = 9, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2321), 1, - sym_identifier, - ACTIONS(2323), 1, - anon_sym_LBRACE, - ACTIONS(2331), 1, - sym_jsx_identifier, - ACTIONS(2369), 1, + ACTIONS(2589), 2, anon_sym_GT, - ACTIONS(2407), 1, - anon_sym_SLASH, - STATE(1054), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, - sym_jsx_namespace_name, - STATE(1156), 2, + anon_sym_SLASH_GT, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45779] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46365] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2327), 1, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2337), 1, - anon_sym_SLASH, - STATE(1045), 1, + ACTIONS(2514), 1, + anon_sym_SLASH_GT, + STATE(1086), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45808] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46395] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2395), 1, + ACTIONS(2571), 1, anon_sym_GT, - ACTIONS(2409), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2594), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45837] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46425] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2391), 1, + ACTIONS(2571), 1, anon_sym_GT, - ACTIONS(2411), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2596), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45866] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46455] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2369), 1, + ACTIONS(2561), 1, anon_sym_GT, - ACTIONS(2413), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2598), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45895] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46485] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2365), 1, + ACTIONS(2567), 1, anon_sym_GT, - ACTIONS(2415), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2600), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45924] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46515] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2327), 1, - anon_sym_GT, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2339), 1, - anon_sym_SLASH, - STATE(1049), 1, + ACTIONS(2555), 1, + anon_sym_GT, + ACTIONS(2602), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [45953] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2417), 1, + [46545] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2420), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2423), 1, - anon_sym_GT, - ACTIONS(2425), 1, - anon_sym_SLASH, - ACTIONS(2427), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - STATE(1054), 1, + ACTIONS(2571), 1, + anon_sym_GT, + ACTIONS(2604), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, - sym_jsx_expression, - sym_jsx_attribute, - [45982] = 6, - ACTIONS(2347), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2430), 1, - anon_sym_LBRACE, - ACTIONS(2433), 1, - anon_sym_LT, - ACTIONS(2436), 1, - sym_jsx_text, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1055), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1157), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [46005] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + sym_jsx_attribute, + [46575] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2395), 1, + ACTIONS(2561), 1, anon_sym_GT, - ACTIONS(2439), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2606), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, - sym_jsx_expression, - sym_jsx_attribute, - [46034] = 6, - ACTIONS(2341), 1, - anon_sym_LBRACE, - ACTIONS(2345), 1, - sym_jsx_text, - ACTIONS(2347), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2441), 1, - anon_sym_LT, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1055), 5, - sym_jsx_element, - sym_jsx_fragment, + STATE(1157), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [46057] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + sym_jsx_attribute, + [46605] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, - sym_jsx_identifier, - ACTIONS(2365), 1, + ACTIONS(2508), 1, anon_sym_GT, - ACTIONS(2443), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2510), 1, + sym_jsx_identifier, + ACTIONS(2534), 1, + anon_sym_SLASH_GT, + STATE(1074), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [46086] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46635] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2391), 1, + ACTIONS(2567), 1, anon_sym_GT, - ACTIONS(2445), 1, - anon_sym_SLASH, - STATE(1054), 1, + ACTIONS(2608), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [46115] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + [46665] = 9, + ACTIONS(2502), 1, sym_identifier, - ACTIONS(2323), 1, + ACTIONS(2504), 1, anon_sym_LBRACE, - ACTIONS(2327), 1, - anon_sym_GT, - ACTIONS(2331), 1, + ACTIONS(2510), 1, sym_jsx_identifier, - ACTIONS(2335), 1, - anon_sym_SLASH, - STATE(1056), 1, + ACTIONS(2561), 1, + anon_sym_GT, + ACTIONS(2610), 1, + anon_sym_SLASH_GT, + STATE(1082), 1, aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, + STATE(1152), 1, sym_jsx_namespace_name, - STATE(1156), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1157), 2, sym_jsx_expression, sym_jsx_attribute, - [46144] = 9, - ACTIONS(3), 1, + [46695] = 8, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2612), 1, + sym_identifier, + ACTIONS(2614), 1, + anon_sym_COMMA, + ACTIONS(2616), 1, + anon_sym_RBRACE, + STATE(1311), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2321), 1, + STATE(1662), 2, + sym__module_export_name, + sym_string, + [46722] = 8, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2618), 1, sym_identifier, - ACTIONS(2323), 1, - anon_sym_LBRACE, - ACTIONS(2327), 1, - anon_sym_GT, - ACTIONS(2329), 1, - anon_sym_SLASH, - ACTIONS(2331), 1, - sym_jsx_identifier, - STATE(1043), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(1107), 1, - sym_jsx_namespace_name, - STATE(1156), 2, - sym_jsx_expression, - sym_jsx_attribute, - [46173] = 6, - ACTIONS(2341), 1, - anon_sym_LBRACE, - ACTIONS(2347), 1, + ACTIONS(2620), 1, + anon_sym_COMMA, + ACTIONS(2622), 1, + anon_sym_RBRACE, + STATE(1310), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2447), 1, - anon_sym_LT, - ACTIONS(2449), 1, - sym_jsx_text, - STATE(1020), 1, - sym_jsx_opening_element, - STATE(1057), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [46196] = 2, - ACTIONS(3), 1, + STATE(1349), 2, + sym__module_export_name, + sym_string, + [46749] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2451), 7, + ACTIONS(2624), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -72665,103 +77335,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [46209] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, - anon_sym_LBRACE, - ACTIONS(2457), 1, - anon_sym_LBRACK, - STATE(1234), 1, - sym_variable_declarator, - STATE(1126), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46230] = 7, - ACTIONS(3), 1, + [46763] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(99), 1, + ACTIONS(2626), 7, anon_sym_COMMA, - ACTIONS(2059), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - ACTIONS(2065), 1, + anon_sym_RBRACK, + [46777] = 7, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2618), 1, + sym_identifier, + ACTIONS(2628), 1, anon_sym_RBRACE, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, - STATE(1337), 1, - aux_sym_object_repeat1, - ACTIONS(2057), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [46253] = 6, - ACTIONS(3), 1, + STATE(1458), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, - anon_sym_LBRACE, - ACTIONS(2457), 1, - anon_sym_LBRACK, - STATE(1235), 1, - sym_variable_declarator, - STATE(1126), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46274] = 7, - ACTIONS(3), 1, + STATE(1349), 2, + sym__module_export_name, + sym_string, + [46801] = 7, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2618), 1, + sym_identifier, + ACTIONS(2630), 1, + anon_sym_RBRACE, + STATE(1458), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(99), 1, + STATE(1349), 2, + sym__module_export_name, + sym_string, + [46825] = 7, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(820), 1, - anon_sym_RBRACE, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, + ACTIONS(2154), 1, + anon_sym_RBRACE, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(2057), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - [46297] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2455), 1, - anon_sym_LBRACE, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2459), 1, - sym_identifier, - STATE(1234), 1, - sym_variable_declarator, - STATE(1081), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46318] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(99), 1, + [46849] = 7, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(848), 1, - anon_sym_RBRACE, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, + ACTIONS(2150), 1, + anon_sym_RBRACE, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1301), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(2057), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - [46341] = 2, - ACTIONS(3), 1, + [46873] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2461), 7, + ACTIONS(2632), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -72769,126 +77427,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [46354] = 7, - ACTIONS(3), 1, + [46887] = 4, + ACTIONS(2634), 1, + anon_sym_COMMA, + STATE(1103), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(99), 1, + ACTIONS(1590), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [46905] = 7, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(2059), 1, - anon_sym_EQ, - ACTIONS(2063), 1, + ACTIONS(854), 1, anon_sym_RBRACE, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, + ACTIONS(2148), 1, + anon_sym_EQ, STATE(1301), 1, aux_sym_object_repeat1, - ACTIONS(2057), 2, + STATE(1302), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - [46377] = 6, - ACTIONS(3), 1, + [46929] = 5, + ACTIONS(2506), 1, + anon_sym_COLON, + ACTIONS(2637), 1, + sym_identifier, + ACTIONS(2641), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2455), 1, + ACTIONS(2639), 4, anon_sym_LBRACE, - ACTIONS(2457), 1, - anon_sym_LBRACK, - ACTIONS(2463), 1, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [46949] = 7, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2612), 1, sym_identifier, - STATE(1235), 1, - sym_variable_declarator, - STATE(1080), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46398] = 7, - ACTIONS(3), 1, + ACTIONS(2643), 1, + anon_sym_RBRACE, + STATE(1422), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(99), 1, + STATE(1662), 2, + sym__module_export_name, + sym_string, + [46973] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2645), 7, anon_sym_COMMA, - ACTIONS(846), 1, anon_sym_RBRACE, - ACTIONS(2059), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + anon_sym_RBRACK, + [46987] = 7, + ACTIONS(105), 1, + anon_sym_COMMA, + ACTIONS(852), 1, + anon_sym_RBRACE, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(2057), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - [46421] = 2, - ACTIONS(3), 1, + [47011] = 5, + ACTIONS(2651), 1, + anon_sym_EQ, + STATE(1202), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2465), 7, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(2649), 2, anon_sym_in, anon_sym_of, + ACTIONS(2647), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [47031] = 6, + ACTIONS(2653), 1, anon_sym_EQ, - anon_sym_RBRACK, - [46434] = 3, - ACTIONS(3), 1, + ACTIONS(2655), 1, + sym__automatic_semicolon, + STATE(1314), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1553), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1555), 5, + ACTIONS(2647), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(2649), 2, + anon_sym_in, + anon_sym_of, + [47053] = 6, + ACTIONS(942), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_GT, - sym_jsx_identifier, - [46449] = 5, - ACTIONS(3), 1, + ACTIONS(944), 1, + anon_sym_LBRACK, + ACTIONS(2658), 1, + sym_identifier, + STATE(1259), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2325), 1, - anon_sym_COLON, - ACTIONS(2471), 1, - anon_sym_EQ, - ACTIONS(2467), 2, - anon_sym_SLASH, + STATE(1110), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [47075] = 6, + ACTIONS(942), 1, + anon_sym_LBRACE, + ACTIONS(944), 1, + anon_sym_LBRACK, + ACTIONS(2660), 1, sym_identifier, - ACTIONS(2469), 3, + STATE(1260), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1109), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [47097] = 6, + ACTIONS(942), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [46468] = 7, - ACTIONS(3), 1, + ACTIONS(944), 1, + anon_sym_LBRACK, + ACTIONS(2662), 1, + sym_identifier, + STATE(1366), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(99), 1, + STATE(1188), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [47119] = 7, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(2055), 1, - anon_sym_RBRACE, - ACTIONS(2059), 1, + ACTIONS(2148), 1, anon_sym_EQ, - STATE(1267), 1, + ACTIONS(2152), 1, + anon_sym_RBRACE, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(2057), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - [46491] = 7, - ACTIONS(3), 1, + [47143] = 7, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2612), 1, + sym_identifier, + ACTIONS(2664), 1, + anon_sym_RBRACE, + STATE(1422), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(99), 1, + STATE(1662), 2, + sym__module_export_name, + sym_string, + [47167] = 7, + ACTIONS(105), 1, anon_sym_COMMA, - ACTIONS(2059), 1, - anon_sym_EQ, - ACTIONS(2061), 1, + ACTIONS(826), 1, anon_sym_RBRACE, - STATE(1267), 1, + ACTIONS(2148), 1, + anon_sym_EQ, + STATE(1302), 1, aux_sym_object_pattern_repeat1, - STATE(1337), 1, + STATE(1378), 1, aux_sym_object_repeat1, - ACTIONS(2057), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2146), 2, anon_sym_LPAREN, anon_sym_COLON, - [46514] = 2, - ACTIONS(3), 1, + [47191] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2473), 7, + ACTIONS(2666), 7, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -72896,7729 +77661,8853 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_EQ, anon_sym_RBRACK, - [46527] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2479), 1, - anon_sym_EQ, - STATE(1261), 1, - sym__initializer, - ACTIONS(2477), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2475), 3, - sym__automatic_semicolon, + [47205] = 4, + ACTIONS(1734), 1, anon_sym_COMMA, - anon_sym_SEMI, - [46546] = 5, - ACTIONS(3), 1, + STATE(1103), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2481), 1, - anon_sym_EQ, - STATE(1146), 1, - sym__initializer, - ACTIONS(2477), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(2475), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(2668), 5, + anon_sym_RBRACE, anon_sym_SEMI, - [46565] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2453), 1, - sym_identifier, - ACTIONS(2455), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [47223] = 6, + ACTIONS(942), 1, anon_sym_LBRACE, - ACTIONS(2457), 1, + ACTIONS(944), 1, anon_sym_LBRACK, - STATE(1243), 1, + ACTIONS(2662), 1, + sym_identifier, + STATE(1266), 1, sym_variable_declarator, - STATE(1126), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1188), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [46586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1577), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1579), 5, + [47245] = 6, + ACTIONS(942), 1, anon_sym_LBRACE, + ACTIONS(944), 1, + anon_sym_LBRACK, + ACTIONS(2662), 1, + sym_identifier, + STATE(1264), 1, + sym_variable_declarator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1188), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [47267] = 6, + ACTIONS(407), 1, + anon_sym_BQUOTE, + ACTIONS(1349), 1, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_GT, - sym_jsx_identifier, - [46601] = 2, - ACTIONS(3), 1, + ACTIONS(1353), 1, + anon_sym_DOT, + ACTIONS(2670), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(553), 2, + sym_template_string, + sym_arguments, + [47288] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2483), 7, + ACTIONS(1768), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_in, anon_sym_of, anon_sym_EQ, - anon_sym_RBRACK, - [46614] = 2, - ACTIONS(3), 1, + [47301] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1718), 6, + ACTIONS(1776), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_in, anon_sym_of, + anon_sym_EQ, + [47314] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1754), 6, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - [46626] = 7, - ACTIONS(3), 1, + [47327] = 5, + ACTIONS(2674), 1, + anon_sym_BQUOTE, + ACTIONS(2676), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2672), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1149), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [47346] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2666), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [47359] = 6, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2612), 1, sym_identifier, - ACTIONS(2487), 1, - anon_sym_GT, - ACTIONS(2489), 1, - anon_sym_SLASH, - ACTIONS(2491), 1, - sym_jsx_identifier, - STATE(1028), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_jsx_namespace_name, - [46648] = 5, - ACTIONS(3), 1, + STATE(1422), 1, + sym_import_specifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2493), 1, - anon_sym_default, - ACTIONS(2496), 1, - anon_sym_RBRACE, - ACTIONS(2498), 1, - anon_sym_case, - STATE(1087), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [46666] = 6, - ACTIONS(3), 1, + STATE(1662), 2, + sym__module_export_name, + sym_string, + [47380] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2479), 1, - anon_sym_EQ, - ACTIONS(2501), 1, + ACTIONS(1594), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, anon_sym_LPAREN, - STATE(1528), 1, - sym_formal_parameters, - STATE(1551), 1, - sym__initializer, - ACTIONS(2503), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46686] = 7, - ACTIONS(3), 1, + anon_sym_COLON, + [47393] = 5, + ACTIONS(2676), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2680), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2485), 1, - sym_identifier, - ACTIONS(2487), 1, - anon_sym_GT, - ACTIONS(2491), 1, - sym_jsx_identifier, - ACTIONS(2505), 1, - anon_sym_SLASH, - STATE(1028), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_jsx_namespace_name, - [46708] = 7, - ACTIONS(3), 1, + ACTIONS(2678), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1146), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [47412] = 6, + ACTIONS(83), 1, + anon_sym_BQUOTE, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(1624), 1, + anon_sym_DOT, + ACTIONS(2682), 1, + sym_optional_chain, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2485), 1, + STATE(741), 2, + sym_template_string, + sym_arguments, + [47433] = 6, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2618), 1, sym_identifier, - ACTIONS(2487), 1, - anon_sym_GT, - ACTIONS(2491), 1, - sym_jsx_identifier, - ACTIONS(2507), 1, - anon_sym_SLASH, - STATE(1028), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_jsx_namespace_name, - [46730] = 6, - ACTIONS(3), 1, + STATE(1458), 1, + sym_export_specifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2479), 1, + STATE(1349), 2, + sym__module_export_name, + sym_string, + [47454] = 6, + ACTIONS(2653), 1, anon_sym_EQ, - ACTIONS(2501), 1, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1356), 1, - sym_formal_parameters, - STATE(1550), 1, + STATE(1552), 1, sym__initializer, - ACTIONS(2509), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [46750] = 2, - ACTIONS(3), 1, + STATE(1556), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2473), 6, + ACTIONS(2686), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_EQ, - [46762] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2511), 1, + [47475] = 5, + ACTIONS(2688), 1, anon_sym_default, - ACTIONS(2513), 1, + ACTIONS(2691), 1, anon_sym_RBRACE, - ACTIONS(2515), 1, + ACTIONS(2693), 1, anon_sym_case, - STATE(1087), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1133), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [46780] = 2, - ACTIONS(3), 1, + [47494] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2483), 6, + ACTIONS(2624), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_in, anon_sym_of, + anon_sym_EQ, + [47507] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2632), 6, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_in, + anon_sym_of, anon_sym_EQ, - [46792] = 2, - ACTIONS(3), 1, + [47520] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1711), 6, + ACTIONS(2626), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_in, anon_sym_of, + anon_sym_EQ, + [47533] = 6, + ACTIONS(2653), 1, + anon_sym_EQ, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1403), 1, + sym__initializer, + STATE(1491), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2696), 2, + sym__automatic_semicolon, anon_sym_SEMI, + [47554] = 6, + ACTIONS(2653), 1, anon_sym_EQ, - [46804] = 5, - ACTIONS(3), 1, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1404), 1, + sym__initializer, + STATE(1490), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2698), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [47575] = 3, + ACTIONS(2700), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2702), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + [47590] = 3, + ACTIONS(2704), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1873), 1, + ACTIONS(2706), 5, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [47605] = 5, + ACTIONS(1938), 1, anon_sym_LBRACE, - ACTIONS(2517), 1, + ACTIONS(2708), 1, sym_identifier, - ACTIONS(2519), 1, + ACTIONS(2710), 1, anon_sym_LBRACK, - STATE(1200), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1748), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [46822] = 5, - ACTIONS(3), 1, + [47624] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1610), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_LPAREN, + anon_sym_COLON, + [47637] = 5, + ACTIONS(942), 1, + anon_sym_LBRACE, + ACTIONS(944), 1, + anon_sym_LBRACK, + ACTIONS(2712), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1873), 1, + STATE(1388), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [47656] = 5, + ACTIONS(1938), 1, anon_sym_LBRACE, - ACTIONS(2519), 1, + ACTIONS(2710), 1, anon_sym_LBRACK, - ACTIONS(2521), 1, + ACTIONS(2714), 1, sym_identifier, - STATE(1436), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1222), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [46840] = 7, - ACTIONS(3), 1, + [47675] = 5, + ACTIONS(2716), 1, + anon_sym_default, + ACTIONS(2718), 1, + anon_sym_RBRACE, + ACTIONS(2720), 1, + anon_sym_case, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2485), 1, - sym_identifier, - ACTIONS(2487), 1, - anon_sym_GT, - ACTIONS(2491), 1, - sym_jsx_identifier, - ACTIONS(2523), 1, - anon_sym_SLASH, - STATE(1028), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_jsx_namespace_name, - [46862] = 6, - ACTIONS(3), 1, + STATE(1147), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [47694] = 5, + ACTIONS(2676), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2722), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2479), 1, + ACTIONS(2672), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1149), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [47713] = 5, + ACTIONS(2716), 1, + anon_sym_default, + ACTIONS(2720), 1, + anon_sym_case, + ACTIONS(2724), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1133), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [47732] = 6, + ACTIONS(2653), 1, anon_sym_EQ, - ACTIONS(2501), 1, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1455), 1, + STATE(1419), 1, sym_formal_parameters, - STATE(1476), 1, + STATE(1467), 1, sym__initializer, - ACTIONS(2525), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2726), 2, sym__automatic_semicolon, anon_sym_SEMI, - [46882] = 2, - ACTIONS(3), 1, + [47753] = 5, + ACTIONS(2731), 1, + anon_sym_BQUOTE, + ACTIONS(2733), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2728), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1149), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [47772] = 5, + ACTIONS(2676), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2738), 1, + anon_sym_BQUOTE, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2736), 2, + sym__template_chars, + sym_escape_sequence, + STATE(1125), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [47791] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1693), 6, + ACTIONS(2645), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_in, anon_sym_of, - anon_sym_SEMI, anon_sym_EQ, - [46894] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2485), 1, + [47804] = 4, + ACTIONS(2740), 1, sym_identifier, - ACTIONS(2487), 1, + ACTIONS(2744), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2742), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2527), 1, - anon_sym_SLASH, - STATE(1028), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_jsx_namespace_name, - [46916] = 7, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [47821] = 4, + ACTIONS(2148), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2146), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2169), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [47837] = 3, + ACTIONS(2746), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1320), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47851] = 3, + ACTIONS(1511), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1513), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [47865] = 3, + ACTIONS(1496), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2485), 1, + ACTIONS(1498), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [47879] = 3, + ACTIONS(2749), 1, sym_identifier, - ACTIONS(2487), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2751), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2529), 1, - anon_sym_SLASH, - STATE(1028), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_jsx_namespace_name, - [46938] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [47893] = 3, + ACTIONS(1427), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1873), 1, + ACTIONS(1429), 4, + sym_jsx_text, anon_sym_LBRACE, - ACTIONS(2519), 1, - anon_sym_LBRACK, - ACTIONS(2531), 1, - sym_identifier, - STATE(1594), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [46956] = 5, - ACTIONS(3), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [47907] = 3, + ACTIONS(2753), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2535), 1, - anon_sym_BQUOTE, - ACTIONS(2537), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2533), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1115), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [46974] = 7, - ACTIONS(3), 1, + ACTIONS(1316), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [47921] = 3, + ACTIONS(2757), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2755), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [47935] = 3, + ACTIONS(1488), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2485), 1, + ACTIONS(1490), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [47949] = 5, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2759), 1, sym_identifier, - ACTIONS(2487), 1, - anon_sym_GT, - ACTIONS(2491), 1, - sym_jsx_identifier, - ACTIONS(2539), 1, - anon_sym_SLASH, - STATE(1028), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_jsx_namespace_name, - [46996] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2541), 2, - anon_sym_SLASH, + STATE(1692), 2, + sym__module_export_name, + sym_string, + [47967] = 6, + ACTIONS(2761), 1, sym_identifier, - ACTIONS(2543), 4, + ACTIONS(2763), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - sym_jsx_identifier, - [47010] = 4, - ACTIONS(3), 1, + ACTIONS(2765), 1, + anon_sym_extends, + STATE(707), 1, + sym_class_body, + STATE(1522), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2549), 1, - anon_sym_EQ, - ACTIONS(2545), 2, - anon_sym_SLASH, + [47987] = 6, + ACTIONS(2763), 1, + anon_sym_LBRACE, + ACTIONS(2765), 1, + anon_sym_extends, + ACTIONS(2767), 1, + sym_identifier, + STATE(707), 1, + sym_class_body, + STATE(1522), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48007] = 5, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2769), 1, sym_identifier, - ACTIONS(2547), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + STATE(1457), 2, + sym__module_export_name, + sym_string, + [48025] = 3, + ACTIONS(2773), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2771), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [47026] = 7, - ACTIONS(3), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48039] = 3, + ACTIONS(2775), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2485), 1, + ACTIONS(1320), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [48053] = 6, + ACTIONS(2778), 1, sym_identifier, - ACTIONS(2487), 1, + ACTIONS(2780), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2782), 1, sym_jsx_identifier, - ACTIONS(2551), 1, - anon_sym_SLASH, - STATE(1028), 1, + STATE(1525), 1, sym_nested_identifier, - STATE(1053), 1, + STATE(1691), 1, sym_jsx_namespace_name, - [47048] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2553), 2, - anon_sym_SLASH, + [48073] = 6, + ACTIONS(1620), 1, + anon_sym_LPAREN, + ACTIONS(2784), 1, sym_identifier, - ACTIONS(2555), 4, + ACTIONS(2786), 1, + anon_sym_LBRACK, + ACTIONS(2788), 1, + sym_private_property_identifier, + STATE(717), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48093] = 6, + ACTIONS(2763), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - [47062] = 7, - ACTIONS(3), 1, + ACTIONS(2765), 1, + anon_sym_extends, + ACTIONS(2790), 1, + sym_identifier, + STATE(720), 1, + sym_class_body, + STATE(1562), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2485), 1, + [48113] = 6, + ACTIONS(2792), 1, sym_identifier, - ACTIONS(2487), 1, + ACTIONS(2794), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2796), 1, sym_jsx_identifier, - ACTIONS(2557), 1, - anon_sym_SLASH, - STATE(1028), 1, + STATE(1064), 1, sym_nested_identifier, - STATE(1053), 1, + STATE(1073), 1, sym_jsx_namespace_name, - [47084] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2451), 6, - sym__automatic_semicolon, + [48133] = 6, + ACTIONS(2120), 1, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(2146), 1, + anon_sym_COLON, + ACTIONS(2148), 1, anon_sym_EQ, - [47096] = 7, - ACTIONS(3), 1, + ACTIONS(2798), 1, + anon_sym_RBRACE, + STATE(1376), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48153] = 3, + ACTIONS(2802), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2800), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48167] = 6, + ACTIONS(2765), 1, + anon_sym_extends, + ACTIONS(2804), 1, + sym_identifier, + ACTIONS(2806), 1, + anon_sym_LBRACE, + STATE(516), 1, + sym_class_body, + STATE(1479), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2485), 1, + [48187] = 6, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2808), 1, + anon_sym_export, + ACTIONS(2810), 1, + anon_sym_class, + STATE(977), 1, + aux_sym_export_statement_repeat1, + STATE(1017), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48207] = 3, + ACTIONS(1488), 1, sym_identifier, - ACTIONS(2487), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1490), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2559), 1, - anon_sym_SLASH, - STATE(1028), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_jsx_namespace_name, - [47118] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2485), 1, + anon_sym_SLASH_GT, + [48221] = 3, + ACTIONS(2812), 1, sym_identifier, - ACTIONS(2487), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2814), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2561), 1, - anon_sym_SLASH, - STATE(1028), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_jsx_namespace_name, - [47140] = 5, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [48235] = 3, + ACTIONS(1570), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2537), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2565), 1, - anon_sym_BQUOTE, - ACTIONS(2563), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1120), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [47158] = 5, - ACTIONS(3), 1, + ACTIONS(1572), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48249] = 3, + ACTIONS(2818), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2537), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2569), 1, - anon_sym_BQUOTE, - ACTIONS(2567), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1117), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [47176] = 5, - ACTIONS(3), 1, + ACTIONS(2816), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48263] = 3, + ACTIONS(1570), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2511), 1, - anon_sym_default, - ACTIONS(2515), 1, - anon_sym_case, - ACTIONS(2571), 1, - anon_sym_RBRACE, - STATE(1093), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [47194] = 5, - ACTIONS(3), 1, + ACTIONS(1572), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48277] = 3, + ACTIONS(2818), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2576), 1, - anon_sym_BQUOTE, - ACTIONS(2578), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2573), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1117), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [47212] = 2, - ACTIONS(3), 1, + ACTIONS(2816), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48291] = 3, + ACTIONS(2818), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2461), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_EQ, - [47224] = 7, - ACTIONS(3), 1, + ACTIONS(2816), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48305] = 3, + ACTIONS(2818), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2816), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48319] = 3, + ACTIONS(1600), 1, sym_identifier, - ACTIONS(2487), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1602), 4, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2491), 1, sym_jsx_identifier, - ACTIONS(2581), 1, - anon_sym_SLASH, - STATE(1028), 1, - sym_nested_identifier, - STATE(1053), 1, - sym_jsx_namespace_name, - [47246] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2537), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2583), 1, - anon_sym_BQUOTE, - ACTIONS(2567), 2, - sym__template_chars, - sym_escape_sequence, - STATE(1117), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [47264] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [48333] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2479), 1, + ACTIONS(1320), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_EQ, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1451), 1, - sym_formal_parameters, - STATE(1468), 1, - sym__initializer, - ACTIONS(2585), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [47284] = 2, - ACTIONS(3), 1, + anon_sym_RBRACK, + [48345] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2465), 6, + ACTIONS(1594), 5, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_with, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [47296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1523), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1525), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [47309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2587), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2589), 3, + [48357] = 6, + ACTIONS(2765), 1, + anon_sym_extends, + ACTIONS(2806), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [47322] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1395), 1, - anon_sym_LPAREN, - ACTIONS(2591), 1, + ACTIONS(2820), 1, sym_identifier, - ACTIONS(2593), 1, - anon_sym_LBRACK, - ACTIONS(2595), 1, - sym_private_property_identifier, - STATE(708), 1, - sym_arguments, - [47341] = 4, - ACTIONS(3), 1, + STATE(565), 1, + sym_class_body, + STATE(1523), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2479), 1, + [48377] = 4, + ACTIONS(2653), 1, anon_sym_EQ, - STATE(1261), 1, + STATE(1314), 1, sym__initializer, - ACTIONS(2475), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2647), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [47356] = 6, - ACTIONS(3), 1, + [48393] = 3, + ACTIONS(1570), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2597), 1, - sym_identifier, - ACTIONS(2599), 1, + ACTIONS(1572), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48407] = 6, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(2601), 1, + ACTIONS(2765), 1, anon_sym_extends, - STATE(565), 1, + ACTIONS(2822), 1, + sym_identifier, + STATE(720), 1, sym_class_body, - STATE(1372), 1, + STATE(1562), 1, sym_class_heritage, - [47375] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1302), 1, - anon_sym_LPAREN, - ACTIONS(2603), 1, + [48427] = 6, + ACTIONS(2824), 1, sym_identifier, - ACTIONS(2605), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - sym_private_property_identifier, - STATE(541), 1, - sym_arguments, - [47394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2609), 1, - anon_sym_EQ, - ACTIONS(1272), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47407] = 2, - ACTIONS(3), 1, + ACTIONS(2826), 1, + anon_sym_GT, + ACTIONS(2828), 1, + sym_jsx_identifier, + STATE(1470), 1, + sym_nested_identifier, + STATE(1702), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1272), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_RBRACK, - [47418] = 6, - ACTIONS(3), 1, + [48447] = 3, + ACTIONS(2812), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2601), 1, - anon_sym_extends, - ACTIONS(2612), 1, - sym_identifier, - ACTIONS(2614), 1, + ACTIONS(2814), 4, + sym_jsx_text, anon_sym_LBRACE, - STATE(698), 1, - sym_class_body, - STATE(1403), 1, - sym_class_heritage, - [47437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1541), 2, - anon_sym_SLASH, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48461] = 3, + ACTIONS(1570), 1, sym_identifier, - ACTIONS(1543), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1572), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [47450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1537), 2, - anon_sym_SLASH, + anon_sym_SLASH_GT, + [48475] = 3, + ACTIONS(1570), 1, sym_identifier, - ACTIONS(1539), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1572), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [47463] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(2057), 1, - anon_sym_COLON, - ACTIONS(2059), 1, - anon_sym_EQ, - ACTIONS(2616), 1, - anon_sym_RBRACE, - STATE(1336), 1, - aux_sym_object_pattern_repeat1, - [47482] = 3, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [48489] = 6, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2830), 1, + anon_sym_export, + ACTIONS(2832), 1, + anon_sym_class, + STATE(977), 1, + aux_sym_export_statement_repeat1, + STATE(1017), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1523), 2, - anon_sym_SLASH, + [48509] = 3, + ACTIONS(1570), 1, sym_identifier, - ACTIONS(1525), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1572), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [47495] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [48523] = 3, + ACTIONS(2773), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2618), 1, + ACTIONS(2771), 4, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + [48537] = 6, + ACTIONS(2834), 1, sym_identifier, - ACTIONS(2620), 1, + ACTIONS(2836), 1, anon_sym_GT, - ACTIONS(2622), 1, + ACTIONS(2838), 1, sym_jsx_identifier, - STATE(1017), 1, + STATE(1444), 1, sym_nested_identifier, - STATE(1060), 1, + STATE(1714), 1, sym_jsx_namespace_name, - [47514] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2624), 1, - anon_sym_export, - ACTIONS(2626), 1, - anon_sym_class, - STATE(959), 1, - aux_sym_export_statement_repeat1, - STATE(1007), 1, - sym_decorator, - [47533] = 6, - ACTIONS(3), 1, + [48557] = 5, + ACTIONS(2104), 1, + anon_sym_COMMA, + ACTIONS(2172), 1, + anon_sym_RBRACE, + STATE(1390), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2601), 1, - anon_sym_extends, - ACTIONS(2614), 1, + ACTIONS(2146), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [48575] = 6, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(2628), 1, + ACTIONS(2765), 1, + anon_sym_extends, + ACTIONS(2840), 1, sym_identifier, - STATE(684), 1, + STATE(707), 1, sym_class_body, - STATE(1441), 1, + STATE(1522), 1, sym_class_heritage, - [47552] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1523), 2, - anon_sym_SLASH, + [48595] = 3, + ACTIONS(1570), 1, sym_identifier, - ACTIONS(1525), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1572), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [47565] = 3, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [48609] = 4, + ACTIONS(2844), 1, + anon_sym_in, + ACTIONS(2846), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1523), 2, - anon_sym_SLASH, + ACTIONS(2842), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [48625] = 3, + ACTIONS(2848), 1, sym_identifier, - ACTIONS(1525), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2850), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [47578] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2630), 2, - anon_sym_SLASH, + anon_sym_SLASH_GT, + [48639] = 3, + ACTIONS(2852), 1, sym_identifier, - ACTIONS(2632), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2854), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [47591] = 3, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [48653] = 3, + ACTIONS(1600), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1497), 2, - anon_sym_SLASH, + ACTIONS(1602), 4, + sym_jsx_text, + anon_sym_LBRACE, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48667] = 3, + ACTIONS(1511), 1, sym_identifier, - ACTIONS(1499), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1513), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [47604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2634), 2, - anon_sym_SLASH, + anon_sym_SLASH_GT, + [48681] = 3, + ACTIONS(1496), 1, sym_identifier, - ACTIONS(2636), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1498), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [47617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2638), 2, - anon_sym_SLASH, + anon_sym_SLASH_GT, + [48695] = 3, + ACTIONS(2856), 1, sym_identifier, - ACTIONS(2640), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2858), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [47630] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2642), 1, - anon_sym_export, - ACTIONS(2644), 1, - anon_sym_class, - STATE(959), 1, - aux_sym_export_statement_repeat1, - STATE(1007), 1, - sym_decorator, - [47649] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2648), 1, - anon_sym_in, - ACTIONS(2650), 1, - anon_sym_of, - ACTIONS(2646), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [47664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1513), 2, - anon_sym_SLASH, + anon_sym_SLASH_GT, + [48709] = 3, + ACTIONS(2860), 1, sym_identifier, - ACTIONS(1515), 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2862), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [47677] = 3, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [48723] = 3, + ACTIONS(1570), 1, + anon_sym_LT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1439), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1441), 3, + ACTIONS(1572), 4, + sym_jsx_text, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [47690] = 6, - ACTIONS(3), 1, + sym_html_character_reference, + anon_sym_LT_SLASH, + [48737] = 6, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(2146), 1, + anon_sym_COLON, + ACTIONS(2148), 1, + anon_sym_EQ, + ACTIONS(2864), 1, + anon_sym_RBRACE, + STATE(1302), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2601), 1, - anon_sym_extends, - ACTIONS(2614), 1, + [48757] = 6, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(2652), 1, + ACTIONS(2765), 1, + anon_sym_extends, + ACTIONS(2866), 1, sym_identifier, - STATE(698), 1, + STATE(720), 1, sym_class_body, - STATE(1403), 1, + STATE(1562), 1, sym_class_heritage, - [47709] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2601), 1, - anon_sym_extends, - ACTIONS(2614), 1, - anon_sym_LBRACE, - ACTIONS(2654), 1, + [48777] = 6, + ACTIONS(2794), 1, + anon_sym_GT, + ACTIONS(2868), 1, sym_identifier, - STATE(684), 1, - sym_class_body, - STATE(1441), 1, - sym_class_heritage, - [47728] = 6, - ACTIONS(3), 1, + ACTIONS(2870), 1, + sym_jsx_identifier, + STATE(1062), 1, + sym_nested_identifier, + STATE(1083), 1, + sym_jsx_namespace_name, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2656), 1, + [48797] = 6, + ACTIONS(1349), 1, + anon_sym_LPAREN, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2658), 1, + ACTIONS(2874), 1, + anon_sym_LBRACK, + ACTIONS(2876), 1, + sym_private_property_identifier, + STATE(545), 1, + sym_arguments, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48817] = 6, + ACTIONS(2794), 1, anon_sym_GT, - ACTIONS(2660), 1, + ACTIONS(2878), 1, + sym_identifier, + ACTIONS(2880), 1, sym_jsx_identifier, - STATE(1021), 1, + STATE(1070), 1, sym_nested_identifier, - STATE(1061), 1, + STATE(1091), 1, sym_jsx_namespace_name, - [47747] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2485), 1, + [48837] = 6, + ACTIONS(2882), 1, sym_identifier, - ACTIONS(2487), 1, + ACTIONS(2884), 1, anon_sym_GT, - ACTIONS(2491), 1, + ACTIONS(2886), 1, sym_jsx_identifier, - STATE(1028), 1, + STATE(1462), 1, sym_nested_identifier, - STATE(1053), 1, + STATE(1698), 1, sym_jsx_namespace_name, - [47766] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2059), 1, - anon_sym_EQ, - ACTIONS(2057), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2067), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [47781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2662), 1, - anon_sym_EQ, - ACTIONS(1257), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47794] = 6, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2601), 1, - anon_sym_extends, - ACTIONS(2614), 1, - anon_sym_LBRACE, - ACTIONS(2664), 1, + [48857] = 3, + ACTIONS(1427), 1, sym_identifier, - STATE(698), 1, - sym_class_body, - STATE(1403), 1, - sym_class_heritage, - [47813] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2666), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2668), 3, + ACTIONS(1429), 4, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [47826] = 6, - ACTIONS(3), 1, + anon_sym_SLASH_GT, + [48871] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(2057), 1, - anon_sym_COLON, - ACTIONS(2059), 1, + ACTIONS(1610), 5, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_EQ, - ACTIONS(2670), 1, - anon_sym_RBRACE, - STATE(1267), 1, - aux_sym_object_pattern_repeat1, - [47845] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2672), 1, - sym_identifier, - ACTIONS(2674), 1, + [48883] = 6, + ACTIONS(2794), 1, anon_sym_GT, - ACTIONS(2676), 1, + ACTIONS(2888), 1, + sym_identifier, + ACTIONS(2890), 1, sym_jsx_identifier, - STATE(1032), 1, + STATE(1068), 1, sym_nested_identifier, - STATE(1048), 1, + STATE(1077), 1, sym_jsx_namespace_name, - [47864] = 6, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48903] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2892), 1, + sym_html_character_reference, + ACTIONS(2895), 1, + anon_sym_DQUOTE, + ACTIONS(2897), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1220), 1, + aux_sym__jsx_string_repeat1, + [48922] = 5, + ACTIONS(2684), 1, + anon_sym_LPAREN, + ACTIONS(2900), 1, + sym_identifier, + ACTIONS(2902), 1, + anon_sym_STAR, + STATE(1546), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48939] = 4, + ACTIONS(2904), 1, + anon_sym_EQ, + STATE(1540), 1, + sym__initializer, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2649), 2, + anon_sym_in, + anon_sym_of, + [48954] = 5, + ACTIONS(2806), 1, anon_sym_LBRACE, - ACTIONS(2601), 1, + ACTIONS(2906), 1, anon_sym_extends, - ACTIONS(2678), 1, - sym_identifier, - STATE(525), 1, + STATE(591), 1, sym_class_body, - STATE(1434), 1, + STATE(1406), 1, sym_class_heritage, - [47883] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [48971] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1431), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(1433), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [47896] = 3, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2908), 1, + anon_sym_SQUOTE, + STATE(1262), 1, + aux_sym_string_repeat2, + ACTIONS(2910), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [48988] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2680), 1, - anon_sym_EQ, - ACTIONS(1272), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [47909] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2908), 1, + anon_sym_DQUOTE, + STATE(1265), 1, + aux_sym_string_repeat1, + ACTIONS(2912), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [49005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2601), 1, - anon_sym_extends, - ACTIONS(2614), 1, - anon_sym_LBRACE, - ACTIONS(2683), 1, - sym_identifier, - STATE(684), 1, - sym_class_body, - STATE(1441), 1, - sym_class_heritage, - [47928] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2914), 1, + anon_sym_DQUOTE, + STATE(1284), 1, + aux_sym_string_repeat1, + ACTIONS(2916), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [49022] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2914), 1, + anon_sym_SQUOTE, + STATE(1285), 1, + aux_sym_string_repeat2, + ACTIONS(2918), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [49039] = 5, + ACTIONS(2684), 1, anon_sym_LPAREN, - ACTIONS(2685), 1, + ACTIONS(2920), 1, sym_identifier, - ACTIONS(2687), 1, + ACTIONS(2922), 1, anon_sym_STAR, - STATE(1428), 1, + STATE(1595), 1, sym_formal_parameters, - [47944] = 4, - ACTIONS(2347), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2689), 1, - anon_sym_SQUOTE, - STATE(1166), 1, - aux_sym_string_repeat2, - ACTIONS(2691), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [47958] = 5, + [49056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2693), 1, - sym_identifier, - ACTIONS(2695), 1, - sym_jsx_identifier, - STATE(1362), 1, - sym_nested_identifier, - STATE(1662), 1, - sym_jsx_namespace_name, - [47974] = 4, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2697), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2924), 1, anon_sym_SQUOTE, - STATE(1166), 1, + STATE(1231), 1, aux_sym_string_repeat2, - ACTIONS(2699), 2, + ACTIONS(2926), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [47988] = 4, - ACTIONS(2347), 1, + [49073] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2924), 1, anon_sym_DQUOTE, - STATE(1170), 1, + STATE(1234), 1, aux_sym_string_repeat1, - ACTIONS(2702), 2, + ACTIONS(2928), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48002] = 4, - ACTIONS(2347), 1, + [49090] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2930), 1, anon_sym_SQUOTE, - STATE(1166), 1, + STATE(1262), 1, aux_sym_string_repeat2, - ACTIONS(2691), 2, + ACTIONS(2910), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48016] = 4, - ACTIONS(2347), 1, + [49107] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2932), 1, + sym_html_character_reference, + ACTIONS(2934), 1, anon_sym_DQUOTE, - STATE(1170), 1, - aux_sym_string_repeat1, - ACTIONS(2702), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48030] = 4, - ACTIONS(2347), 1, + ACTIONS(2936), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1258), 1, + aux_sym__jsx_string_repeat1, + [49126] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2934), 1, + anon_sym_SQUOTE, + ACTIONS(2938), 1, + sym_html_character_reference, + ACTIONS(2940), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1261), 1, + aux_sym__jsx_string_repeat2, + [49145] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2706), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2930), 1, anon_sym_DQUOTE, - STATE(1170), 1, + STATE(1265), 1, aux_sym_string_repeat1, - ACTIONS(2708), 2, + ACTIONS(2912), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48044] = 2, + [49162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1800), 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2942), 1, + anon_sym_SQUOTE, + STATE(1224), 1, + aux_sym_string_repeat2, + ACTIONS(2944), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [49179] = 4, + ACTIONS(2946), 1, + anon_sym_COMMA, + STATE(1245), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2948), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [48054] = 2, - ACTIONS(3), 1, + [49194] = 4, + ACTIONS(2946), 1, + anon_sym_COMMA, + STATE(1245), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1711), 4, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_EQ, - [48064] = 5, - ACTIONS(3), 1, + ACTIONS(2950), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49209] = 4, + ACTIONS(2952), 1, + anon_sym_from, + STATE(1638), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2711), 1, + ACTIONS(2954), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49224] = 5, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2906), 1, anon_sym_extends, - STATE(309), 1, + STATE(706), 1, sym_class_body, - STATE(1381), 1, + STATE(1426), 1, sym_class_heritage, - [48080] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2644), 1, - anon_sym_class, - STATE(959), 1, - aux_sym_export_statement_repeat1, - STATE(1007), 1, - sym_decorator, - [48096] = 4, - ACTIONS(2347), 1, + [49241] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2956), 1, anon_sym_SQUOTE, - STATE(1166), 1, + STATE(1262), 1, aux_sym_string_repeat2, - ACTIONS(2691), 2, + ACTIONS(2910), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48110] = 4, - ACTIONS(2347), 1, + [49258] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2715), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2956), 1, anon_sym_DQUOTE, - STATE(1170), 1, + STATE(1265), 1, aux_sym_string_repeat1, - ACTIONS(2702), 2, + ACTIONS(2912), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48124] = 4, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2717), 1, - anon_sym_SQUOTE, - STATE(1168), 1, - aux_sym_string_repeat2, - ACTIONS(2719), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [48138] = 4, - ACTIONS(2347), 1, + [49275] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2717), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2942), 1, anon_sym_DQUOTE, - STATE(1169), 1, + STATE(1225), 1, aux_sym_string_repeat1, - ACTIONS(2721), 2, + ACTIONS(2958), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48152] = 4, - ACTIONS(3), 1, + [49292] = 5, + ACTIONS(2763), 1, + anon_sym_LBRACE, + ACTIONS(2906), 1, + anon_sym_extends, + STATE(692), 1, + sym_class_body, + STATE(1492), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2723), 1, + [49309] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2960), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [49320] = 4, + ACTIONS(2962), 1, anon_sym_COMMA, - STATE(1179), 1, - aux_sym_array_repeat1, - ACTIONS(1689), 2, - anon_sym_RPAREN, + STATE(1245), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2965), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49335] = 4, + ACTIONS(2146), 1, + anon_sym_COLON, + ACTIONS(2148), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2967), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49350] = 5, + ACTIONS(2684), 1, + anon_sym_LPAREN, + ACTIONS(2969), 1, + sym_identifier, + ACTIONS(2971), 1, + anon_sym_STAR, + STATE(1595), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49367] = 5, + ACTIONS(684), 1, + anon_sym_COMMA, + ACTIONS(2973), 1, + anon_sym_EQ, + ACTIONS(2975), 1, anon_sym_RBRACK, - [48166] = 5, - ACTIONS(3), 1, + STATE(1367), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2711), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, + [49384] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2977), 1, + anon_sym_class, + STATE(977), 1, + aux_sym_export_statement_repeat1, + STATE(1017), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49401] = 3, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2146), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(2242), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [49414] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2979), 1, + anon_sym_class, + STATE(977), 1, + aux_sym_export_statement_repeat1, + STATE(1017), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49431] = 5, + ACTIONS(2906), 1, anon_sym_extends, - STATE(315), 1, + ACTIONS(2981), 1, + anon_sym_LBRACE, + STATE(342), 1, sym_class_body, - STATE(1407), 1, + STATE(1452), 1, sym_class_heritage, - [48182] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2614), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, + [49448] = 5, + ACTIONS(2906), 1, anon_sym_extends, - STATE(688), 1, + ACTIONS(2983), 1, + anon_sym_LBRACE, + STATE(65), 1, sym_class_body, - STATE(1408), 1, + STATE(1460), 1, sym_class_heritage, - [48198] = 5, - ACTIONS(2347), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2726), 1, - sym__glimmer_template_content, - ACTIONS(2728), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(707), 1, - sym_glimmer_closing_tag, - STATE(1344), 1, - aux_sym_glimmer_template_repeat1, - [48214] = 5, - ACTIONS(3), 1, + [49465] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2810), 1, + anon_sym_class, + STATE(977), 1, + aux_sym_export_statement_repeat1, + STATE(1017), 1, + sym_decorator, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2614), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, - anon_sym_extends, - STATE(768), 1, - sym_class_body, - STATE(1508), 1, - sym_class_heritage, - [48230] = 2, - ACTIONS(3), 1, + [49482] = 4, + ACTIONS(2985), 1, + anon_sym_COMMA, + STATE(1255), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1579), 4, + ACTIONS(1590), 2, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_EQ, - [48240] = 5, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2726), 1, - sym__glimmer_template_content, - ACTIONS(2730), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(989), 1, - sym_glimmer_closing_tag, - STATE(1344), 1, - aux_sym_glimmer_template_repeat1, - [48256] = 5, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2730), 1, - anon_sym_LT_SLASHtemplate_GT, - ACTIONS(2732), 1, - sym__glimmer_template_content, - STATE(974), 1, - sym_glimmer_closing_tag, - STATE(1185), 1, - aux_sym_glimmer_template_repeat1, - [48272] = 5, - ACTIONS(3), 1, + [49497] = 3, + ACTIONS(2500), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + ACTIONS(2498), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [49510] = 5, + ACTIONS(2684), 1, anon_sym_LPAREN, - ACTIONS(2734), 1, + ACTIONS(2988), 1, sym_identifier, - ACTIONS(2736), 1, + ACTIONS(2990), 1, anon_sym_STAR, - STATE(1428), 1, + STATE(1546), 1, sym_formal_parameters, - [48288] = 4, - ACTIONS(2347), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2738), 1, + [49527] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2992), 1, + sym_html_character_reference, + ACTIONS(2994), 1, + anon_sym_DQUOTE, + ACTIONS(2996), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(1220), 1, + aux_sym__jsx_string_repeat1, + [49546] = 4, + ACTIONS(2946), 1, + anon_sym_COMMA, + STATE(1237), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2998), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49561] = 4, + ACTIONS(2946), 1, + anon_sym_COMMA, + STATE(1236), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3000), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49576] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2994), 1, + anon_sym_SQUOTE, + ACTIONS(3002), 1, + sym_html_character_reference, + ACTIONS(3004), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1271), 1, + aux_sym__jsx_string_repeat2, + [49595] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3006), 1, anon_sym_SQUOTE, - STATE(1175), 1, + STATE(1262), 1, aux_sym_string_repeat2, - ACTIONS(2740), 2, + ACTIONS(3008), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48302] = 4, - ACTIONS(2347), 1, + [49612] = 4, + ACTIONS(3011), 1, + anon_sym_with, + STATE(1611), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2742), 1, - anon_sym_DQUOTE, - STATE(1196), 1, - aux_sym_string_repeat1, - ACTIONS(2744), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48316] = 4, - ACTIONS(2347), 1, + ACTIONS(3013), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49627] = 4, + ACTIONS(2946), 1, + anon_sym_COMMA, + STATE(1289), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2738), 1, + ACTIONS(3015), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49642] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3017), 1, anon_sym_DQUOTE, - STATE(1176), 1, + STATE(1265), 1, aux_sym_string_repeat1, - ACTIONS(2746), 2, + ACTIONS(3019), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48330] = 5, - ACTIONS(3), 1, + [49659] = 4, + ACTIONS(2946), 1, + anon_sym_COMMA, + STATE(1288), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2713), 1, - anon_sym_extends, - ACTIONS(2748), 1, + ACTIONS(3022), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [49674] = 3, + ACTIONS(3024), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2498), 3, + anon_sym_LPAREN, + sym_optional_chain, + anon_sym_BQUOTE, + [49687] = 5, + ACTIONS(2763), 1, anon_sym_LBRACE, - STATE(71), 1, + ACTIONS(2906), 1, + anon_sym_extends, + STATE(784), 1, sym_class_body, - STATE(1363), 1, + STATE(1536), 1, sym_class_heritage, - [48346] = 4, - ACTIONS(2347), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2742), 1, - anon_sym_SQUOTE, - STATE(1195), 1, - aux_sym_string_repeat2, - ACTIONS(2750), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [48360] = 5, - ACTIONS(3), 1, + [49704] = 5, + ACTIONS(2684), 1, + anon_sym_LPAREN, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_STAR, + STATE(1414), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(685), 1, + [49721] = 4, + ACTIONS(3030), 1, anon_sym_COMMA, - ACTIONS(2752), 1, - anon_sym_EQ, - ACTIONS(2754), 1, - anon_sym_RBRACK, - STATE(1309), 1, - aux_sym_array_pattern_repeat1, - [48376] = 2, - ACTIONS(3), 1, + STATE(1270), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1595), 4, - anon_sym_RBRACE, + ACTIONS(1812), 2, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_RBRACK, - [48386] = 4, - ACTIONS(2347), 1, + [49736] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3033), 1, + sym_html_character_reference, + ACTIONS(3036), 1, anon_sym_SQUOTE, - STATE(1166), 1, - aux_sym_string_repeat2, - ACTIONS(2691), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [48400] = 4, - ACTIONS(2347), 1, + ACTIONS(3038), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(1271), 1, + aux_sym__jsx_string_repeat2, + [49755] = 5, + ACTIONS(2973), 1, + anon_sym_EQ, + ACTIONS(3041), 1, + anon_sym_COMMA, + ACTIONS(3043), 1, + anon_sym_RPAREN, + STATE(1330), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2756), 1, - anon_sym_DQUOTE, - STATE(1170), 1, - aux_sym_string_repeat1, - ACTIONS(2702), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [48414] = 2, - ACTIONS(3), 1, + [49772] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1693), 4, + ACTIONS(1754), 4, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_EQ, - [48424] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, + [49783] = 5, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2758), 1, + ACTIONS(3045), 1, anon_sym_class, - STATE(959), 1, + STATE(977), 1, aux_sym_export_statement_repeat1, - STATE(1007), 1, + STATE(1017), 1, sym_decorator, - [48440] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [49800] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1718), 4, + ACTIONS(1776), 4, anon_sym_RPAREN, anon_sym_in, anon_sym_of, anon_sym_EQ, - [48450] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2760), 1, - anon_sym_EQ, - STATE(1554), 1, - sym__initializer, - ACTIONS(2477), 2, - anon_sym_in, - anon_sym_of, - [48464] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2614), 1, + [49811] = 5, + ACTIONS(2763), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2906), 1, anon_sym_extends, - STATE(748), 1, + STATE(795), 1, sym_class_body, - STATE(1536), 1, + STATE(1619), 1, sym_class_heritage, - [48480] = 5, - ACTIONS(2347), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2728), 1, - anon_sym_LT_SLASHtemplate_GT, - ACTIONS(2762), 1, - sym__glimmer_template_content, - STATE(695), 1, - sym_glimmer_closing_tag, - STATE(1182), 1, - aux_sym_glimmer_template_repeat1, - [48496] = 3, - ACTIONS(3), 1, + [49828] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2057), 2, + ACTIONS(2146), 4, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2116), 2, + anon_sym_SEMI, + anon_sym_EQ, + [49839] = 5, + ACTIONS(684), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [48508] = 5, - ACTIONS(3), 1, + ACTIONS(2973), 1, + anon_sym_EQ, + ACTIONS(3047), 1, + anon_sym_RBRACK, + STATE(1335), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2764), 1, - sym_identifier, - ACTIONS(2766), 1, - anon_sym_COMMA, - ACTIONS(2768), 1, - anon_sym_RBRACE, - STATE(1317), 1, - sym__import_export_specifier, - [48524] = 2, - ACTIONS(3), 1, + [49856] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2057), 4, + ACTIONS(1863), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [48534] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, + [49867] = 5, + ACTIONS(2684), 1, anon_sym_LPAREN, - ACTIONS(2770), 1, + ACTIONS(3049), 1, sym_identifier, - ACTIONS(2772), 1, + ACTIONS(3051), 1, anon_sym_STAR, - STATE(1413), 1, + STATE(1427), 1, sym_formal_parameters, - [48550] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, - anon_sym_from, - STATE(1512), 1, - sym__from_clause, - ACTIONS(2776), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48564] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2599), 1, - anon_sym_LBRACE, - ACTIONS(2713), 1, - anon_sym_extends, - STATE(595), 1, - sym_class_body, - STATE(1482), 1, - sym_class_heritage, - [48580] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2614), 1, + [49884] = 5, + ACTIONS(2806), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, + ACTIONS(2906), 1, anon_sym_extends, - STATE(729), 1, + STATE(589), 1, sym_class_body, - STATE(1494), 1, + STATE(1477), 1, sym_class_heritage, - [48596] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - ACTIONS(2778), 1, - sym_identifier, - ACTIONS(2780), 1, - anon_sym_STAR, - STATE(1382), 1, - sym_formal_parameters, - [48612] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2782), 1, - anon_sym_class, - STATE(959), 1, - aux_sym_export_statement_repeat1, - STATE(1007), 1, - sym_decorator, - [48628] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2057), 1, - anon_sym_COLON, - ACTIONS(2059), 1, - anon_sym_EQ, - ACTIONS(2784), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [48642] = 5, + [49901] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - ACTIONS(2786), 1, - sym_identifier, - ACTIONS(2788), 1, - anon_sym_STAR, - STATE(1428), 1, - sym_formal_parameters, - [48658] = 4, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2790), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3053), 1, anon_sym_DQUOTE, - STATE(1167), 1, + STATE(1241), 1, aux_sym_string_repeat1, - ACTIONS(2792), 2, + ACTIONS(3055), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [48672] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2794), 1, - sym_identifier, - ACTIONS(2796), 1, - sym_jsx_identifier, - STATE(1398), 1, - sym_nested_identifier, - STATE(1629), 1, - sym_jsx_namespace_name, - [48688] = 2, + [49918] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [48698] = 4, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2790), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3053), 1, anon_sym_SQUOTE, - STATE(1164), 1, + STATE(1240), 1, aux_sym_string_repeat2, - ACTIONS(2800), 2, + ACTIONS(3057), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [48712] = 5, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2802), 1, - sym__glimmer_template_content, - ACTIONS(2804), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(535), 1, - sym_glimmer_closing_tag, - STATE(1222), 1, - aux_sym_glimmer_template_repeat1, - [48728] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - ACTIONS(2806), 1, - sym_identifier, - ACTIONS(2808), 1, - anon_sym_STAR, - STATE(1382), 1, - sym_formal_parameters, - [48744] = 5, + [49935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 1, - sym_identifier, - ACTIONS(2812), 1, - sym_jsx_identifier, - STATE(1376), 1, - sym_nested_identifier, - STATE(1642), 1, - sym_jsx_namespace_name, - [48760] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3059), 1, + anon_sym_DQUOTE, + STATE(1265), 1, + aux_sym_string_repeat1, + ACTIONS(2912), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [49952] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2713), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3059), 1, + anon_sym_SQUOTE, + STATE(1262), 1, + aux_sym_string_repeat2, + ACTIONS(2910), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [49969] = 5, + ACTIONS(2906), 1, anon_sym_extends, - ACTIONS(2748), 1, - anon_sym_LBRACE, - STATE(78), 1, - sym_class_body, - STATE(1369), 1, - sym_class_heritage, - [48776] = 5, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2726), 1, - sym__glimmer_template_content, - ACTIONS(2804), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(540), 1, - sym_glimmer_closing_tag, - STATE(1344), 1, - aux_sym_glimmer_template_repeat1, - [48792] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2814), 1, - anon_sym_COMMA, - STATE(1233), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2816), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48806] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(685), 1, - anon_sym_COMMA, - ACTIONS(2752), 1, - anon_sym_EQ, - ACTIONS(2818), 1, - anon_sym_RBRACK, - STATE(1311), 1, - aux_sym_array_pattern_repeat1, - [48822] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2814), 1, - anon_sym_COMMA, - STATE(1233), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2820), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [48836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2822), 1, - anon_sym_EQ, - ACTIONS(1257), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [48848] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2599), 1, + ACTIONS(2983), 1, anon_sym_LBRACE, - ACTIONS(2713), 1, - anon_sym_extends, - STATE(546), 1, + STATE(71), 1, sym_class_body, - STATE(1466), 1, + STATE(1550), 1, sym_class_heritage, - [48864] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2626), 1, - anon_sym_class, - STATE(959), 1, - aux_sym_export_statement_repeat1, - STATE(1007), 1, - sym_decorator, - [48880] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, + [49986] = 5, + ACTIONS(2684), 1, anon_sym_LPAREN, - ACTIONS(2824), 1, + ACTIONS(3061), 1, sym_identifier, - ACTIONS(2826), 1, + ACTIONS(3063), 1, anon_sym_STAR, - STATE(1382), 1, + STATE(1546), 1, sym_formal_parameters, - [48896] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2764), 1, - sym_identifier, - ACTIONS(2828), 1, - anon_sym_COMMA, - ACTIONS(2830), 1, - anon_sym_RBRACE, - STATE(1271), 1, - sym__import_export_specifier, - [48912] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 1, - anon_sym_LBRACE, - ACTIONS(2832), 1, - anon_sym_STAR, - STATE(1592), 2, - sym_namespace_import_export, - sym_named_imports, - [48926] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1555), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [48936] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2834), 1, + [50003] = 4, + ACTIONS(2946), 1, anon_sym_COMMA, - STATE(1233), 1, + STATE(1245), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(2837), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3065), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48950] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2814), 1, + [50018] = 4, + ACTIONS(2946), 1, anon_sym_COMMA, - STATE(1225), 1, + STATE(1245), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(2839), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3067), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48964] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2814), 1, + [50033] = 4, + ACTIONS(1704), 1, anon_sym_COMMA, - STATE(1223), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2841), 2, + STATE(1255), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2668), 2, sym__automatic_semicolon, anon_sym_SEMI, - [48978] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2843), 1, - sym_identifier, - ACTIONS(2845), 1, - sym_jsx_identifier, - STATE(1539), 1, - sym_nested_identifier, - STATE(1578), 1, - sym_jsx_namespace_name, - [48994] = 5, - ACTIONS(3), 1, + [50048] = 5, + ACTIONS(3011), 1, + anon_sym_with, + ACTIONS(3069), 1, + anon_sym_SEMI, + ACTIONS(3071), 1, + sym__automatic_semicolon, + STATE(1486), 1, + sym_import_attribute, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - ACTIONS(2847), 1, - sym_identifier, - ACTIONS(2849), 1, + [50065] = 4, + ACTIONS(2494), 1, anon_sym_STAR, - STATE(1360), 1, - sym_formal_parameters, - [49010] = 5, - ACTIONS(3), 1, + ACTIONS(2496), 1, + anon_sym_LBRACE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(87), 1, + STATE(1699), 2, + sym_namespace_import, + sym_named_imports, + [50080] = 5, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2851), 1, + ACTIONS(2832), 1, anon_sym_class, - STATE(959), 1, + STATE(977), 1, aux_sym_export_statement_repeat1, - STATE(1007), 1, + STATE(1017), 1, sym_decorator, - [49026] = 5, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2752), 1, - anon_sym_EQ, - ACTIONS(2853), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, - anon_sym_RPAREN, - STATE(1284), 1, - aux_sym_formal_parameters_repeat1, - [49042] = 4, - ACTIONS(3), 1, + [50097] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2853), 1, - anon_sym_COMMA, - ACTIONS(2855), 1, + ACTIONS(1768), 4, anon_sym_RPAREN, - STATE(1284), 1, - aux_sym_formal_parameters_repeat1, - [49055] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, + anon_sym_in, + anon_sym_of, + anon_sym_EQ, + [50108] = 5, + ACTIONS(2684), 1, anon_sym_LPAREN, - ACTIONS(2857), 1, + ACTIONS(3073), 1, sym_identifier, - STATE(1558), 1, + ACTIONS(3075), 1, + anon_sym_STAR, + STATE(1595), 1, sym_formal_parameters, - [49068] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - ACTIONS(2859), 1, - sym_identifier, - STATE(1557), 1, - sym_formal_parameters, - [49081] = 2, - ACTIONS(3), 1, + [50125] = 3, + ACTIONS(3077), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2837), 3, - sym__automatic_semicolon, + ACTIONS(1316), 3, anon_sym_COMMA, - anon_sym_SEMI, - [49090] = 3, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_RBRACK, + [50138] = 5, + ACTIONS(2906), 1, + anon_sym_extends, + ACTIONS(2981), 1, + anon_sym_LBRACE, + STATE(333), 1, + sym_class_body, + STATE(1517), 1, + sym_class_heritage, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2752), 1, - anon_sym_EQ, - ACTIONS(2861), 2, + [50155] = 4, + ACTIONS(3079), 1, anon_sym_COMMA, + ACTIONS(3082), 1, + anon_sym_RBRACE, + STATE(1298), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50169] = 4, + ACTIONS(718), 1, + anon_sym_COMMA, + ACTIONS(1806), 1, anon_sym_RPAREN, - [49101] = 4, - ACTIONS(3), 1, + STATE(1324), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50183] = 4, + ACTIONS(2684), 1, + anon_sym_LPAREN, + ACTIONS(3084), 1, + sym_identifier, + STATE(1465), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2863), 1, + [50197] = 4, + ACTIONS(2104), 1, anon_sym_COMMA, - ACTIONS(2865), 1, + ACTIONS(3086), 1, anon_sym_RBRACE, - STATE(1306), 1, - aux_sym_named_imports_repeat1, - [49114] = 4, - ACTIONS(3), 1, + STATE(1307), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2861), 1, - anon_sym_RPAREN, - ACTIONS(2867), 1, + [50211] = 4, + ACTIONS(2120), 1, anon_sym_COMMA, - STATE(1246), 1, - aux_sym_formal_parameters_repeat1, - [49127] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2764), 1, - sym_identifier, - ACTIONS(2870), 1, + ACTIONS(3088), 1, anon_sym_RBRACE, - STATE(1406), 1, - sym__import_export_specifier, - [49140] = 4, - ACTIONS(3), 1, + STATE(1298), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [50225] = 4, + ACTIONS(2684), 1, anon_sym_LPAREN, - ACTIONS(2872), 1, + ACTIONS(3090), 1, sym_identifier, - STATE(1384), 1, + STATE(1543), 1, sym_formal_parameters, - [49153] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1976), 1, + [50239] = 4, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2874), 1, + ACTIONS(3092), 1, anon_sym_RBRACE, - STATE(1282), 1, + STATE(1298), 1, aux_sym_object_pattern_repeat1, - [49166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(957), 1, - anon_sym_while, - ACTIONS(2876), 1, - anon_sym_else, - STATE(405), 1, - sym_else_clause, - [49179] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(685), 1, + [50253] = 4, + ACTIONS(2104), 1, anon_sym_COMMA, - ACTIONS(2818), 1, - anon_sym_RBRACK, - STATE(1311), 1, - aux_sym_array_pattern_repeat1, - [49192] = 4, - ACTIONS(3), 1, + ACTIONS(3094), 1, + anon_sym_RBRACE, + STATE(1307), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2878), 1, + [50267] = 4, + ACTIONS(3096), 1, + anon_sym_LPAREN, + ACTIONS(3098), 1, + anon_sym_await, + STATE(57), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50281] = 4, + ACTIONS(3100), 1, anon_sym_COMMA, - ACTIONS(2880), 1, + ACTIONS(3103), 1, anon_sym_RBRACE, - STATE(1325), 1, + STATE(1307), 1, aux_sym_object_repeat1, - [49205] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2878), 1, + [50295] = 4, + ACTIONS(2684), 1, + anon_sym_LPAREN, + ACTIONS(3105), 1, + sym_identifier, + STATE(1532), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50309] = 3, + ACTIONS(3107), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3109), 2, anon_sym_COMMA, - ACTIONS(2882), 1, anon_sym_RBRACE, - STATE(1325), 1, - aux_sym_object_repeat1, - [49218] = 4, - ACTIONS(3), 1, + [50321] = 4, + ACTIONS(3111), 1, + anon_sym_COMMA, + ACTIONS(3113), 1, + anon_sym_RBRACE, + STATE(1355), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1976), 1, + [50335] = 4, + ACTIONS(3115), 1, anon_sym_COMMA, - ACTIONS(2884), 1, + ACTIONS(3117), 1, anon_sym_RBRACE, - STATE(1282), 1, - aux_sym_object_pattern_repeat1, - [49231] = 4, - ACTIONS(3), 1, + STATE(1364), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1976), 1, + [50349] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3119), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [50359] = 4, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2068), 1, + anon_sym_SQUOTE, + STATE(1353), 1, + sym_string, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50373] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(2842), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2886), 1, + anon_sym_SEMI, + [50383] = 4, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(3121), 1, anon_sym_RBRACE, - STATE(1282), 1, + STATE(1375), 1, aux_sym_object_pattern_repeat1, - [49244] = 4, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50397] = 4, + ACTIONS(2784), 1, + sym_identifier, + ACTIONS(2786), 1, + anon_sym_LBRACK, + ACTIONS(2788), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50411] = 3, + ACTIONS(3077), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1337), 2, + anon_sym_in, + anon_sym_of, + [50423] = 4, + ACTIONS(2684), 1, + anon_sym_LPAREN, + ACTIONS(3123), 1, + sym_identifier, + STATE(1543), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, - anon_sym_COMMA, - ACTIONS(2888), 1, - anon_sym_RBRACE, - STATE(1325), 1, - aux_sym_object_repeat1, - [49257] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3125), 1, + sym__glimmer_template_content, + ACTIONS(3127), 1, + sym_glimmer_closing_tag, + STATE(1357), 1, + aux_sym_glimmer_template_repeat1, + [50453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3129), 1, + sym__glimmer_template_content, + ACTIONS(3131), 1, + sym_glimmer_closing_tag, + STATE(1372), 1, + aux_sym_glimmer_template_repeat1, + [50469] = 4, + ACTIONS(684), 1, anon_sym_COMMA, - ACTIONS(2888), 1, + ACTIONS(3047), 1, + anon_sym_RBRACK, + STATE(1337), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50483] = 4, + ACTIONS(2104), 1, + anon_sym_COMMA, + ACTIONS(3133), 1, anon_sym_RBRACE, - STATE(1332), 1, + STATE(1374), 1, aux_sym_object_repeat1, - [49270] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1976), 1, + [50497] = 4, + ACTIONS(2684), 1, + anon_sym_LPAREN, + ACTIONS(3135), 1, + sym_identifier, + STATE(1428), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50511] = 4, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(2884), 1, - anon_sym_RBRACE, - STATE(1334), 1, - aux_sym_object_pattern_repeat1, - [49283] = 4, - ACTIONS(3), 1, + ACTIONS(3137), 1, + anon_sym_RPAREN, + STATE(1270), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(724), 1, + [50525] = 4, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(1695), 1, + ACTIONS(1790), 1, anon_sym_RBRACK, - STATE(1300), 1, + STATE(1270), 1, aux_sym_array_repeat1, - [49296] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50539] = 4, + ACTIONS(718), 1, + anon_sym_COMMA, + ACTIONS(1790), 1, + anon_sym_RBRACK, + STATE(1334), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50553] = 4, + ACTIONS(684), 1, + anon_sym_COMMA, + ACTIONS(3047), 1, + anon_sym_RBRACK, + STATE(1335), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [50567] = 4, + ACTIONS(2684), 1, anon_sym_LPAREN, - ACTIONS(2890), 1, - anon_sym_COLON, - STATE(1461), 1, + ACTIONS(3139), 1, + sym_identifier, + STATE(1465), 1, sym_formal_parameters, - [49309] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2646), 3, - sym__automatic_semicolon, + [50581] = 4, + ACTIONS(2104), 1, anon_sym_COMMA, - anon_sym_SEMI, - [49318] = 2, - ACTIONS(2347), 1, + ACTIONS(3133), 1, + anon_sym_RBRACE, + STATE(1307), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2892), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49327] = 2, - ACTIONS(2347), 1, + [50595] = 4, + ACTIONS(724), 1, + anon_sym_RPAREN, + ACTIONS(3141), 1, + anon_sym_COMMA, + STATE(1387), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2892), 3, + [50609] = 4, + ACTIONS(3143), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49336] = 4, - ACTIONS(3), 1, + ACTIONS(3145), 1, + anon_sym_LPAREN, + STATE(338), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2878), 1, + [50623] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1812), 3, anon_sym_COMMA, - ACTIONS(2882), 1, - anon_sym_RBRACE, - STATE(1252), 1, - aux_sym_object_repeat1, - [49349] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + [50633] = 3, + ACTIONS(2973), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(724), 1, + ACTIONS(3147), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [50645] = 4, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(1695), 1, + ACTIONS(3149), 1, anon_sym_RBRACK, - STATE(1179), 1, + STATE(1270), 1, aux_sym_array_repeat1, - [49362] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(685), 1, + [50659] = 4, + ACTIONS(684), 1, anon_sym_COMMA, - ACTIONS(2818), 1, + ACTIONS(3151), 1, + anon_sym_RBRACK, + STATE(1337), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50673] = 4, + ACTIONS(3041), 1, + anon_sym_COMMA, + ACTIONS(3043), 1, + anon_sym_RPAREN, + STATE(1330), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50687] = 4, + ACTIONS(3147), 1, anon_sym_RBRACK, - STATE(1321), 1, + ACTIONS(3153), 1, + anon_sym_COMMA, + STATE(1337), 1, aux_sym_array_pattern_repeat1, - [49375] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1976), 1, + [50701] = 4, + ACTIONS(2120), 1, anon_sym_COMMA, - ACTIONS(2894), 1, + ACTIONS(3121), 1, anon_sym_RBRACE, - STATE(1282), 1, + STATE(1298), 1, aux_sym_object_pattern_repeat1, - [49388] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2325), 1, + [50715] = 4, + ACTIONS(2506), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(2512), 1, anon_sym_DOT, - ACTIONS(2896), 1, + ACTIONS(3156), 1, anon_sym_GT, - [49401] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2752), 1, - anon_sym_EQ, - ACTIONS(2898), 2, + [50729] = 4, + ACTIONS(2684), 1, + anon_sym_LPAREN, + ACTIONS(3158), 1, + sym_identifier, + STATE(1465), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50743] = 4, + ACTIONS(2120), 1, anon_sym_COMMA, + ACTIONS(3160), 1, anon_sym_RBRACE, - [49412] = 2, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2892), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49421] = 4, - ACTIONS(3), 1, + STATE(1298), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2900), 1, + [50757] = 4, + ACTIONS(2104), 1, anon_sym_COMMA, - ACTIONS(2902), 1, + ACTIONS(3162), 1, anon_sym_RBRACE, - STATE(1245), 1, - aux_sym_named_imports_repeat1, - [49434] = 4, - ACTIONS(3), 1, + STATE(1307), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(724), 1, + [50771] = 4, + ACTIONS(2684), 1, + anon_sym_LPAREN, + ACTIONS(3164), 1, + sym_identifier, + STATE(1543), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [50785] = 4, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(2904), 1, + ACTIONS(1806), 1, anon_sym_RPAREN, - STATE(1179), 1, + STATE(1270), 1, aux_sym_array_repeat1, - [49447] = 2, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2892), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(2874), 1, - anon_sym_RBRACE, - STATE(1255), 1, - aux_sym_object_pattern_repeat1, - [49469] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2906), 1, + [50799] = 3, + ACTIONS(2753), 1, anon_sym_EQ, - ACTIONS(1270), 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1337), 2, anon_sym_in, anon_sym_of, - [49480] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - ACTIONS(2908), 1, - sym_identifier, - STATE(1384), 1, - sym_formal_parameters, - [49493] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - ACTIONS(2910), 1, - sym_identifier, - STATE(1557), 1, - sym_formal_parameters, - [49506] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - ACTIONS(2912), 1, - anon_sym_COLON, - STATE(1461), 1, - sym_formal_parameters, - [49519] = 2, - ACTIONS(3), 1, + [50811] = 4, + ACTIONS(718), 1, + anon_sym_COMMA, + ACTIONS(1798), 1, + anon_sym_RPAREN, + STATE(1396), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2914), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49528] = 4, - ACTIONS(3), 1, + [50825] = 4, + ACTIONS(718), 1, + anon_sym_COMMA, + ACTIONS(1798), 1, + anon_sym_RPAREN, + STATE(1270), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - ACTIONS(2916), 1, - sym_identifier, - STATE(1421), 1, - sym_formal_parameters, - [49541] = 4, - ACTIONS(3), 1, + [50839] = 4, + ACTIONS(981), 1, + anon_sym_while, + ACTIONS(3166), 1, + anon_sym_else, + STATE(358), 1, + sym_else_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2774), 1, - anon_sym_from, - ACTIONS(2918), 1, + [50853] = 3, + ACTIONS(3168), 1, anon_sym_as, - STATE(1380), 1, - sym__from_clause, - [49554] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2920), 1, + ACTIONS(3170), 2, anon_sym_COMMA, - ACTIONS(2923), 1, anon_sym_RBRACE, - STATE(1282), 1, - aux_sym_object_pattern_repeat1, - [49567] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, + [50865] = 4, + ACTIONS(2684), 1, anon_sym_LPAREN, - ACTIONS(2925), 1, - sym_identifier, - STATE(1384), 1, + ACTIONS(3172), 1, + anon_sym_COLON, + STATE(1627), 1, sym_formal_parameters, - [49580] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(722), 1, - anon_sym_RPAREN, - ACTIONS(2927), 1, - anon_sym_COMMA, - STATE(1246), 1, - aux_sym_formal_parameters_repeat1, - [49593] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2929), 1, - sym_identifier, - STATE(936), 1, - sym_decorator_member_expression, - STATE(1004), 1, - sym_decorator_call_expression, - [49606] = 4, - ACTIONS(3), 1, + [50879] = 4, + ACTIONS(2506), 1, + anon_sym_COLON, + ACTIONS(2512), 1, + anon_sym_DOT, + ACTIONS(3174), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, - anon_sym_LBRACE, - ACTIONS(2933), 1, - anon_sym_LPAREN, - STATE(318), 1, - sym_statement_block, - [49619] = 2, - ACTIONS(2347), 1, + [50893] = 4, + ACTIONS(2104), 1, + anon_sym_COMMA, + ACTIONS(3162), 1, + anon_sym_RBRACE, + STATE(1305), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1523), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49628] = 2, - ACTIONS(2347), 1, + [50907] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1537), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49637] = 2, - ACTIONS(3), 1, + ACTIONS(3176), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [50917] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2935), 3, + ACTIONS(3178), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [49646] = 2, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(1523), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49655] = 2, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(1523), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49664] = 2, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(1523), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49673] = 2, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(1497), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49682] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(685), 1, + [50927] = 4, + ACTIONS(2630), 1, + anon_sym_RBRACE, + ACTIONS(3180), 1, anon_sym_COMMA, - ACTIONS(2754), 1, - anon_sym_RBRACK, - STATE(1309), 1, - aux_sym_array_pattern_repeat1, - [49695] = 2, - ACTIONS(2347), 1, + STATE(1398), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1513), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49704] = 2, - ACTIONS(2347), 1, + [50941] = 4, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(3160), 1, + anon_sym_RBRACE, + STATE(1304), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1439), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49713] = 4, + [50955] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_COMMA, - ACTIONS(1720), 1, - anon_sym_RPAREN, - STATE(1179), 1, - aux_sym_array_repeat1, - [49726] = 2, - ACTIONS(3), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3182), 1, + sym__glimmer_template_content, + ACTIONS(3185), 1, + sym_glimmer_closing_tag, + STATE(1357), 1, + aux_sym_glimmer_template_repeat1, + [50971] = 3, + ACTIONS(1660), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1689), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [49735] = 3, - ACTIONS(3), 1, + ACTIONS(1877), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [50983] = 4, + ACTIONS(2684), 1, + anon_sym_LPAREN, + ACTIONS(3187), 1, + anon_sym_COLON, + STATE(1627), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2752), 1, + [50997] = 3, + ACTIONS(2973), 1, anon_sym_EQ, - ACTIONS(2937), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [49746] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, - anon_sym_COMMA, - ACTIONS(2939), 1, - anon_sym_RBRACK, - STATE(1179), 1, - aux_sym_array_repeat1, - [49759] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2878), 1, + ACTIONS(3189), 2, anon_sym_COMMA, - ACTIONS(2941), 1, anon_sym_RBRACE, - STATE(1325), 1, - aux_sym_object_repeat1, - [49772] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, + [51009] = 4, + ACTIONS(684), 1, anon_sym_COMMA, - ACTIONS(1720), 1, - anon_sym_RPAREN, - STATE(1272), 1, - aux_sym_array_repeat1, - [49785] = 4, - ACTIONS(3), 1, + ACTIONS(2975), 1, + anon_sym_RBRACK, + STATE(1367), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(724), 1, + [51023] = 4, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(1701), 1, - anon_sym_RPAREN, - STATE(1179), 1, + ACTIONS(1820), 1, + anon_sym_RBRACK, + STATE(1368), 1, aux_sym_array_repeat1, - [49798] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(724), 1, + [51037] = 4, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(1722), 1, + ACTIONS(1820), 1, anon_sym_RBRACK, - STATE(1310), 1, + STATE(1270), 1, aux_sym_array_repeat1, - [49811] = 2, - ACTIONS(2347), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1431), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [49820] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2943), 1, - anon_sym_COMMA, - ACTIONS(2946), 1, + [51051] = 4, + ACTIONS(2664), 1, anon_sym_RBRACE, - STATE(1306), 1, + ACTIONS(3191), 1, + anon_sym_COMMA, + STATE(1369), 1, aux_sym_named_imports_repeat1, - [49833] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2764), 1, - sym_identifier, - ACTIONS(2948), 1, - anon_sym_RBRACE, - STATE(1406), 1, - sym__import_export_specifier, - [49846] = 4, - ACTIONS(3), 1, + [51065] = 4, + ACTIONS(3193), 1, + anon_sym_LPAREN, + ACTIONS(3195), 1, + anon_sym_await, + STATE(35), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(724), 1, - anon_sym_COMMA, - ACTIONS(1722), 1, - anon_sym_RBRACK, - STATE(1179), 1, - aux_sym_array_repeat1, - [49859] = 4, - ACTIONS(3), 1, + [51079] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(685), 1, + ACTIONS(2965), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2950), 1, - anon_sym_RBRACK, - STATE(1321), 1, - aux_sym_array_pattern_repeat1, - [49872] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, + anon_sym_SEMI, + [51089] = 4, + ACTIONS(684), 1, anon_sym_COMMA, - ACTIONS(2952), 1, + ACTIONS(3197), 1, anon_sym_RBRACK, - STATE(1179), 1, - aux_sym_array_repeat1, - [49885] = 4, - ACTIONS(3), 1, + STATE(1337), 1, + aux_sym_array_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(685), 1, + [51103] = 4, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(2954), 1, + ACTIONS(3199), 1, anon_sym_RBRACK, - STATE(1321), 1, - aux_sym_array_pattern_repeat1, - [49898] = 4, - ACTIONS(3), 1, + STATE(1270), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2956), 1, + [51117] = 4, + ACTIONS(3201), 1, anon_sym_COMMA, - ACTIONS(2958), 1, + ACTIONS(3204), 1, anon_sym_RBRACE, - STATE(1315), 1, - aux_sym_export_clause_repeat1, - [49911] = 4, - ACTIONS(3), 1, + STATE(1369), 1, + aux_sym_named_imports_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51131] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(685), 1, + ACTIONS(3206), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [51141] = 4, + ACTIONS(684), 1, anon_sym_COMMA, - ACTIONS(2754), 1, + ACTIONS(2975), 1, anon_sym_RBRACK, - STATE(1321), 1, + STATE(1337), 1, aux_sym_array_pattern_repeat1, - [49924] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - STATE(1405), 1, - sym_string, - [49937] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2960), 1, - anon_sym_COMMA, - ACTIONS(2963), 1, - anon_sym_RBRACE, - STATE(1315), 1, - aux_sym_export_clause_repeat1, - [49950] = 2, + [51155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 3, - sym__automatic_semicolon, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3125), 1, + sym__glimmer_template_content, + ACTIONS(3208), 1, + sym_glimmer_closing_tag, + STATE(1357), 1, + aux_sym_glimmer_template_repeat1, + [51171] = 4, + ACTIONS(2952), 1, anon_sym_from, - anon_sym_SEMI, - [49959] = 4, - ACTIONS(3), 1, + ACTIONS(3210), 1, + anon_sym_as, + STATE(1617), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2967), 1, + [51185] = 4, + ACTIONS(2104), 1, anon_sym_COMMA, - ACTIONS(2969), 1, + ACTIONS(3212), 1, anon_sym_RBRACE, - STATE(1312), 1, - aux_sym_export_clause_repeat1, - [49972] = 3, - ACTIONS(3), 1, + STATE(1307), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2973), 1, - anon_sym_as, - ACTIONS(2971), 2, + [51199] = 4, + ACTIONS(2120), 1, anon_sym_COMMA, + ACTIONS(3214), 1, anon_sym_RBRACE, - [49983] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2975), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [49992] = 4, - ACTIONS(3), 1, + STATE(1298), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2764), 1, - sym_identifier, - ACTIONS(2977), 1, + [51213] = 4, + ACTIONS(2120), 1, + anon_sym_COMMA, + ACTIONS(3216), 1, anon_sym_RBRACE, - STATE(1370), 1, - sym__import_export_specifier, - [50005] = 4, + STATE(1298), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51227] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_RBRACK, - ACTIONS(2979), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3218), 1, + sym__glimmer_template_content, + ACTIONS(3220), 1, + sym_glimmer_closing_tag, + STATE(1399), 1, + aux_sym_glimmer_template_repeat1, + [51243] = 4, + ACTIONS(2104), 1, anon_sym_COMMA, - STATE(1321), 1, - aux_sym_array_pattern_repeat1, - [50018] = 3, - ACTIONS(3), 1, + ACTIONS(3222), 1, + anon_sym_RBRACE, + STATE(1307), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2982), 1, + [51257] = 4, + ACTIONS(2872), 1, sym_identifier, - ACTIONS(2984), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50029] = 3, - ACTIONS(3), 1, + ACTIONS(2874), 1, + anon_sym_LBRACK, + ACTIONS(2876), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2986), 1, + [51271] = 4, + ACTIONS(3224), 1, sym_identifier, - ACTIONS(2988), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50040] = 4, - ACTIONS(3), 1, + STATE(935), 1, + sym_decorator_member_expression, + STATE(1002), 1, + sym_decorator_call_expression, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2990), 1, - anon_sym_LPAREN, - ACTIONS(2992), 1, - anon_sym_await, - STATE(41), 1, - sym__for_header, - [50053] = 4, + [51285] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3226), 1, + sym__glimmer_template_content, + ACTIONS(3228), 1, + sym_glimmer_closing_tag, + STATE(1319), 1, + aux_sym_glimmer_template_repeat1, + [51301] = 4, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(2997), 1, - anon_sym_RBRACE, - STATE(1325), 1, - aux_sym_object_repeat1, - [50066] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - anon_sym_COLON, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2999), 1, - anon_sym_GT, - [50079] = 4, - ACTIONS(3), 1, + ACTIONS(1758), 1, + anon_sym_RPAREN, + STATE(1395), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2591), 1, - sym_identifier, - ACTIONS(2593), 1, - anon_sym_LBRACK, - ACTIONS(2595), 1, - sym_private_property_identifier, - [50092] = 3, - ACTIONS(3), 1, + [51315] = 4, + ACTIONS(718), 1, + anon_sym_COMMA, + ACTIONS(1758), 1, + anon_sym_RPAREN, + STATE(1270), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2662), 1, - anon_sym_EQ, - ACTIONS(1270), 2, - anon_sym_in, - anon_sym_of, - [50103] = 2, - ACTIONS(3), 1, + [51329] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2965), 3, + ACTIONS(3230), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [50112] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 1, - anon_sym_LPAREN, - ACTIONS(3003), 1, - anon_sym_await, - STATE(37), 1, - sym__for_header, - [50125] = 4, - ACTIONS(3), 1, + [51339] = 3, + ACTIONS(3232), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2325), 1, + ACTIONS(3234), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51351] = 4, + ACTIONS(2506), 1, anon_sym_COLON, - ACTIONS(2333), 1, + ACTIONS(2512), 1, anon_sym_DOT, - ACTIONS(3005), 1, + ACTIONS(3236), 1, anon_sym_GT, - [50138] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2878), 1, + [51365] = 4, + ACTIONS(3238), 1, anon_sym_COMMA, - ACTIONS(3007), 1, - anon_sym_RBRACE, - STATE(1325), 1, - aux_sym_object_repeat1, - [50151] = 2, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(3009), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [50160] = 4, - ACTIONS(3), 1, + ACTIONS(3241), 1, + anon_sym_RPAREN, + STATE(1387), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1976), 1, - anon_sym_COMMA, - ACTIONS(3011), 1, - anon_sym_RBRACE, - STATE(1282), 1, - aux_sym_object_pattern_repeat1, - [50173] = 4, - ACTIONS(3), 1, + [51379] = 3, + ACTIONS(3243), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2764), 1, + ACTIONS(2649), 2, + anon_sym_in, + anon_sym_of, + [51391] = 3, + ACTIONS(3245), 1, sym_identifier, - ACTIONS(3013), 1, - anon_sym_RBRACE, - STATE(1370), 1, - sym__import_export_specifier, - [50186] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1976), 1, + ACTIONS(3247), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51403] = 4, + ACTIONS(2104), 1, anon_sym_COMMA, - ACTIONS(3015), 1, + ACTIONS(3249), 1, anon_sym_RBRACE, - STATE(1282), 1, - aux_sym_object_pattern_repeat1, - [50199] = 4, - ACTIONS(3), 1, + STATE(1307), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2878), 1, + [51417] = 4, + ACTIONS(2104), 1, anon_sym_COMMA, - ACTIONS(3017), 1, + ACTIONS(3251), 1, anon_sym_RBRACE, - STATE(1325), 1, + STATE(1307), 1, aux_sym_object_repeat1, - [50212] = 2, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(1541), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [50221] = 2, - ACTIONS(2347), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2630), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [50230] = 4, - ACTIONS(3), 1, + [51431] = 4, + ACTIONS(2104), 1, + anon_sym_COMMA, + ACTIONS(3253), 1, + anon_sym_RBRACE, + STATE(1391), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - ACTIONS(3019), 1, - sym_identifier, - STATE(1557), 1, - sym_formal_parameters, - [50243] = 4, - ACTIONS(3), 1, + [51445] = 4, + ACTIONS(2506), 1, + anon_sym_COLON, + ACTIONS(2512), 1, + anon_sym_DOT, + ACTIONS(3255), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(724), 1, + [51459] = 4, + ACTIONS(2104), 1, anon_sym_COMMA, - ACTIONS(1726), 1, - anon_sym_RPAREN, - STATE(1348), 1, - aux_sym_array_repeat1, - [50256] = 4, - ACTIONS(3), 1, + ACTIONS(3253), 1, + anon_sym_RBRACE, + STATE(1307), 1, + aux_sym_object_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(724), 1, + [51473] = 4, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(1726), 1, + ACTIONS(3257), 1, anon_sym_RPAREN, - STATE(1179), 1, + STATE(1270), 1, aux_sym_array_repeat1, - [50269] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2603), 1, - sym_identifier, - ACTIONS(2605), 1, - anon_sym_LBRACK, - ACTIONS(2607), 1, - sym_private_property_identifier, - [50282] = 4, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(3021), 1, - sym__glimmer_template_content, - ACTIONS(3024), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(1344), 1, - aux_sym_glimmer_template_repeat1, - [50295] = 2, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(2587), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [50304] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3026), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [50313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, + [51487] = 4, + ACTIONS(718), 1, anon_sym_COMMA, - ACTIONS(1701), 1, + ACTIONS(3259), 1, anon_sym_RPAREN, - STATE(1349), 1, + STATE(1270), 1, aux_sym_array_repeat1, - [50326] = 4, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(724), 1, - anon_sym_COMMA, - ACTIONS(3028), 1, - anon_sym_RPAREN, - STATE(1179), 1, - aux_sym_array_repeat1, - [50339] = 4, - ACTIONS(3), 1, + [51501] = 3, + ACTIONS(2973), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(724), 1, + ACTIONS(3241), 2, anon_sym_COMMA, - ACTIONS(3030), 1, anon_sym_RPAREN, - STATE(1179), 1, - aux_sym_array_repeat1, - [50352] = 4, - ACTIONS(3), 1, + [51513] = 4, + ACTIONS(3261), 1, + anon_sym_COMMA, + ACTIONS(3264), 1, + anon_sym_RBRACE, + STATE(1398), 1, + aux_sym_export_clause_repeat1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2325), 1, - anon_sym_COLON, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(3032), 1, - anon_sym_GT, - [50365] = 3, + [51527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3125), 1, + sym__glimmer_template_content, + ACTIONS(3266), 1, + sym_glimmer_closing_tag, + STATE(1357), 1, + aux_sym_glimmer_template_repeat1, + [51543] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(932), 1, + STATE(967), 1, sym_statement_block, - [50375] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [51554] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1483), 1, + STATE(1612), 1, sym_formal_parameters, - [50385] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1415), 1, - sym_formal_parameters, - [50395] = 3, - ACTIONS(3), 1, + [51565] = 3, + ACTIONS(3268), 1, + anon_sym_LBRACE, + STATE(67), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1457), 1, - sym_formal_parameters, - [50405] = 3, - ACTIONS(3), 1, + [51576] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3270), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51585] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3272), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51594] = 3, + ACTIONS(3274), 1, anon_sym_LPAREN, - STATE(38), 1, + STATE(31), 1, sym_parenthesized_expression, - [50415] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [51605] = 3, + ACTIONS(2806), 1, anon_sym_LBRACE, - STATE(945), 1, - sym_statement_block, - [50425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3038), 1, - sym_identifier, - ACTIONS(3040), 1, - anon_sym_STAR, - [50435] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - anon_sym_COLON, - ACTIONS(3005), 1, - anon_sym_GT, - [50445] = 3, - ACTIONS(3), 1, + STATE(597), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3034), 1, + [51616] = 3, + ACTIONS(3274), 1, anon_sym_LPAREN, - STATE(1492), 1, + STATE(1471), 1, sym_parenthesized_expression, - [50455] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51627] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3042), 1, + ACTIONS(3276), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [51636] = 3, + ACTIONS(3278), 1, anon_sym_LBRACE, - STATE(592), 1, + STATE(515), 1, sym_statement_block, - [50465] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3034), 1, + [51647] = 3, + ACTIONS(3274), 1, anon_sym_LPAREN, - STATE(30), 1, + STATE(44), 1, sym_parenthesized_expression, - [50475] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(3005), 1, - anon_sym_GT, - [50485] = 3, - ACTIONS(3), 1, + [51658] = 3, + ACTIONS(3143), 1, + anon_sym_LBRACE, + STATE(314), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2748), 1, + [51669] = 3, + ACTIONS(3278), 1, anon_sym_LBRACE, - STATE(55), 1, - sym_class_body, - [50495] = 3, - ACTIONS(3), 1, + STATE(593), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3044), 1, + [51680] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1541), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51691] = 3, + ACTIONS(3278), 1, + anon_sym_LBRACE, + STATE(519), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51702] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3280), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51711] = 3, + ACTIONS(3282), 1, sym_identifier, - ACTIONS(3046), 1, - sym_jsx_identifier, - [50505] = 2, - ACTIONS(3), 1, + ACTIONS(3284), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3048), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [50513] = 3, - ACTIONS(3), 1, + [51722] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3286), 2, + anon_sym_in, + anon_sym_of, + [51731] = 3, + ACTIONS(2872), 1, + sym_identifier, + ACTIONS(2876), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [51742] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(292), 1, + STATE(941), 1, sym_statement_block, - [50523] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(29), 1, - sym_parenthesized_expression, - [50533] = 2, - ACTIONS(3), 1, + [51753] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2206), 2, + ACTIONS(1715), 2, sym__automatic_semicolon, anon_sym_SEMI, - [50541] = 3, - ACTIONS(3), 1, + [51762] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2748), 1, - anon_sym_LBRACE, - STATE(77), 1, - sym_class_body, - [50551] = 2, - ACTIONS(3), 1, + ACTIONS(521), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [51771] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3050), 2, + ACTIONS(3204), 2, anon_sym_COMMA, anon_sym_RBRACE, - [50559] = 2, - ACTIONS(3), 1, + [51780] = 3, + ACTIONS(3288), 1, + sym_identifier, + ACTIONS(3290), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3052), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50567] = 3, - ACTIONS(3), 1, + [51791] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3292), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [51800] = 3, + ACTIONS(2952), 1, + anon_sym_from, + STATE(1636), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2599), 1, + [51811] = 3, + ACTIONS(2763), 1, anon_sym_LBRACE, - STATE(584), 1, + STATE(757), 1, sym_class_body, - [50577] = 2, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(3054), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [50585] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1481), 1, - sym_formal_parameters, - [50595] = 3, - ACTIONS(3), 1, + [51822] = 3, + ACTIONS(3278), 1, + anon_sym_LBRACE, + STATE(540), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2325), 1, - anon_sym_COLON, - ACTIONS(3032), 1, - anon_sym_GT, - [50605] = 3, - ACTIONS(3), 1, + [51833] = 3, + ACTIONS(3278), 1, + anon_sym_LBRACE, + STATE(595), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(3032), 1, - anon_sym_GT, - [50615] = 3, - ACTIONS(3), 1, + [51844] = 3, + ACTIONS(3143), 1, + anon_sym_LBRACE, + STATE(936), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3056), 1, + [51855] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(317), 1, + STATE(934), 1, sym_statement_block, - [50625] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3056), 1, + [51866] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(328), 1, + STATE(933), 1, sym_statement_block, - [50635] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [51877] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1546), 1, + STATE(1527), 1, sym_formal_parameters, - [50645] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3058), 1, - anon_sym_SEMI, - ACTIONS(3060), 1, - sym__automatic_semicolon, - [50655] = 3, - ACTIONS(3), 1, + [51888] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1526), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2711), 1, - anon_sym_LBRACE, - STATE(313), 1, - sym_class_body, - [50665] = 3, - ACTIONS(3), 1, + [51899] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1400), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51910] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1512), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, + [51921] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(682), 1, + STATE(957), 1, sym_statement_block, - [50675] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [51932] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1425), 1, + STATE(1509), 1, sym_formal_parameters, - [50685] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, - anon_sym_LBRACE, - STATE(683), 1, - sym_statement_block, - [50695] = 3, - ACTIONS(3), 1, + [51943] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1508), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3064), 1, - anon_sym_LBRACE, - STATE(70), 1, - sym_statement_block, - [50705] = 2, - ACTIONS(3), 1, + [51954] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1506), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1800), 2, + [51965] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - anon_sym_COLON, - [50713] = 3, - ACTIONS(3), 1, + STATE(1480), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [51976] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(939), 1, + STATE(961), 1, sym_statement_block, - [50723] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [51987] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1493), 1, + STATE(1580), 1, sym_formal_parameters, - [50733] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [51998] = 3, + ACTIONS(2506), 1, + anon_sym_COLON, + ACTIONS(3236), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [52009] = 3, + ACTIONS(2512), 1, + anon_sym_DOT, + ACTIONS(3236), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52020] = 3, + ACTIONS(3294), 1, anon_sym_LBRACE, - STATE(929), 1, + STATE(704), 1, sym_statement_block, - [50743] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1595), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50751] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52031] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1518), 1, + STATE(1485), 1, sym_formal_parameters, - [50761] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52042] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1526), 1, + STATE(1481), 1, sym_formal_parameters, - [50771] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52053] = 3, + ACTIONS(3143), 1, + anon_sym_LBRACE, + STATE(951), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52064] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1532), 1, + STATE(1489), 1, sym_formal_parameters, - [50781] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [52075] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(953), 1, sym_statement_block, - [50791] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52086] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1863), 2, anon_sym_LPAREN, - STATE(1533), 1, - sym_formal_parameters, - [50801] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + [52095] = 3, + ACTIONS(2981), 1, + anon_sym_LBRACE, + STATE(345), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52106] = 3, + ACTIONS(3296), 1, + anon_sym_LBRACE, + STATE(344), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52117] = 3, + ACTIONS(3298), 1, + anon_sym_COMMA, + ACTIONS(3300), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52128] = 3, + ACTIONS(3296), 1, + anon_sym_LBRACE, + STATE(343), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52139] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1541), 1, + STATE(1576), 1, sym_formal_parameters, - [50811] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52150] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3302), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52159] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3264), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52168] = 3, + ACTIONS(2952), 1, + anon_sym_from, + STATE(1291), 1, + sym__from_clause, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52179] = 3, + ACTIONS(2983), 1, + anon_sym_LBRACE, + STATE(77), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2325), 1, + [52190] = 3, + ACTIONS(2506), 1, anon_sym_COLON, - ACTIONS(2999), 1, + ACTIONS(3156), 1, anon_sym_GT, - [50821] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2333), 1, + [52201] = 3, + ACTIONS(2512), 1, anon_sym_DOT, - ACTIONS(2999), 1, + ACTIONS(3156), 1, anon_sym_GT, - [50831] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1542), 1, - sym_formal_parameters, - [50841] = 3, - ACTIONS(3), 1, + [52212] = 3, + ACTIONS(3268), 1, + anon_sym_LBRACE, + STATE(68), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52223] = 3, + ACTIONS(3268), 1, + anon_sym_LBRACE, + STATE(75), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52234] = 3, + ACTIONS(3294), 1, + anon_sym_LBRACE, + STATE(687), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52245] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1544), 1, + STATE(1402), 1, sym_formal_parameters, - [50851] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52256] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + ACTIONS(3304), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52265] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(948), 1, + STATE(972), 1, sym_statement_block, - [50861] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, - anon_sym_LBRACE, - STATE(941), 1, - sym_statement_block, - [50871] = 3, - ACTIONS(3), 1, + [52276] = 3, + ACTIONS(2506), 1, + anon_sym_COLON, + ACTIONS(3255), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2614), 1, - anon_sym_LBRACE, - STATE(697), 1, - sym_class_body, - [50881] = 3, - ACTIONS(3), 1, + [52287] = 3, + ACTIONS(2512), 1, + anon_sym_DOT, + ACTIONS(3255), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [52298] = 3, + ACTIONS(3306), 1, anon_sym_LBRACE, - STATE(940), 1, - sym_statement_block, - [50891] = 2, - ACTIONS(3), 1, + STATE(417), 1, + sym_switch_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3066), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [50899] = 2, - ACTIONS(3), 1, + [52309] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3068), 2, + ACTIONS(3241), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [50907] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + [52318] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2711), 1, + ACTIONS(3308), 2, anon_sym_LBRACE, - STATE(326), 1, - sym_class_body, - [50917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2614), 1, + anon_sym_EQ_GT, + [52327] = 3, + ACTIONS(3278), 1, anon_sym_LBRACE, - STATE(765), 1, - sym_class_body, - [50927] = 3, - ACTIONS(3), 1, + STATE(590), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3034), 1, + [52338] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(28), 1, - sym_parenthesized_expression, - [50937] = 3, - ACTIONS(3), 1, + STATE(1409), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52349] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1377), 1, + STATE(1412), 1, sym_formal_parameters, - [50947] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3034), 1, - anon_sym_LPAREN, - STATE(27), 1, - sym_parenthesized_expression, - [50957] = 3, - ACTIONS(3), 1, + [52360] = 3, + ACTIONS(2806), 1, + anon_sym_LBRACE, + STATE(585), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3034), 1, + [52371] = 3, + ACTIONS(3310), 1, anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, - [50967] = 3, - ACTIONS(3), 1, + STATE(52), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3042), 1, + [52382] = 3, + ACTIONS(2806), 1, anon_sym_LBRACE, - STATE(556), 1, - sym_statement_block, - [50977] = 3, - ACTIONS(3), 1, + STATE(587), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1378), 1, - sym_formal_parameters, - [50987] = 3, - ACTIONS(3), 1, + [52393] = 3, + ACTIONS(3143), 1, + anon_sym_LBRACE, + STATE(959), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3056), 1, + [52404] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(319), 1, + STATE(949), 1, sym_statement_block, - [50997] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3070), 1, - sym_identifier, - ACTIONS(3072), 1, - sym_private_property_identifier, - [51007] = 2, - ACTIONS(3), 1, + [52415] = 3, + ACTIONS(3274), 1, + anon_sym_LPAREN, + STATE(30), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52426] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3074), 2, + ACTIONS(3312), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 1, - anon_sym_LBRACE, - STATE(381), 1, - sym_statement_block, - [51025] = 3, - ACTIONS(3), 1, + [52435] = 3, + ACTIONS(3274), 1, + anon_sym_LPAREN, + STATE(56), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [52446] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(938), 1, + STATE(952), 1, sym_statement_block, - [51035] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3076), 1, + [52457] = 3, + ACTIONS(3314), 1, anon_sym_SEMI, - ACTIONS(3078), 1, + ACTIONS(3316), 1, sym__automatic_semicolon, - [51045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3042), 1, - anon_sym_LBRACE, - STATE(545), 1, - sym_statement_block, - [51055] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52468] = 3, + ACTIONS(3274), 1, anon_sym_LPAREN, - STATE(1387), 1, - sym_formal_parameters, - [51065] = 3, - ACTIONS(3), 1, + STATE(38), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, + [52479] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3318), 2, anon_sym_LBRACE, - STATE(751), 1, + anon_sym_EQ_GT, + [52488] = 3, + ACTIONS(3143), 1, + anon_sym_LBRACE, + STATE(940), 1, sym_statement_block, - [51075] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3080), 1, - anon_sym_LPAREN, - STATE(45), 1, - sym__for_header, - [51085] = 3, - ACTIONS(3), 1, + [52499] = 3, + ACTIONS(2158), 1, + anon_sym_LBRACE, + STATE(939), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3064), 1, + [52510] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(61), 1, + STATE(968), 1, sym_statement_block, - [51095] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2937), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [51103] = 3, - ACTIONS(3), 1, + [52521] = 3, + ACTIONS(2763), 1, + anon_sym_LBRACE, + STATE(789), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, + [52532] = 3, + ACTIONS(3294), 1, anon_sym_LBRACE, - STATE(709), 1, + STATE(792), 1, sym_statement_block, - [51113] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, + [52543] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(767), 1, + STATE(968), 1, sym_statement_block, - [51123] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52554] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1385), 1, + STATE(1429), 1, sym_formal_parameters, - [51133] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3082), 1, + [52565] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1530), 1, - sym_parenthesized_expression, - [51143] = 2, - ACTIONS(3), 1, + STATE(1430), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3084), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [51151] = 2, - ACTIONS(3), 1, + [52576] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1431), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1209), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51159] = 3, - ACTIONS(3), 1, + [52587] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1436), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52598] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1489), 1, + STATE(1441), 1, sym_formal_parameters, - [51169] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2599), 1, - anon_sym_LBRACE, - STATE(559), 1, - sym_class_body, - [51179] = 3, - ACTIONS(3), 1, + [52609] = 3, + ACTIONS(3310), 1, + anon_sym_LPAREN, + STATE(32), 1, + sym__for_header, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52620] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1423), 1, + STATE(1553), 1, sym_formal_parameters, - [51189] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2477), 2, - anon_sym_in, - anon_sym_of, - [51197] = 3, - ACTIONS(3), 1, + [52631] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1448), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52642] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1553), 1, + STATE(1557), 1, sym_formal_parameters, - [51207] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52653] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1419), 1, + STATE(1558), 1, sym_formal_parameters, - [51217] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3042), 1, - anon_sym_LBRACE, - STATE(585), 1, - sym_statement_block, - [51227] = 2, - ACTIONS(3), 1, + [52664] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2898), 2, + ACTIONS(3189), 2, anon_sym_COMMA, anon_sym_RBRACE, - [51235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2614), 1, + [52673] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(681), 1, - sym_class_body, - [51245] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1724), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51253] = 2, - ACTIONS(3), 1, + STATE(960), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2923), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51261] = 3, - ACTIONS(3), 1, + [52684] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1445), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3042), 1, + [52695] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(588), 1, + STATE(932), 1, sym_statement_block, - [51271] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3086), 2, + [52706] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [51279] = 3, - ACTIONS(3), 1, + STATE(962), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52717] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1389), 1, + STATE(1450), 1, sym_formal_parameters, - [51289] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1394), 1, - sym_formal_parameters, - [51299] = 3, - ACTIONS(3), 1, + [52728] = 3, + ACTIONS(3143), 1, + anon_sym_LBRACE, + STATE(939), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52739] = 3, + ACTIONS(3143), 1, + anon_sym_LBRACE, + STATE(966), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52750] = 3, + ACTIONS(3296), 1, + anon_sym_LBRACE, + STATE(341), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52761] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1401), 1, + STATE(1453), 1, sym_formal_parameters, - [51309] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52772] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1402), 1, + STATE(1455), 1, sym_formal_parameters, - [51319] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2997), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [51327] = 3, - ACTIONS(3), 1, + [52783] = 3, + ACTIONS(3274), 1, + anon_sym_LPAREN, + STATE(37), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [52794] = 3, + ACTIONS(2981), 1, anon_sym_LBRACE, - STATE(938), 1, - sym_statement_block, - [51337] = 3, - ACTIONS(3), 1, + STATE(340), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2057), 1, + [52805] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - ACTIONS(2198), 1, - anon_sym_EQ_GT, - [51347] = 3, - ACTIONS(3), 1, + STATE(1559), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2057), 1, + [52816] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - ACTIONS(3088), 1, - anon_sym_EQ_GT, - [51357] = 3, - ACTIONS(3), 1, + STATE(1560), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [52827] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1404), 1, + STATE(1561), 1, sym_formal_parameters, - [51367] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, - anon_sym_LBRACE, - STATE(947), 1, - sym_statement_block, - [51377] = 3, - ACTIONS(3), 1, + [52838] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3090), 1, + ACTIONS(3320), 2, + sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(3092), 1, + [52847] = 3, + ACTIONS(2763), 1, + anon_sym_LBRACE, + STATE(691), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52858] = 3, + ACTIONS(2806), 1, + anon_sym_LBRACE, + STATE(522), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52869] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3322), 2, sym__automatic_semicolon, - [51387] = 3, - ACTIONS(3), 1, + anon_sym_SEMI, + [52878] = 3, + ACTIONS(2512), 1, + anon_sym_DOT, + ACTIONS(3174), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [52889] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(947), 1, + STATE(965), 1, sym_statement_block, - [51397] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52900] = 3, + ACTIONS(3143), 1, + anon_sym_LBRACE, + STATE(955), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52911] = 3, + ACTIONS(2506), 1, + anon_sym_COLON, + ACTIONS(3174), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [52922] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1699), 2, + ACTIONS(1706), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51405] = 3, - ACTIONS(3), 1, + [52931] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + ACTIONS(1708), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52940] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1451), 1, + STATE(1490), 1, sym_formal_parameters, - [51415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3094), 1, - sym_identifier, - ACTIONS(3096), 1, - anon_sym_STAR, - [51425] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [52951] = 3, + ACTIONS(3278), 1, anon_sym_LBRACE, - STATE(945), 1, + STATE(573), 1, sym_statement_block, - [51435] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [52962] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1471), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [52971] = 3, + ACTIONS(3294), 1, anon_sym_LBRACE, - STATE(932), 1, + STATE(765), 1, sym_statement_block, - [51445] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [52982] = 3, + ACTIONS(3294), 1, anon_sym_LBRACE, - STATE(933), 1, + STATE(764), 1, sym_statement_block, - [51455] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_formal_parameters, - [51465] = 3, - ACTIONS(3), 1, + [52993] = 3, + ACTIONS(2763), 1, + anon_sym_LBRACE, + STATE(760), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53004] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(934), 1, + STATE(953), 1, sym_statement_block, - [51475] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2599), 1, + [53015] = 3, + ACTIONS(3268), 1, anon_sym_LBRACE, - STATE(596), 1, - sym_class_body, - [51485] = 3, - ACTIONS(3), 1, + STATE(66), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, + [53026] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(689), 1, + STATE(951), 1, sym_statement_block, - [51495] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3098), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51503] = 3, - ACTIONS(3), 1, + [53037] = 3, + ACTIONS(2844), 1, + anon_sym_in, + ACTIONS(2846), 1, + anon_sym_of, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53048] = 3, + ACTIONS(3278), 1, anon_sym_LBRACE, - STATE(943), 1, + STATE(598), 1, sym_statement_block, - [51513] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53059] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1493), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53070] = 3, + ACTIONS(3294), 1, anon_sym_LBRACE, - STATE(944), 1, + STATE(740), 1, sym_statement_block, - [51523] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1703), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51531] = 3, - ACTIONS(3), 1, + [53081] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1463), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53092] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1556), 1, + STATE(1534), 1, sym_formal_parameters, - [51541] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53103] = 3, + ACTIONS(3294), 1, anon_sym_LBRACE, - STATE(946), 1, + STATE(744), 1, sym_statement_block, - [51551] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3100), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [51559] = 3, - ACTIONS(3), 1, + [53114] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1464), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53125] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1427), 1, + STATE(1535), 1, sym_formal_parameters, - [51569] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53136] = 3, + ACTIONS(3143), 1, + anon_sym_LBRACE, + STATE(350), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53147] = 3, + ACTIONS(2983), 1, + anon_sym_LBRACE, + STATE(70), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53158] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3102), 2, + ACTIONS(3324), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51577] = 3, - ACTIONS(3), 1, + [53167] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3064), 1, + ACTIONS(3326), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53176] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(72), 1, + STATE(948), 1, sym_statement_block, - [51587] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53187] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(951), 1, + STATE(961), 1, sym_statement_block, - [51597] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2764), 1, + [53198] = 3, + ACTIONS(3328), 1, sym_identifier, - STATE(1370), 1, - sym__import_export_specifier, - [51607] = 3, - ACTIONS(3), 1, + ACTIONS(3330), 1, + sym_jsx_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53209] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(952), 1, + STATE(957), 1, sym_statement_block, - [51617] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3056), 1, + [53220] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(327), 1, + STATE(947), 1, sym_statement_block, - [51627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2599), 1, - anon_sym_LBRACE, - STATE(519), 1, - sym_class_body, - [51637] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53231] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(946), 1, sym_statement_block, - [51647] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53242] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(949), 1, + STATE(944), 1, sym_statement_block, - [51657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1439), 1, - sym_formal_parameters, - [51667] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53253] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(950), 1, + STATE(943), 1, sym_statement_block, - [51677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1444), 1, - sym_formal_parameters, - [51687] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3104), 2, + [53264] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [51695] = 3, - ACTIONS(3), 1, + STATE(942), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3042), 1, + [53275] = 3, + ACTIONS(2763), 1, anon_sym_LBRACE, - STATE(560), 1, - sym_statement_block, - [51705] = 3, - ACTIONS(3), 1, + STATE(787), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3080), 1, - anon_sym_LPAREN, - STATE(35), 1, - sym__for_header, - [51715] = 3, - ACTIONS(3), 1, + [53286] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, + ACTIONS(3147), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [53295] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(690), 1, + STATE(387), 1, sym_statement_block, - [51725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3106), 1, - anon_sym_LBRACE, - STATE(364), 1, - sym_switch_body, - [51735] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [53306] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(950), 1, + STATE(933), 1, sym_statement_block, - [51745] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2614), 1, - anon_sym_LBRACE, - STATE(692), 1, - sym_class_body, - [51755] = 3, - ACTIONS(3), 1, + [53317] = 3, + ACTIONS(3332), 1, + anon_sym_LPAREN, + STATE(336), 1, + sym_parenthesized_expression, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53328] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1534), 1, + STATE(1537), 1, sym_formal_parameters, - [51765] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53339] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1531), 1, + STATE(1539), 1, sym_formal_parameters, - [51775] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53350] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1529), 1, + STATE(1554), 1, sym_formal_parameters, - [51785] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53361] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1527), 1, + STATE(1565), 1, sym_formal_parameters, - [51795] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53372] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1525), 1, + STATE(1573), 1, sym_formal_parameters, - [51805] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3108), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [51813] = 3, - ACTIONS(3), 1, + [53383] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1609), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, + [53394] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(693), 1, + STATE(934), 1, sym_statement_block, - [51823] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53405] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1505), 1, + STATE(1538), 1, sym_formal_parameters, - [51833] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53416] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1501), 1, + STATE(1610), 1, sym_formal_parameters, - [51843] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2861), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51851] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, + [53427] = 3, + ACTIONS(3296), 1, anon_sym_LBRACE, - STATE(696), 1, + STATE(351), 1, sym_statement_block, - [51861] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53438] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3334), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [53447] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1620), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53458] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1491), 1, + STATE(1474), 1, sym_formal_parameters, - [51871] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53469] = 3, + ACTIONS(3143), 1, + anon_sym_LBRACE, + STATE(956), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3110), 2, + [53480] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1461), 2, sym__automatic_semicolon, anon_sym_SEMI, - [51879] = 3, - ACTIONS(3), 1, + [53489] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1621), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2614), 1, - anon_sym_LBRACE, - STATE(747), 1, - sym_class_body, - [51889] = 3, - ACTIONS(3), 1, + [53500] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1623), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2774), 1, - anon_sym_from, - STATE(1456), 1, - sym__from_clause, - [51899] = 3, - ACTIONS(3), 1, + [53511] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1624), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53522] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1486), 1, + STATE(1625), 1, sym_formal_parameters, - [51909] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53533] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1484), 1, + STATE(1640), 1, sym_formal_parameters, - [51919] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3112), 1, - anon_sym_SEMI, - ACTIONS(3114), 1, - sym__automatic_semicolon, - [51929] = 3, - ACTIONS(3), 1, + [53544] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1641), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53555] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1480), 1, + STATE(1642), 1, sym_formal_parameters, - [51939] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53566] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1478), 1, + STATE(1643), 1, sym_formal_parameters, - [51949] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53577] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1473), 1, + STATE(1632), 1, sym_formal_parameters, - [51959] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53588] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1470), 1, + STATE(1630), 1, sym_formal_parameters, - [51969] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53599] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1629), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53610] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1469), 1, + STATE(1628), 1, sym_formal_parameters, - [51979] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [53621] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1556), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53630] = 3, + ACTIONS(3294), 1, anon_sym_LBRACE, - STATE(949), 1, + STATE(773), 1, sym_statement_block, - [51989] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53641] = 3, + ACTIONS(3336), 1, + sym_identifier, + ACTIONS(3338), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53652] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(1576), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [53661] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1618), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, + [53672] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(746), 1, + STATE(942), 1, sym_statement_block, - [51999] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53683] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1467), 1, + STATE(1616), 1, sym_formal_parameters, - [52009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3116), 1, - anon_sym_COMMA, - ACTIONS(3118), 1, - anon_sym_from, - [52019] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53694] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1465), 1, + STATE(1615), 1, sym_formal_parameters, - [52029] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53705] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1463), 1, + STATE(1614), 1, sym_formal_parameters, - [52039] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53716] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1462), 1, + STATE(1608), 1, sym_formal_parameters, - [52049] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, - anon_sym_LBRACE, - STATE(940), 1, - sym_statement_block, - [52059] = 3, - ACTIONS(3), 1, + [53727] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1606), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [53738] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1599), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53749] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(930), 1, + STATE(943), 1, sym_statement_block, - [52069] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53760] = 3, + ACTIONS(2784), 1, + sym_identifier, + ACTIONS(2788), 1, + sym_private_property_identifier, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53771] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(941), 1, + STATE(944), 1, sym_statement_block, - [52079] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53782] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(948), 1, + STATE(936), 1, sym_statement_block, - [52089] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53793] = 3, + ACTIONS(3294), 1, anon_sym_LBRACE, - STATE(935), 1, + STATE(755), 1, sym_statement_block, - [52099] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53804] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3120), 2, + ACTIONS(3340), 2, sym__automatic_semicolon, anon_sym_SEMI, - [52107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3036), 1, + [53813] = 3, + ACTIONS(3294), 1, anon_sym_LBRACE, - STATE(929), 1, + STATE(754), 1, sym_statement_block, - [52117] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [53824] = 3, + ACTIONS(3342), 1, anon_sym_LBRACE, - STATE(952), 1, + STATE(1483), 1, + sym_object, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [53835] = 3, + ACTIONS(2158), 1, + anon_sym_LBRACE, + STATE(946), 1, sym_statement_block, - [52127] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [53846] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(951), 1, + STATE(947), 1, sym_statement_block, - [52137] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3036), 1, + [53857] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(939), 1, + STATE(948), 1, sym_statement_block, - [52147] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2774), 1, - anon_sym_from, - STATE(1420), 1, - sym__from_clause, - [52157] = 3, - ACTIONS(3), 1, + [53868] = 3, + ACTIONS(3344), 1, + anon_sym_SEMI, + ACTIONS(3346), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2614), 1, + [53879] = 3, + ACTIONS(3294), 1, anon_sym_LBRACE, - STATE(701), 1, - sym_class_body, - [52167] = 3, - ACTIONS(3), 1, + STATE(751), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1548), 1, - sym_formal_parameters, - [52177] = 3, - ACTIONS(3), 1, + [53890] = 3, + ACTIONS(2763), 1, + anon_sym_LBRACE, + STATE(753), 1, + sym_class_body, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, - anon_sym_LPAREN, - STATE(1547), 1, - sym_formal_parameters, - [52187] = 3, - ACTIONS(3), 1, + [53901] = 3, + ACTIONS(3294), 1, + anon_sym_LBRACE, + STATE(752), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2333), 1, - anon_sym_DOT, - ACTIONS(2896), 1, - anon_sym_GT, - [52197] = 3, - ACTIONS(3), 1, + [53912] = 3, + ACTIONS(2158), 1, + anon_sym_LBRACE, + STATE(940), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [53923] = 3, + ACTIONS(2684), 1, anon_sym_LPAREN, - STATE(1351), 1, + STATE(1511), 1, sym_formal_parameters, - [52207] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [53934] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(946), 1, + STATE(949), 1, sym_statement_block, - [52217] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [53945] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(944), 1, + STATE(952), 1, sym_statement_block, - [52227] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - anon_sym_COLON, - ACTIONS(2896), 1, - anon_sym_GT, - [52237] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [53956] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(943), 1, + STATE(956), 1, sym_statement_block, - [52247] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2764), 1, - sym_identifier, - STATE(1406), 1, - sym__import_export_specifier, - [52257] = 3, - ACTIONS(3), 1, + [53967] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1494), 1, + sym_formal_parameters, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3064), 1, + [53978] = 3, + ACTIONS(3143), 1, anon_sym_LBRACE, - STATE(65), 1, + STATE(941), 1, sym_statement_block, - [52267] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [53989] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(933), 1, + STATE(955), 1, sym_statement_block, - [52277] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [54000] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(934), 1, + STATE(965), 1, sym_statement_block, - [52287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3122), 1, - sym_identifier, - ACTIONS(3124), 1, - sym_private_property_identifier, - [52297] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3126), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3128), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [52313] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2931), 1, + [54011] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(324), 1, + STATE(967), 1, sym_statement_block, - [52323] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54022] = 3, + ACTIONS(3348), 1, + sym_identifier, + ACTIONS(3350), 1, + anon_sym_STAR, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3042), 1, + [54033] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(602), 1, + STATE(966), 1, sym_statement_block, - [52333] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2648), 1, - anon_sym_in, - ACTIONS(2650), 1, - anon_sym_of, - [52343] = 3, - ACTIONS(3), 1, + [54044] = 3, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(3352), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2501), 1, + [54055] = 3, + ACTIONS(2146), 1, anon_sym_LPAREN, - STATE(1477), 1, + ACTIONS(2358), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54066] = 3, + ACTIONS(2684), 1, + anon_sym_LPAREN, + STATE(1513), 1, sym_formal_parameters, - [52353] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54077] = 3, + ACTIONS(3354), 1, + anon_sym_SEMI, + ACTIONS(3356), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54088] = 2, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, + ACTIONS(3103), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54097] = 3, + ACTIONS(3358), 1, + anon_sym_SEMI, + ACTIONS(3360), 1, + sym__automatic_semicolon, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54108] = 2, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + ACTIONS(3082), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [54117] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(720), 1, + STATE(959), 1, sym_statement_block, - [52363] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3062), 1, + [54128] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(762), 1, + STATE(960), 1, sym_statement_block, - [52373] = 3, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3042), 1, + [54139] = 3, + ACTIONS(2158), 1, anon_sym_LBRACE, - STATE(577), 1, + STATE(932), 1, sym_statement_block, - [52383] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1782), 1, + [54150] = 3, + ACTIONS(2158), 1, + anon_sym_LBRACE, + STATE(962), 1, + sym_statement_block, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54161] = 2, + ACTIONS(1818), 1, anon_sym_RPAREN, - [52390] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3130), 1, - anon_sym_EQ, - [52397] = 2, - ACTIONS(3), 1, + [54169] = 2, + ACTIONS(3362), 1, + anon_sym_target, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3132), 1, - anon_sym_GT, - [52404] = 2, - ACTIONS(3), 1, + [54177] = 2, + ACTIONS(3364), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3134), 1, - anon_sym_GT, - [52411] = 2, - ACTIONS(3), 1, + [54185] = 2, + ACTIONS(2146), 1, + anon_sym_LPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3136), 1, - anon_sym_GT, - [52418] = 2, - ACTIONS(3), 1, + [54193] = 2, + ACTIONS(3366), 1, + anon_sym_while, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3138), 1, - anon_sym_from, - [52425] = 2, - ACTIONS(3), 1, + [54201] = 2, + ACTIONS(3368), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3140), 1, + [54209] = 2, + ACTIONS(3370), 1, anon_sym_EQ, - [52432] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3142), 1, + [54217] = 2, + ACTIONS(3372), 1, anon_sym_EQ_GT, - [52439] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_RBRACK, - [52446] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1774), 1, - anon_sym_RBRACK, - [52453] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3144), 1, - anon_sym_RPAREN, - [52460] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3146), 1, - anon_sym_GT, - [52467] = 2, - ACTIONS(3), 1, + [54225] = 2, + ACTIONS(3374), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3148), 1, - anon_sym_RPAREN, - [52474] = 2, - ACTIONS(3), 1, + [54233] = 2, + ACTIONS(3376), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3150), 1, - anon_sym_EQ_GT, - [52481] = 2, - ACTIONS(3), 1, + [54241] = 2, + ACTIONS(1694), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3152), 1, - anon_sym_GT, - [52488] = 2, + [54249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3378), 1, + sym_regex_pattern, + [54259] = 2, + ACTIONS(3380), 1, anon_sym_EQ_GT, - [52495] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3156), 1, + [54267] = 2, + ACTIONS(3382), 1, anon_sym_EQ_GT, - [52502] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3158), 1, - anon_sym_GT, - [52509] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3160), 1, - anon_sym_GT, - [52516] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2896), 1, - anon_sym_GT, - [52523] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3162), 1, - anon_sym_GT, - [52530] = 2, + [54275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3164), 1, - anon_sym_GT, - [52537] = 2, - ACTIONS(2347), 1, - sym_comment, - ACTIONS(3166), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3384), 1, sym_regex_pattern, - [52544] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2918), 1, - anon_sym_as, - [52551] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1786), 1, - anon_sym_RPAREN, - [52558] = 2, - ACTIONS(3), 1, + [54285] = 2, + ACTIONS(3117), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1772), 1, - anon_sym_RPAREN, - [52565] = 2, - ACTIONS(3), 1, + [54293] = 2, + ACTIONS(3113), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3118), 1, + [54301] = 2, + ACTIONS(3386), 1, anon_sym_from, - [52572] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3168), 1, - anon_sym_GT, - [52579] = 2, - ACTIONS(3), 1, + [54309] = 2, + ACTIONS(3388), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1795), 1, + [54317] = 2, + ACTIONS(1748), 1, anon_sym_RPAREN, - [52586] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3170), 1, + [54325] = 2, + ACTIONS(3390), 1, anon_sym_COLON, - [52593] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3172), 1, - anon_sym_from, - [52600] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3174), 1, - anon_sym_while, - [52607] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3176), 1, - anon_sym_EQ, - [52614] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3178), 1, - anon_sym_from, - [52621] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3180), 1, - anon_sym_GT, - [52628] = 2, - ACTIONS(3), 1, + [54333] = 2, + ACTIONS(1760), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3182), 1, + [54341] = 2, + ACTIONS(1764), 1, anon_sym_RPAREN, - [52635] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3184), 1, - anon_sym_from, - [52642] = 2, - ACTIONS(3), 1, + [54349] = 2, + ACTIONS(1788), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3186), 1, - anon_sym_from, - [52649] = 2, - ACTIONS(3), 1, + [54357] = 2, + ACTIONS(1738), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3188), 1, - anon_sym_function, - [52656] = 2, + [54365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3190), 1, - sym_identifier, - [52663] = 2, - ACTIONS(3), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3392), 1, + anon_sym_SLASH2, + [54375] = 2, + ACTIONS(3394), 1, + anon_sym_target, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3192), 1, - anon_sym_COLON, - [52670] = 2, - ACTIONS(3), 1, + [54383] = 2, + ACTIONS(1794), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3194), 1, - anon_sym_EQ_GT, - [52677] = 2, - ACTIONS(3), 1, + [54391] = 2, + ACTIONS(1796), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1784), 1, - anon_sym_COLON, - [52684] = 2, - ACTIONS(3), 1, + [54399] = 2, + ACTIONS(1750), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3196), 1, + [54407] = 2, + ACTIONS(3396), 1, anon_sym_EQ_GT, - [52691] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3198), 1, - anon_sym_SLASH2, - [52698] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2662), 1, - anon_sym_EQ, - [52705] = 2, - ACTIONS(3), 1, + [54415] = 2, + ACTIONS(3352), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2906), 1, - anon_sym_EQ, - [52712] = 2, - ACTIONS(3), 1, + [54423] = 2, + ACTIONS(3398), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2198), 1, - anon_sym_EQ_GT, - [52719] = 2, - ACTIONS(3), 1, + [54431] = 2, + ACTIONS(1766), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3088), 1, + [54439] = 2, + ACTIONS(2358), 1, anon_sym_EQ_GT, - [52726] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3200), 1, - anon_sym_RBRACE, - [52733] = 2, - ACTIONS(3), 1, + [54447] = 2, + ACTIONS(3400), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3202), 1, - anon_sym_EQ_GT, - [52740] = 2, - ACTIONS(3), 1, + [54455] = 2, + ACTIONS(3402), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2057), 1, - anon_sym_LPAREN, - [52747] = 2, - ACTIONS(3), 1, + [54463] = 2, + ACTIONS(3404), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1778), 1, + [54471] = 2, + ACTIONS(1800), 1, anon_sym_RPAREN, - [52754] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3204), 1, - ts_builtin_sym_end, - [52761] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1764), 1, + [54479] = 2, + ACTIONS(1804), 1, anon_sym_RBRACE, - [52768] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1780), 1, - anon_sym_RPAREN, - [52775] = 2, - ACTIONS(3), 1, + [54487] = 2, + ACTIONS(3406), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3206), 1, - anon_sym_from, - [52782] = 2, - ACTIONS(3), 1, + [54495] = 2, + ACTIONS(1756), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1788), 1, + [54503] = 2, + ACTIONS(1810), 1, anon_sym_RPAREN, - [52789] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3208), 1, - anon_sym_GT, - [52796] = 2, - ACTIONS(3), 1, + [54511] = 2, + ACTIONS(1814), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3210), 1, - anon_sym_target, - [52803] = 2, - ACTIONS(2347), 1, + [54519] = 2, + ACTIONS(1744), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3212), 1, - sym_regex_pattern, - [52810] = 2, - ACTIONS(3), 1, + [54527] = 2, + ACTIONS(2753), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3214), 1, - sym_identifier, - [52817] = 2, - ACTIONS(2347), 1, + [54535] = 2, + ACTIONS(1778), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3216), 1, - sym_regex_pattern, - [52824] = 2, - ACTIONS(3), 1, + [54543] = 2, + ACTIONS(3174), 1, + anon_sym_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3218), 1, - sym_identifier, - [52831] = 2, - ACTIONS(3), 1, + [54551] = 2, + ACTIONS(3408), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3220), 1, + [54559] = 2, + ACTIONS(3410), 1, sym_identifier, - [52838] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3206), 1, + [54567] = 2, + ACTIONS(3412), 1, anon_sym_from, - [52845] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3222), 1, + [54575] = 2, + ACTIONS(3414), 1, anon_sym_from, - [52852] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1804), 1, - anon_sym_RBRACE, - [52859] = 2, - ACTIONS(3), 1, + [54583] = 2, + ACTIONS(3416), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1802), 1, - anon_sym_RBRACK, - [52866] = 2, - ACTIONS(3), 1, + [54591] = 2, + ACTIONS(3418), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3224), 1, + [54599] = 2, + ACTIONS(3156), 1, anon_sym_GT, - [52873] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2999), 1, - anon_sym_GT, - [52880] = 2, - ACTIONS(3), 1, + [54607] = 2, + ACTIONS(3420), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3226), 1, - anon_sym_GT, - [52887] = 2, - ACTIONS(3), 1, + [54615] = 2, + ACTIONS(3422), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3228), 1, - anon_sym_GT, - [52894] = 2, - ACTIONS(3), 1, + [54623] = 2, + ACTIONS(1816), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3230), 1, + [54631] = 2, + ACTIONS(3255), 1, anon_sym_GT, - [52901] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3232), 1, - anon_sym_GT, - [52908] = 2, - ACTIONS(3), 1, + [54639] = 2, + ACTIONS(3424), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3234), 1, - anon_sym_GT, - [52915] = 2, - ACTIONS(3), 1, + [54647] = 2, + ACTIONS(3426), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3236), 1, - anon_sym_GT, - [52922] = 2, - ACTIONS(3), 1, + [54655] = 2, + ACTIONS(1736), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3238), 1, - sym_identifier, - [52929] = 2, - ACTIONS(3), 1, + [54663] = 2, + ACTIONS(3300), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1776), 1, - anon_sym_RBRACE, - [52936] = 2, + [54671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3240), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3428), 1, anon_sym_SLASH2, - [52943] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1768), 1, + [54681] = 2, + ACTIONS(1740), 1, anon_sym_RPAREN, - [52950] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3242), 1, - sym_identifier, - [52957] = 2, - ACTIONS(3), 1, + [54689] = 2, + ACTIONS(3394), 1, + anon_sym_meta, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3244), 1, - anon_sym_GT, - [52964] = 2, - ACTIONS(3), 1, + [54697] = 2, + ACTIONS(3430), 1, + anon_sym_as, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3032), 1, - anon_sym_GT, - [52971] = 2, - ACTIONS(2347), 1, + [54705] = 2, + ACTIONS(1782), 1, + anon_sym_RBRACE, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3246), 1, - sym_regex_pattern, - [52978] = 2, - ACTIONS(3), 1, + [54713] = 2, + ACTIONS(3362), 1, + anon_sym_meta, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3248), 1, - anon_sym_GT, - [52985] = 2, - ACTIONS(3), 1, + [54721] = 2, + ACTIONS(1784), 1, + anon_sym_RBRACK, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3250), 1, + [54729] = 2, + ACTIONS(3236), 1, anon_sym_GT, - [52992] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3252), 1, - anon_sym_GT, - [52999] = 2, - ACTIONS(3), 1, + [54737] = 2, + ACTIONS(3432), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3254), 1, - anon_sym_SLASH2, - [53006] = 2, + [54745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3256), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3434), 1, + anon_sym_SLASH2, + [54755] = 2, + ACTIONS(3436), 1, anon_sym_EQ_GT, - [53013] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3258), 1, + [54763] = 2, + ACTIONS(3438), 1, anon_sym_EQ_GT, - [53020] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3260), 1, - anon_sym_EQ_GT, - [53027] = 2, - ACTIONS(3), 1, + [54771] = 2, + ACTIONS(1752), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3262), 1, + [54779] = 2, + ACTIONS(3440), 1, anon_sym_EQ_GT, - [53034] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3264), 1, - anon_sym_GT, - [53041] = 2, - ACTIONS(3), 1, + [54787] = 2, + ACTIONS(3442), 1, + anon_sym_from, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3266), 1, - anon_sym_GT, - [53048] = 2, - ACTIONS(3), 1, + [54795] = 2, + ACTIONS(3444), 1, + anon_sym_function, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3268), 1, - anon_sym_EQ_GT, - [53055] = 2, - ACTIONS(3), 1, + [54803] = 2, + ACTIONS(3446), 1, + sym_identifier, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3270), 1, - anon_sym_GT, - [53062] = 2, - ACTIONS(3), 1, + [54811] = 2, + ACTIONS(1417), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3272), 1, + [54819] = 2, + ACTIONS(3448), 1, anon_sym_EQ_GT, - [53069] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3274), 1, - anon_sym_EQ_GT, - [53076] = 2, - ACTIONS(3), 1, + [54827] = 2, + ACTIONS(1770), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3276), 1, - anon_sym_GT, - [53083] = 2, - ACTIONS(3), 1, + [54835] = 2, + ACTIONS(3450), 1, + anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3278), 1, - sym_identifier, - [53090] = 2, - ACTIONS(3), 1, + [54843] = 2, + ACTIONS(3452), 1, + ts_builtin_sym_end, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3280), 1, - anon_sym_GT, - [53097] = 2, - ACTIONS(3), 1, + [54851] = 2, + ACTIONS(1909), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3282), 1, + [54859] = 2, + ACTIONS(1772), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54867] = 2, + ACTIONS(3454), 1, anon_sym_EQ_GT, - [53104] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3005), 1, - anon_sym_GT, - [53111] = 2, - ACTIONS(3), 1, + [54875] = 2, + ACTIONS(3456), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3284), 1, + [54883] = 2, + ACTIONS(3458), 1, anon_sym_EQ_GT, - [53118] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3286), 1, + [54891] = 2, + ACTIONS(3460), 1, anon_sym_EQ_GT, - [53125] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3288), 1, - anon_sym_SLASH2, - [53132] = 2, - ACTIONS(3), 1, + [54899] = 2, + ACTIONS(1660), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3290), 1, - anon_sym_RBRACE, - [53139] = 2, + [54907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3292), 1, - anon_sym_target, - [53146] = 2, - ACTIONS(3), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3462), 1, + sym_regex_pattern, + [54917] = 2, + ACTIONS(1774), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(1770), 1, + [54925] = 2, + ACTIONS(1780), 1, anon_sym_RPAREN, - [53153] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3294), 1, - sym_identifier, - [53160] = 2, + [54933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1816), 1, - anon_sym_RBRACK, - [53167] = 2, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3464), 1, + anon_sym_SLASH2, + [54943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3466), 1, + sym_regex_pattern, + [54953] = 2, + ACTIONS(1786), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54961] = 2, + ACTIONS(1792), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54969] = 2, + ACTIONS(3468), 1, anon_sym_EQ_GT, - [53174] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(2822), 1, + [54977] = 2, + ACTIONS(3470), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [54985] = 2, + ACTIONS(3077), 1, anon_sym_EQ, - [53181] = 2, - ACTIONS(3), 1, + ACTIONS(5), 2, + sym_html_comment, sym_comment, - ACTIONS(3298), 1, + [54993] = 2, + ACTIONS(3472), 1, + anon_sym_EQ_GT, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55001] = 2, + ACTIONS(1848), 1, + anon_sym_in, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55009] = 2, + ACTIONS(3474), 1, + anon_sym_RPAREN, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55017] = 2, + ACTIONS(1746), 1, + anon_sym_SEMI, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, + [55025] = 2, + ACTIONS(3476), 1, anon_sym_EQ, + ACTIONS(5), 2, + sym_html_comment, + sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(294)] = 0, - [SMALL_STATE(295)] = 71, - [SMALL_STATE(296)] = 158, - [SMALL_STATE(297)] = 245, - [SMALL_STATE(298)] = 316, - [SMALL_STATE(299)] = 402, - [SMALL_STATE(300)] = 488, - [SMALL_STATE(301)] = 576, - [SMALL_STATE(302)] = 666, - [SMALL_STATE(303)] = 754, - [SMALL_STATE(304)] = 840, - [SMALL_STATE(305)] = 928, - [SMALL_STATE(306)] = 1014, - [SMALL_STATE(307)] = 1088, - [SMALL_STATE(308)] = 1176, - [SMALL_STATE(309)] = 1264, - [SMALL_STATE(310)] = 1335, - [SMALL_STATE(311)] = 1408, - [SMALL_STATE(312)] = 1479, - [SMALL_STATE(313)] = 1566, - [SMALL_STATE(314)] = 1637, - [SMALL_STATE(315)] = 1706, - [SMALL_STATE(316)] = 1777, - [SMALL_STATE(317)] = 1846, - [SMALL_STATE(318)] = 1917, - [SMALL_STATE(319)] = 1986, - [SMALL_STATE(320)] = 2057, - [SMALL_STATE(321)] = 2126, - [SMALL_STATE(322)] = 2197, - [SMALL_STATE(323)] = 2266, - [SMALL_STATE(324)] = 2335, - [SMALL_STATE(325)] = 2404, - [SMALL_STATE(326)] = 2473, - [SMALL_STATE(327)] = 2544, - [SMALL_STATE(328)] = 2615, - [SMALL_STATE(329)] = 2686, - [SMALL_STATE(330)] = 2754, - [SMALL_STATE(331)] = 2822, - [SMALL_STATE(332)] = 2890, - [SMALL_STATE(333)] = 2958, - [SMALL_STATE(334)] = 3026, - [SMALL_STATE(335)] = 3094, - [SMALL_STATE(336)] = 3162, - [SMALL_STATE(337)] = 3230, - [SMALL_STATE(338)] = 3298, - [SMALL_STATE(339)] = 3366, - [SMALL_STATE(340)] = 3434, - [SMALL_STATE(341)] = 3502, - [SMALL_STATE(342)] = 3570, - [SMALL_STATE(343)] = 3638, - [SMALL_STATE(344)] = 3706, - [SMALL_STATE(345)] = 3774, - [SMALL_STATE(346)] = 3842, - [SMALL_STATE(347)] = 3910, - [SMALL_STATE(348)] = 3978, - [SMALL_STATE(349)] = 4046, - [SMALL_STATE(350)] = 4114, - [SMALL_STATE(351)] = 4182, - [SMALL_STATE(352)] = 4250, - [SMALL_STATE(353)] = 4318, - [SMALL_STATE(354)] = 4386, - [SMALL_STATE(355)] = 4454, - [SMALL_STATE(356)] = 4522, - [SMALL_STATE(357)] = 4590, - [SMALL_STATE(358)] = 4658, - [SMALL_STATE(359)] = 4726, - [SMALL_STATE(360)] = 4794, - [SMALL_STATE(361)] = 4878, - [SMALL_STATE(362)] = 4946, - [SMALL_STATE(363)] = 5014, - [SMALL_STATE(364)] = 5082, - [SMALL_STATE(365)] = 5150, - [SMALL_STATE(366)] = 5218, - [SMALL_STATE(367)] = 5286, - [SMALL_STATE(368)] = 5354, - [SMALL_STATE(369)] = 5422, - [SMALL_STATE(370)] = 5490, - [SMALL_STATE(371)] = 5558, - [SMALL_STATE(372)] = 5626, - [SMALL_STATE(373)] = 5694, - [SMALL_STATE(374)] = 5762, - [SMALL_STATE(375)] = 5830, - [SMALL_STATE(376)] = 5898, - [SMALL_STATE(377)] = 5966, - [SMALL_STATE(378)] = 6034, - [SMALL_STATE(379)] = 6102, - [SMALL_STATE(380)] = 6170, - [SMALL_STATE(381)] = 6238, - [SMALL_STATE(382)] = 6306, - [SMALL_STATE(383)] = 6374, - [SMALL_STATE(384)] = 6442, - [SMALL_STATE(385)] = 6510, - [SMALL_STATE(386)] = 6578, - [SMALL_STATE(387)] = 6646, - [SMALL_STATE(388)] = 6714, - [SMALL_STATE(389)] = 6782, - [SMALL_STATE(390)] = 6850, - [SMALL_STATE(391)] = 6918, - [SMALL_STATE(392)] = 7006, - [SMALL_STATE(393)] = 7074, - [SMALL_STATE(394)] = 7142, - [SMALL_STATE(395)] = 7210, - [SMALL_STATE(396)] = 7278, - [SMALL_STATE(397)] = 7346, - [SMALL_STATE(398)] = 7414, - [SMALL_STATE(399)] = 7482, - [SMALL_STATE(400)] = 7550, - [SMALL_STATE(401)] = 7618, - [SMALL_STATE(402)] = 7686, - [SMALL_STATE(403)] = 7754, - [SMALL_STATE(404)] = 7822, - [SMALL_STATE(405)] = 7890, - [SMALL_STATE(406)] = 7958, - [SMALL_STATE(407)] = 8026, - [SMALL_STATE(408)] = 8094, - [SMALL_STATE(409)] = 8162, - [SMALL_STATE(410)] = 8230, - [SMALL_STATE(411)] = 8298, - [SMALL_STATE(412)] = 8366, - [SMALL_STATE(413)] = 8434, - [SMALL_STATE(414)] = 8502, - [SMALL_STATE(415)] = 8570, - [SMALL_STATE(416)] = 8638, - [SMALL_STATE(417)] = 8706, - [SMALL_STATE(418)] = 8774, - [SMALL_STATE(419)] = 8858, - [SMALL_STATE(420)] = 8926, - [SMALL_STATE(421)] = 8994, - [SMALL_STATE(422)] = 9062, - [SMALL_STATE(423)] = 9130, - [SMALL_STATE(424)] = 9198, - [SMALL_STATE(425)] = 9266, - [SMALL_STATE(426)] = 9350, - [SMALL_STATE(427)] = 9418, - [SMALL_STATE(428)] = 9505, - [SMALL_STATE(429)] = 9588, - [SMALL_STATE(430)] = 9671, - [SMALL_STATE(431)] = 9752, - [SMALL_STATE(432)] = 9833, - [SMALL_STATE(433)] = 9914, - [SMALL_STATE(434)] = 9978, - [SMALL_STATE(435)] = 10042, - [SMALL_STATE(436)] = 10106, - [SMALL_STATE(437)] = 10170, - [SMALL_STATE(438)] = 10234, - [SMALL_STATE(439)] = 10298, - [SMALL_STATE(440)] = 10362, - [SMALL_STATE(441)] = 10430, - [SMALL_STATE(442)] = 10493, - [SMALL_STATE(443)] = 10556, - [SMALL_STATE(444)] = 10625, - [SMALL_STATE(445)] = 10694, - [SMALL_STATE(446)] = 10757, - [SMALL_STATE(447)] = 10820, - [SMALL_STATE(448)] = 10883, - [SMALL_STATE(449)] = 10946, - [SMALL_STATE(450)] = 11015, - [SMALL_STATE(451)] = 11078, - [SMALL_STATE(452)] = 11147, - [SMALL_STATE(453)] = 11210, - [SMALL_STATE(454)] = 11278, - [SMALL_STATE(455)] = 11346, - [SMALL_STATE(456)] = 11408, - [SMALL_STATE(457)] = 11476, - [SMALL_STATE(458)] = 11544, - [SMALL_STATE(459)] = 11614, - [SMALL_STATE(460)] = 11682, - [SMALL_STATE(461)] = 11744, - [SMALL_STATE(462)] = 11806, - [SMALL_STATE(463)] = 11868, - [SMALL_STATE(464)] = 11930, - [SMALL_STATE(465)] = 11998, - [SMALL_STATE(466)] = 12070, - [SMALL_STATE(467)] = 12138, - [SMALL_STATE(468)] = 12208, - [SMALL_STATE(469)] = 12278, - [SMALL_STATE(470)] = 12340, - [SMALL_STATE(471)] = 12402, - [SMALL_STATE(472)] = 12472, - [SMALL_STATE(473)] = 12542, - [SMALL_STATE(474)] = 12608, - [SMALL_STATE(475)] = 12680, - [SMALL_STATE(476)] = 12746, - [SMALL_STATE(477)] = 12816, - [SMALL_STATE(478)] = 12886, - [SMALL_STATE(479)] = 12956, - [SMALL_STATE(480)] = 13026, - [SMALL_STATE(481)] = 13096, - [SMALL_STATE(482)] = 13164, - [SMALL_STATE(483)] = 13229, - [SMALL_STATE(484)] = 13298, - [SMALL_STATE(485)] = 13365, - [SMALL_STATE(486)] = 13432, - [SMALL_STATE(487)] = 13497, - [SMALL_STATE(488)] = 13564, - [SMALL_STATE(489)] = 13633, - [SMALL_STATE(490)] = 13702, - [SMALL_STATE(491)] = 13768, - [SMALL_STATE(492)] = 13834, - [SMALL_STATE(493)] = 13904, - [SMALL_STATE(494)] = 13974, - [SMALL_STATE(495)] = 14040, - [SMALL_STATE(496)] = 14105, - [SMALL_STATE(497)] = 14170, - [SMALL_STATE(498)] = 14239, - [SMALL_STATE(499)] = 14304, - [SMALL_STATE(500)] = 14369, - [SMALL_STATE(501)] = 14436, - [SMALL_STATE(502)] = 14505, - [SMALL_STATE(503)] = 14567, - [SMALL_STATE(504)] = 14633, - [SMALL_STATE(505)] = 14701, - [SMALL_STATE(506)] = 14765, - [SMALL_STATE(507)] = 14829, - [SMALL_STATE(508)] = 14891, - [SMALL_STATE(509)] = 14945, - [SMALL_STATE(510)] = 14998, - [SMALL_STATE(511)] = 15049, - [SMALL_STATE(512)] = 15102, - [SMALL_STATE(513)] = 15161, - [SMALL_STATE(514)] = 15214, - [SMALL_STATE(515)] = 15265, - [SMALL_STATE(516)] = 15318, - [SMALL_STATE(517)] = 15369, - [SMALL_STATE(518)] = 15417, - [SMALL_STATE(519)] = 15511, - [SMALL_STATE(520)] = 15559, - [SMALL_STATE(521)] = 15607, - [SMALL_STATE(522)] = 15667, - [SMALL_STATE(523)] = 15729, - [SMALL_STATE(524)] = 15777, - [SMALL_STATE(525)] = 15827, - [SMALL_STATE(526)] = 15875, - [SMALL_STATE(527)] = 15923, - [SMALL_STATE(528)] = 16017, - [SMALL_STATE(529)] = 16065, - [SMALL_STATE(530)] = 16113, - [SMALL_STATE(531)] = 16207, - [SMALL_STATE(532)] = 16255, - [SMALL_STATE(533)] = 16349, - [SMALL_STATE(534)] = 16443, - [SMALL_STATE(535)] = 16491, - [SMALL_STATE(536)] = 16539, - [SMALL_STATE(537)] = 16587, - [SMALL_STATE(538)] = 16635, - [SMALL_STATE(539)] = 16683, - [SMALL_STATE(540)] = 16731, - [SMALL_STATE(541)] = 16779, - [SMALL_STATE(542)] = 16827, - [SMALL_STATE(543)] = 16917, - [SMALL_STATE(544)] = 16965, - [SMALL_STATE(545)] = 17059, - [SMALL_STATE(546)] = 17107, - [SMALL_STATE(547)] = 17155, - [SMALL_STATE(548)] = 17217, - [SMALL_STATE(549)] = 17295, - [SMALL_STATE(550)] = 17359, - [SMALL_STATE(551)] = 17427, - [SMALL_STATE(552)] = 17513, - [SMALL_STATE(553)] = 17561, - [SMALL_STATE(554)] = 17609, - [SMALL_STATE(555)] = 17657, - [SMALL_STATE(556)] = 17705, - [SMALL_STATE(557)] = 17753, - [SMALL_STATE(558)] = 17837, - [SMALL_STATE(559)] = 17887, - [SMALL_STATE(560)] = 17935, - [SMALL_STATE(561)] = 17983, - [SMALL_STATE(562)] = 18031, - [SMALL_STATE(563)] = 18125, - [SMALL_STATE(564)] = 18173, - [SMALL_STATE(565)] = 18255, - [SMALL_STATE(566)] = 18303, - [SMALL_STATE(567)] = 18373, - [SMALL_STATE(568)] = 18421, - [SMALL_STATE(569)] = 18515, - [SMALL_STATE(570)] = 18603, - [SMALL_STATE(571)] = 18689, - [SMALL_STATE(572)] = 18737, - [SMALL_STATE(573)] = 18787, - [SMALL_STATE(574)] = 18835, - [SMALL_STATE(575)] = 18883, - [SMALL_STATE(576)] = 18931, - [SMALL_STATE(577)] = 18979, - [SMALL_STATE(578)] = 19027, - [SMALL_STATE(579)] = 19121, - [SMALL_STATE(580)] = 19169, - [SMALL_STATE(581)] = 19217, - [SMALL_STATE(582)] = 19265, - [SMALL_STATE(583)] = 19313, - [SMALL_STATE(584)] = 19361, - [SMALL_STATE(585)] = 19409, - [SMALL_STATE(586)] = 19457, - [SMALL_STATE(587)] = 19551, - [SMALL_STATE(588)] = 19599, - [SMALL_STATE(589)] = 19647, - [SMALL_STATE(590)] = 19695, - [SMALL_STATE(591)] = 19743, - [SMALL_STATE(592)] = 19791, - [SMALL_STATE(593)] = 19839, - [SMALL_STATE(594)] = 19887, - [SMALL_STATE(595)] = 19935, - [SMALL_STATE(596)] = 19983, - [SMALL_STATE(597)] = 20031, - [SMALL_STATE(598)] = 20079, - [SMALL_STATE(599)] = 20173, - [SMALL_STATE(600)] = 20221, - [SMALL_STATE(601)] = 20269, - [SMALL_STATE(602)] = 20317, - [SMALL_STATE(603)] = 20365, - [SMALL_STATE(604)] = 20413, - [SMALL_STATE(605)] = 20461, - [SMALL_STATE(606)] = 20535, - [SMALL_STATE(607)] = 20583, - [SMALL_STATE(608)] = 20631, - [SMALL_STATE(609)] = 20685, - [SMALL_STATE(610)] = 20781, - [SMALL_STATE(611)] = 20829, - [SMALL_STATE(612)] = 20923, - [SMALL_STATE(613)] = 20987, - [SMALL_STATE(614)] = 21080, - [SMALL_STATE(615)] = 21173, - [SMALL_STATE(616)] = 21266, - [SMALL_STATE(617)] = 21359, - [SMALL_STATE(618)] = 21452, - [SMALL_STATE(619)] = 21541, - [SMALL_STATE(620)] = 21618, - [SMALL_STATE(621)] = 21711, - [SMALL_STATE(622)] = 21800, - [SMALL_STATE(623)] = 21863, - [SMALL_STATE(624)] = 21956, - [SMALL_STATE(625)] = 22009, - [SMALL_STATE(626)] = 22102, - [SMALL_STATE(627)] = 22185, - [SMALL_STATE(628)] = 22278, - [SMALL_STATE(629)] = 22371, - [SMALL_STATE(630)] = 22464, - [SMALL_STATE(631)] = 22557, - [SMALL_STATE(632)] = 22620, - [SMALL_STATE(633)] = 22687, - [SMALL_STATE(634)] = 22754, - [SMALL_STATE(635)] = 22803, - [SMALL_STATE(636)] = 22896, - [SMALL_STATE(637)] = 22947, - [SMALL_STATE(638)] = 23032, - [SMALL_STATE(639)] = 23115, - [SMALL_STATE(640)] = 23196, - [SMALL_STATE(641)] = 23265, - [SMALL_STATE(642)] = 23358, - [SMALL_STATE(643)] = 23445, - [SMALL_STATE(644)] = 23530, - [SMALL_STATE(645)] = 23615, - [SMALL_STATE(646)] = 23692, - [SMALL_STATE(647)] = 23739, - [SMALL_STATE(648)] = 23832, - [SMALL_STATE(649)] = 23905, - [SMALL_STATE(650)] = 23998, - [SMALL_STATE(651)] = 24079, - [SMALL_STATE(652)] = 24148, - [SMALL_STATE(653)] = 24241, - [SMALL_STATE(654)] = 24290, - [SMALL_STATE(655)] = 24339, - [SMALL_STATE(656)] = 24388, - [SMALL_STATE(657)] = 24475, - [SMALL_STATE(658)] = 24568, - [SMALL_STATE(659)] = 24663, - [SMALL_STATE(660)] = 24712, - [SMALL_STATE(661)] = 24797, - [SMALL_STATE(662)] = 24870, - [SMALL_STATE(663)] = 24933, - [SMALL_STATE(664)] = 24996, - [SMALL_STATE(665)] = 25089, - [SMALL_STATE(666)] = 25182, - [SMALL_STATE(667)] = 25275, - [SMALL_STATE(668)] = 25368, - [SMALL_STATE(669)] = 25461, - [SMALL_STATE(670)] = 25510, - [SMALL_STATE(671)] = 25603, - [SMALL_STATE(672)] = 25652, - [SMALL_STATE(673)] = 25745, - [SMALL_STATE(674)] = 25842, - [SMALL_STATE(675)] = 25899, - [SMALL_STATE(676)] = 25996, - [SMALL_STATE(677)] = 26089, - [SMALL_STATE(678)] = 26140, - [SMALL_STATE(679)] = 26187, - [SMALL_STATE(680)] = 26284, - [SMALL_STATE(681)] = 26333, - [SMALL_STATE(682)] = 26379, - [SMALL_STATE(683)] = 26425, - [SMALL_STATE(684)] = 26471, - [SMALL_STATE(685)] = 26517, - [SMALL_STATE(686)] = 26569, - [SMALL_STATE(687)] = 26615, - [SMALL_STATE(688)] = 26665, - [SMALL_STATE(689)] = 26715, - [SMALL_STATE(690)] = 26761, - [SMALL_STATE(691)] = 26811, - [SMALL_STATE(692)] = 26903, - [SMALL_STATE(693)] = 26949, - [SMALL_STATE(694)] = 26995, - [SMALL_STATE(695)] = 27041, - [SMALL_STATE(696)] = 27087, - [SMALL_STATE(697)] = 27133, - [SMALL_STATE(698)] = 27179, - [SMALL_STATE(699)] = 27225, - [SMALL_STATE(700)] = 27321, - [SMALL_STATE(701)] = 27367, - [SMALL_STATE(702)] = 27417, - [SMALL_STATE(703)] = 27467, - [SMALL_STATE(704)] = 27513, - [SMALL_STATE(705)] = 27609, - [SMALL_STATE(706)] = 27655, - [SMALL_STATE(707)] = 27749, - [SMALL_STATE(708)] = 27795, - [SMALL_STATE(709)] = 27841, - [SMALL_STATE(710)] = 27891, - [SMALL_STATE(711)] = 27937, - [SMALL_STATE(712)] = 28033, - [SMALL_STATE(713)] = 28079, - [SMALL_STATE(714)] = 28171, - [SMALL_STATE(715)] = 28217, - [SMALL_STATE(716)] = 28311, - [SMALL_STATE(717)] = 28405, - [SMALL_STATE(718)] = 28451, - [SMALL_STATE(719)] = 28503, - [SMALL_STATE(720)] = 28555, - [SMALL_STATE(721)] = 28605, - [SMALL_STATE(722)] = 28651, - [SMALL_STATE(723)] = 28699, - [SMALL_STATE(724)] = 28751, - [SMALL_STATE(725)] = 28797, - [SMALL_STATE(726)] = 28843, - [SMALL_STATE(727)] = 28889, - [SMALL_STATE(728)] = 28939, - [SMALL_STATE(729)] = 28989, - [SMALL_STATE(730)] = 29035, - [SMALL_STATE(731)] = 29081, - [SMALL_STATE(732)] = 29127, - [SMALL_STATE(733)] = 29173, - [SMALL_STATE(734)] = 29221, - [SMALL_STATE(735)] = 29267, - [SMALL_STATE(736)] = 29313, - [SMALL_STATE(737)] = 29359, - [SMALL_STATE(738)] = 29455, - [SMALL_STATE(739)] = 29503, - [SMALL_STATE(740)] = 29551, - [SMALL_STATE(741)] = 29647, - [SMALL_STATE(742)] = 29693, - [SMALL_STATE(743)] = 29787, - [SMALL_STATE(744)] = 29833, - [SMALL_STATE(745)] = 29885, - [SMALL_STATE(746)] = 29931, - [SMALL_STATE(747)] = 29977, - [SMALL_STATE(748)] = 30023, - [SMALL_STATE(749)] = 30073, - [SMALL_STATE(750)] = 30119, - [SMALL_STATE(751)] = 30169, - [SMALL_STATE(752)] = 30219, - [SMALL_STATE(753)] = 30269, - [SMALL_STATE(754)] = 30315, - [SMALL_STATE(755)] = 30361, - [SMALL_STATE(756)] = 30407, - [SMALL_STATE(757)] = 30453, - [SMALL_STATE(758)] = 30499, - [SMALL_STATE(759)] = 30545, - [SMALL_STATE(760)] = 30591, - [SMALL_STATE(761)] = 30637, - [SMALL_STATE(762)] = 30733, - [SMALL_STATE(763)] = 30779, - [SMALL_STATE(764)] = 30825, - [SMALL_STATE(765)] = 30871, - [SMALL_STATE(766)] = 30921, - [SMALL_STATE(767)] = 30967, - [SMALL_STATE(768)] = 31013, - [SMALL_STATE(769)] = 31059, - [SMALL_STATE(770)] = 31105, - [SMALL_STATE(771)] = 31196, - [SMALL_STATE(772)] = 31287, - [SMALL_STATE(773)] = 31380, - [SMALL_STATE(774)] = 31473, - [SMALL_STATE(775)] = 31564, - [SMALL_STATE(776)] = 31639, - [SMALL_STATE(777)] = 31732, - [SMALL_STATE(778)] = 31819, - [SMALL_STATE(779)] = 31912, - [SMALL_STATE(780)] = 32005, - [SMALL_STATE(781)] = 32096, - [SMALL_STATE(782)] = 32187, - [SMALL_STATE(783)] = 32278, - [SMALL_STATE(784)] = 32371, - [SMALL_STATE(785)] = 32464, - [SMALL_STATE(786)] = 32557, - [SMALL_STATE(787)] = 32650, - [SMALL_STATE(788)] = 32743, - [SMALL_STATE(789)] = 32836, - [SMALL_STATE(790)] = 32915, - [SMALL_STATE(791)] = 33008, - [SMALL_STATE(792)] = 33099, - [SMALL_STATE(793)] = 33192, - [SMALL_STATE(794)] = 33241, - [SMALL_STATE(795)] = 33302, - [SMALL_STATE(796)] = 33395, - [SMALL_STATE(797)] = 33444, - [SMALL_STATE(798)] = 33535, - [SMALL_STATE(799)] = 33600, - [SMALL_STATE(800)] = 33649, - [SMALL_STATE(801)] = 33740, - [SMALL_STATE(802)] = 33831, - [SMALL_STATE(803)] = 33922, - [SMALL_STATE(804)] = 34015, - [SMALL_STATE(805)] = 34106, - [SMALL_STATE(806)] = 34197, - [SMALL_STATE(807)] = 34258, - [SMALL_STATE(808)] = 34351, - [SMALL_STATE(809)] = 34434, - [SMALL_STATE(810)] = 34505, - [SMALL_STATE(811)] = 34588, - [SMALL_STATE(812)] = 34673, - [SMALL_STATE(813)] = 34764, - [SMALL_STATE(814)] = 34845, - [SMALL_STATE(815)] = 34936, - [SMALL_STATE(816)] = 35029, - [SMALL_STATE(817)] = 35122, - [SMALL_STATE(818)] = 35189, - [SMALL_STATE(819)] = 35282, - [SMALL_STATE(820)] = 35373, - [SMALL_STATE(821)] = 35466, - [SMALL_STATE(822)] = 35556, - [SMALL_STATE(823)] = 35616, - [SMALL_STATE(824)] = 35706, - [SMALL_STATE(825)] = 35796, - [SMALL_STATE(826)] = 35886, - [SMALL_STATE(827)] = 35976, - [SMALL_STATE(828)] = 36066, - [SMALL_STATE(829)] = 36156, - [SMALL_STATE(830)] = 36246, - [SMALL_STATE(831)] = 36336, - [SMALL_STATE(832)] = 36426, - [SMALL_STATE(833)] = 36512, - [SMALL_STATE(834)] = 36586, - [SMALL_STATE(835)] = 36636, - [SMALL_STATE(836)] = 36728, - [SMALL_STATE(837)] = 36792, - [SMALL_STATE(838)] = 36874, - [SMALL_STATE(839)] = 36954, - [SMALL_STATE(840)] = 37032, - [SMALL_STATE(841)] = 37122, - [SMALL_STATE(842)] = 37212, - [SMALL_STATE(843)] = 37278, - [SMALL_STATE(844)] = 37362, - [SMALL_STATE(845)] = 37452, - [SMALL_STATE(846)] = 37542, - [SMALL_STATE(847)] = 37624, - [SMALL_STATE(848)] = 37694, - [SMALL_STATE(849)] = 37744, - [SMALL_STATE(850)] = 37834, - [SMALL_STATE(851)] = 37924, - [SMALL_STATE(852)] = 37984, - [SMALL_STATE(853)] = 38074, - [SMALL_STATE(854)] = 38164, - [SMALL_STATE(855)] = 38214, - [SMALL_STATE(856)] = 38304, - [SMALL_STATE(857)] = 38394, - [SMALL_STATE(858)] = 38444, - [SMALL_STATE(859)] = 38531, - [SMALL_STATE(860)] = 38580, - [SMALL_STATE(861)] = 38667, - [SMALL_STATE(862)] = 38716, - [SMALL_STATE(863)] = 38765, - [SMALL_STATE(864)] = 38810, - [SMALL_STATE(865)] = 38855, - [SMALL_STATE(866)] = 38904, - [SMALL_STATE(867)] = 38985, - [SMALL_STATE(868)] = 39066, - [SMALL_STATE(869)] = 39147, - [SMALL_STATE(870)] = 39228, - [SMALL_STATE(871)] = 39309, - [SMALL_STATE(872)] = 39390, - [SMALL_STATE(873)] = 39471, - [SMALL_STATE(874)] = 39544, - [SMALL_STATE(875)] = 39613, - [SMALL_STATE(876)] = 39668, - [SMALL_STATE(877)] = 39737, - [SMALL_STATE(878)] = 39806, - [SMALL_STATE(879)] = 39875, - [SMALL_STATE(880)] = 39930, - [SMALL_STATE(881)] = 39999, - [SMALL_STATE(882)] = 40068, - [SMALL_STATE(883)] = 40137, - [SMALL_STATE(884)] = 40206, - [SMALL_STATE(885)] = 40275, - [SMALL_STATE(886)] = 40335, - [SMALL_STATE(887)] = 40385, - [SMALL_STATE(888)] = 40441, - [SMALL_STATE(889)] = 40495, - [SMALL_STATE(890)] = 40551, - [SMALL_STATE(891)] = 40605, - [SMALL_STATE(892)] = 40659, - [SMALL_STATE(893)] = 40713, - [SMALL_STATE(894)] = 40769, - [SMALL_STATE(895)] = 40825, - [SMALL_STATE(896)] = 40881, - [SMALL_STATE(897)] = 40935, - [SMALL_STATE(898)] = 40991, - [SMALL_STATE(899)] = 41045, - [SMALL_STATE(900)] = 41099, - [SMALL_STATE(901)] = 41155, - [SMALL_STATE(902)] = 41204, - [SMALL_STATE(903)] = 41253, - [SMALL_STATE(904)] = 41302, - [SMALL_STATE(905)] = 41351, - [SMALL_STATE(906)] = 41400, - [SMALL_STATE(907)] = 41449, - [SMALL_STATE(908)] = 41498, - [SMALL_STATE(909)] = 41546, - [SMALL_STATE(910)] = 41592, - [SMALL_STATE(911)] = 41633, - [SMALL_STATE(912)] = 41678, - [SMALL_STATE(913)] = 41721, - [SMALL_STATE(914)] = 41762, - [SMALL_STATE(915)] = 41817, - [SMALL_STATE(916)] = 41860, - [SMALL_STATE(917)] = 41905, - [SMALL_STATE(918)] = 41946, - [SMALL_STATE(919)] = 41989, - [SMALL_STATE(920)] = 42032, - [SMALL_STATE(921)] = 42082, - [SMALL_STATE(922)] = 42118, - [SMALL_STATE(923)] = 42154, - [SMALL_STATE(924)] = 42204, - [SMALL_STATE(925)] = 42242, - [SMALL_STATE(926)] = 42278, - [SMALL_STATE(927)] = 42314, - [SMALL_STATE(928)] = 42350, - [SMALL_STATE(929)] = 42386, - [SMALL_STATE(930)] = 42411, - [SMALL_STATE(931)] = 42436, - [SMALL_STATE(932)] = 42481, - [SMALL_STATE(933)] = 42506, - [SMALL_STATE(934)] = 42531, - [SMALL_STATE(935)] = 42556, - [SMALL_STATE(936)] = 42581, - [SMALL_STATE(937)] = 42612, - [SMALL_STATE(938)] = 42639, - [SMALL_STATE(939)] = 42664, - [SMALL_STATE(940)] = 42689, - [SMALL_STATE(941)] = 42714, - [SMALL_STATE(942)] = 42739, - [SMALL_STATE(943)] = 42766, - [SMALL_STATE(944)] = 42791, - [SMALL_STATE(945)] = 42816, - [SMALL_STATE(946)] = 42841, - [SMALL_STATE(947)] = 42866, - [SMALL_STATE(948)] = 42891, - [SMALL_STATE(949)] = 42916, - [SMALL_STATE(950)] = 42941, - [SMALL_STATE(951)] = 42966, - [SMALL_STATE(952)] = 42991, - [SMALL_STATE(953)] = 43016, - [SMALL_STATE(954)] = 43040, - [SMALL_STATE(955)] = 43076, - [SMALL_STATE(956)] = 43102, - [SMALL_STATE(957)] = 43126, - [SMALL_STATE(958)] = 43168, - [SMALL_STATE(959)] = 43208, - [SMALL_STATE(960)] = 43238, - [SMALL_STATE(961)] = 43262, - [SMALL_STATE(962)] = 43304, - [SMALL_STATE(963)] = 43346, - [SMALL_STATE(964)] = 43386, - [SMALL_STATE(965)] = 43424, - [SMALL_STATE(966)] = 43457, - [SMALL_STATE(967)] = 43480, - [SMALL_STATE(968)] = 43513, - [SMALL_STATE(969)] = 43546, - [SMALL_STATE(970)] = 43579, - [SMALL_STATE(971)] = 43612, - [SMALL_STATE(972)] = 43635, - [SMALL_STATE(973)] = 43668, - [SMALL_STATE(974)] = 43689, - [SMALL_STATE(975)] = 43712, - [SMALL_STATE(976)] = 43733, - [SMALL_STATE(977)] = 43766, - [SMALL_STATE(978)] = 43799, - [SMALL_STATE(979)] = 43832, - [SMALL_STATE(980)] = 43853, - [SMALL_STATE(981)] = 43886, - [SMALL_STATE(982)] = 43919, - [SMALL_STATE(983)] = 43942, - [SMALL_STATE(984)] = 43963, - [SMALL_STATE(985)] = 43996, - [SMALL_STATE(986)] = 44029, - [SMALL_STATE(987)] = 44062, - [SMALL_STATE(988)] = 44095, - [SMALL_STATE(989)] = 44116, - [SMALL_STATE(990)] = 44139, - [SMALL_STATE(991)] = 44172, - [SMALL_STATE(992)] = 44202, - [SMALL_STATE(993)] = 44224, - [SMALL_STATE(994)] = 44246, - [SMALL_STATE(995)] = 44276, - [SMALL_STATE(996)] = 44306, - [SMALL_STATE(997)] = 44336, - [SMALL_STATE(998)] = 44366, - [SMALL_STATE(999)] = 44396, - [SMALL_STATE(1000)] = 44426, - [SMALL_STATE(1001)] = 44456, - [SMALL_STATE(1002)] = 44486, - [SMALL_STATE(1003)] = 44516, - [SMALL_STATE(1004)] = 44546, - [SMALL_STATE(1005)] = 44568, - [SMALL_STATE(1006)] = 44590, - [SMALL_STATE(1007)] = 44620, - [SMALL_STATE(1008)] = 44642, - [SMALL_STATE(1009)] = 44672, - [SMALL_STATE(1010)] = 44702, - [SMALL_STATE(1011)] = 44724, - [SMALL_STATE(1012)] = 44759, - [SMALL_STATE(1013)] = 44794, - [SMALL_STATE(1014)] = 44829, - [SMALL_STATE(1015)] = 44864, - [SMALL_STATE(1016)] = 44890, - [SMALL_STATE(1017)] = 44916, - [SMALL_STATE(1018)] = 44948, - [SMALL_STATE(1019)] = 44980, - [SMALL_STATE(1020)] = 45006, - [SMALL_STATE(1021)] = 45032, - [SMALL_STATE(1022)] = 45064, - [SMALL_STATE(1023)] = 45090, - [SMALL_STATE(1024)] = 45122, - [SMALL_STATE(1025)] = 45148, - [SMALL_STATE(1026)] = 45180, - [SMALL_STATE(1027)] = 45206, - [SMALL_STATE(1028)] = 45238, - [SMALL_STATE(1029)] = 45270, - [SMALL_STATE(1030)] = 45296, - [SMALL_STATE(1031)] = 45322, - [SMALL_STATE(1032)] = 45348, - [SMALL_STATE(1033)] = 45380, - [SMALL_STATE(1034)] = 45409, - [SMALL_STATE(1035)] = 45438, - [SMALL_STATE(1036)] = 45461, - [SMALL_STATE(1037)] = 45484, - [SMALL_STATE(1038)] = 45507, - [SMALL_STATE(1039)] = 45530, - [SMALL_STATE(1040)] = 45553, - [SMALL_STATE(1041)] = 45582, - [SMALL_STATE(1042)] = 45611, - [SMALL_STATE(1043)] = 45640, - [SMALL_STATE(1044)] = 45669, - [SMALL_STATE(1045)] = 45692, - [SMALL_STATE(1046)] = 45721, - [SMALL_STATE(1047)] = 45750, - [SMALL_STATE(1048)] = 45779, - [SMALL_STATE(1049)] = 45808, - [SMALL_STATE(1050)] = 45837, - [SMALL_STATE(1051)] = 45866, - [SMALL_STATE(1052)] = 45895, - [SMALL_STATE(1053)] = 45924, - [SMALL_STATE(1054)] = 45953, - [SMALL_STATE(1055)] = 45982, - [SMALL_STATE(1056)] = 46005, - [SMALL_STATE(1057)] = 46034, - [SMALL_STATE(1058)] = 46057, - [SMALL_STATE(1059)] = 46086, - [SMALL_STATE(1060)] = 46115, - [SMALL_STATE(1061)] = 46144, - [SMALL_STATE(1062)] = 46173, - [SMALL_STATE(1063)] = 46196, - [SMALL_STATE(1064)] = 46209, - [SMALL_STATE(1065)] = 46230, - [SMALL_STATE(1066)] = 46253, - [SMALL_STATE(1067)] = 46274, - [SMALL_STATE(1068)] = 46297, - [SMALL_STATE(1069)] = 46318, - [SMALL_STATE(1070)] = 46341, - [SMALL_STATE(1071)] = 46354, - [SMALL_STATE(1072)] = 46377, - [SMALL_STATE(1073)] = 46398, - [SMALL_STATE(1074)] = 46421, - [SMALL_STATE(1075)] = 46434, - [SMALL_STATE(1076)] = 46449, - [SMALL_STATE(1077)] = 46468, - [SMALL_STATE(1078)] = 46491, - [SMALL_STATE(1079)] = 46514, - [SMALL_STATE(1080)] = 46527, - [SMALL_STATE(1081)] = 46546, - [SMALL_STATE(1082)] = 46565, - [SMALL_STATE(1083)] = 46586, - [SMALL_STATE(1084)] = 46601, - [SMALL_STATE(1085)] = 46614, - [SMALL_STATE(1086)] = 46626, - [SMALL_STATE(1087)] = 46648, - [SMALL_STATE(1088)] = 46666, - [SMALL_STATE(1089)] = 46686, - [SMALL_STATE(1090)] = 46708, - [SMALL_STATE(1091)] = 46730, - [SMALL_STATE(1092)] = 46750, - [SMALL_STATE(1093)] = 46762, - [SMALL_STATE(1094)] = 46780, - [SMALL_STATE(1095)] = 46792, - [SMALL_STATE(1096)] = 46804, - [SMALL_STATE(1097)] = 46822, - [SMALL_STATE(1098)] = 46840, - [SMALL_STATE(1099)] = 46862, - [SMALL_STATE(1100)] = 46882, - [SMALL_STATE(1101)] = 46894, - [SMALL_STATE(1102)] = 46916, - [SMALL_STATE(1103)] = 46938, - [SMALL_STATE(1104)] = 46956, - [SMALL_STATE(1105)] = 46974, - [SMALL_STATE(1106)] = 46996, - [SMALL_STATE(1107)] = 47010, - [SMALL_STATE(1108)] = 47026, - [SMALL_STATE(1109)] = 47048, - [SMALL_STATE(1110)] = 47062, - [SMALL_STATE(1111)] = 47084, - [SMALL_STATE(1112)] = 47096, - [SMALL_STATE(1113)] = 47118, - [SMALL_STATE(1114)] = 47140, - [SMALL_STATE(1115)] = 47158, - [SMALL_STATE(1116)] = 47176, - [SMALL_STATE(1117)] = 47194, - [SMALL_STATE(1118)] = 47212, - [SMALL_STATE(1119)] = 47224, - [SMALL_STATE(1120)] = 47246, - [SMALL_STATE(1121)] = 47264, - [SMALL_STATE(1122)] = 47284, - [SMALL_STATE(1123)] = 47296, - [SMALL_STATE(1124)] = 47309, - [SMALL_STATE(1125)] = 47322, - [SMALL_STATE(1126)] = 47341, - [SMALL_STATE(1127)] = 47356, - [SMALL_STATE(1128)] = 47375, - [SMALL_STATE(1129)] = 47394, - [SMALL_STATE(1130)] = 47407, - [SMALL_STATE(1131)] = 47418, - [SMALL_STATE(1132)] = 47437, - [SMALL_STATE(1133)] = 47450, - [SMALL_STATE(1134)] = 47463, - [SMALL_STATE(1135)] = 47482, - [SMALL_STATE(1136)] = 47495, - [SMALL_STATE(1137)] = 47514, - [SMALL_STATE(1138)] = 47533, - [SMALL_STATE(1139)] = 47552, - [SMALL_STATE(1140)] = 47565, - [SMALL_STATE(1141)] = 47578, - [SMALL_STATE(1142)] = 47591, - [SMALL_STATE(1143)] = 47604, - [SMALL_STATE(1144)] = 47617, - [SMALL_STATE(1145)] = 47630, - [SMALL_STATE(1146)] = 47649, - [SMALL_STATE(1147)] = 47664, - [SMALL_STATE(1148)] = 47677, - [SMALL_STATE(1149)] = 47690, - [SMALL_STATE(1150)] = 47709, - [SMALL_STATE(1151)] = 47728, - [SMALL_STATE(1152)] = 47747, - [SMALL_STATE(1153)] = 47766, - [SMALL_STATE(1154)] = 47781, - [SMALL_STATE(1155)] = 47794, - [SMALL_STATE(1156)] = 47813, - [SMALL_STATE(1157)] = 47826, - [SMALL_STATE(1158)] = 47845, - [SMALL_STATE(1159)] = 47864, - [SMALL_STATE(1160)] = 47883, - [SMALL_STATE(1161)] = 47896, - [SMALL_STATE(1162)] = 47909, - [SMALL_STATE(1163)] = 47928, - [SMALL_STATE(1164)] = 47944, - [SMALL_STATE(1165)] = 47958, - [SMALL_STATE(1166)] = 47974, - [SMALL_STATE(1167)] = 47988, - [SMALL_STATE(1168)] = 48002, - [SMALL_STATE(1169)] = 48016, - [SMALL_STATE(1170)] = 48030, - [SMALL_STATE(1171)] = 48044, - [SMALL_STATE(1172)] = 48054, - [SMALL_STATE(1173)] = 48064, - [SMALL_STATE(1174)] = 48080, - [SMALL_STATE(1175)] = 48096, - [SMALL_STATE(1176)] = 48110, - [SMALL_STATE(1177)] = 48124, - [SMALL_STATE(1178)] = 48138, - [SMALL_STATE(1179)] = 48152, - [SMALL_STATE(1180)] = 48166, - [SMALL_STATE(1181)] = 48182, - [SMALL_STATE(1182)] = 48198, - [SMALL_STATE(1183)] = 48214, - [SMALL_STATE(1184)] = 48230, - [SMALL_STATE(1185)] = 48240, - [SMALL_STATE(1186)] = 48256, - [SMALL_STATE(1187)] = 48272, - [SMALL_STATE(1188)] = 48288, - [SMALL_STATE(1189)] = 48302, - [SMALL_STATE(1190)] = 48316, - [SMALL_STATE(1191)] = 48330, - [SMALL_STATE(1192)] = 48346, - [SMALL_STATE(1193)] = 48360, - [SMALL_STATE(1194)] = 48376, - [SMALL_STATE(1195)] = 48386, - [SMALL_STATE(1196)] = 48400, - [SMALL_STATE(1197)] = 48414, - [SMALL_STATE(1198)] = 48424, - [SMALL_STATE(1199)] = 48440, - [SMALL_STATE(1200)] = 48450, - [SMALL_STATE(1201)] = 48464, - [SMALL_STATE(1202)] = 48480, - [SMALL_STATE(1203)] = 48496, - [SMALL_STATE(1204)] = 48508, - [SMALL_STATE(1205)] = 48524, - [SMALL_STATE(1206)] = 48534, - [SMALL_STATE(1207)] = 48550, - [SMALL_STATE(1208)] = 48564, - [SMALL_STATE(1209)] = 48580, - [SMALL_STATE(1210)] = 48596, - [SMALL_STATE(1211)] = 48612, - [SMALL_STATE(1212)] = 48628, - [SMALL_STATE(1213)] = 48642, - [SMALL_STATE(1214)] = 48658, - [SMALL_STATE(1215)] = 48672, - [SMALL_STATE(1216)] = 48688, - [SMALL_STATE(1217)] = 48698, - [SMALL_STATE(1218)] = 48712, - [SMALL_STATE(1219)] = 48728, - [SMALL_STATE(1220)] = 48744, - [SMALL_STATE(1221)] = 48760, - [SMALL_STATE(1222)] = 48776, - [SMALL_STATE(1223)] = 48792, - [SMALL_STATE(1224)] = 48806, - [SMALL_STATE(1225)] = 48822, - [SMALL_STATE(1226)] = 48836, - [SMALL_STATE(1227)] = 48848, - [SMALL_STATE(1228)] = 48864, - [SMALL_STATE(1229)] = 48880, - [SMALL_STATE(1230)] = 48896, - [SMALL_STATE(1231)] = 48912, - [SMALL_STATE(1232)] = 48926, - [SMALL_STATE(1233)] = 48936, - [SMALL_STATE(1234)] = 48950, - [SMALL_STATE(1235)] = 48964, - [SMALL_STATE(1236)] = 48978, - [SMALL_STATE(1237)] = 48994, - [SMALL_STATE(1238)] = 49010, - [SMALL_STATE(1239)] = 49026, - [SMALL_STATE(1240)] = 49042, - [SMALL_STATE(1241)] = 49055, - [SMALL_STATE(1242)] = 49068, - [SMALL_STATE(1243)] = 49081, - [SMALL_STATE(1244)] = 49090, - [SMALL_STATE(1245)] = 49101, - [SMALL_STATE(1246)] = 49114, - [SMALL_STATE(1247)] = 49127, - [SMALL_STATE(1248)] = 49140, - [SMALL_STATE(1249)] = 49153, - [SMALL_STATE(1250)] = 49166, - [SMALL_STATE(1251)] = 49179, - [SMALL_STATE(1252)] = 49192, - [SMALL_STATE(1253)] = 49205, - [SMALL_STATE(1254)] = 49218, - [SMALL_STATE(1255)] = 49231, - [SMALL_STATE(1256)] = 49244, - [SMALL_STATE(1257)] = 49257, - [SMALL_STATE(1258)] = 49270, - [SMALL_STATE(1259)] = 49283, - [SMALL_STATE(1260)] = 49296, - [SMALL_STATE(1261)] = 49309, - [SMALL_STATE(1262)] = 49318, - [SMALL_STATE(1263)] = 49327, - [SMALL_STATE(1264)] = 49336, - [SMALL_STATE(1265)] = 49349, - [SMALL_STATE(1266)] = 49362, - [SMALL_STATE(1267)] = 49375, - [SMALL_STATE(1268)] = 49388, - [SMALL_STATE(1269)] = 49401, - [SMALL_STATE(1270)] = 49412, - [SMALL_STATE(1271)] = 49421, - [SMALL_STATE(1272)] = 49434, - [SMALL_STATE(1273)] = 49447, - [SMALL_STATE(1274)] = 49456, - [SMALL_STATE(1275)] = 49469, - [SMALL_STATE(1276)] = 49480, - [SMALL_STATE(1277)] = 49493, - [SMALL_STATE(1278)] = 49506, - [SMALL_STATE(1279)] = 49519, - [SMALL_STATE(1280)] = 49528, - [SMALL_STATE(1281)] = 49541, - [SMALL_STATE(1282)] = 49554, - [SMALL_STATE(1283)] = 49567, - [SMALL_STATE(1284)] = 49580, - [SMALL_STATE(1285)] = 49593, - [SMALL_STATE(1286)] = 49606, - [SMALL_STATE(1287)] = 49619, - [SMALL_STATE(1288)] = 49628, - [SMALL_STATE(1289)] = 49637, - [SMALL_STATE(1290)] = 49646, - [SMALL_STATE(1291)] = 49655, - [SMALL_STATE(1292)] = 49664, - [SMALL_STATE(1293)] = 49673, - [SMALL_STATE(1294)] = 49682, - [SMALL_STATE(1295)] = 49695, - [SMALL_STATE(1296)] = 49704, - [SMALL_STATE(1297)] = 49713, - [SMALL_STATE(1298)] = 49726, - [SMALL_STATE(1299)] = 49735, - [SMALL_STATE(1300)] = 49746, - [SMALL_STATE(1301)] = 49759, - [SMALL_STATE(1302)] = 49772, - [SMALL_STATE(1303)] = 49785, - [SMALL_STATE(1304)] = 49798, - [SMALL_STATE(1305)] = 49811, - [SMALL_STATE(1306)] = 49820, - [SMALL_STATE(1307)] = 49833, - [SMALL_STATE(1308)] = 49846, - [SMALL_STATE(1309)] = 49859, - [SMALL_STATE(1310)] = 49872, - [SMALL_STATE(1311)] = 49885, - [SMALL_STATE(1312)] = 49898, - [SMALL_STATE(1313)] = 49911, - [SMALL_STATE(1314)] = 49924, - [SMALL_STATE(1315)] = 49937, - [SMALL_STATE(1316)] = 49950, - [SMALL_STATE(1317)] = 49959, - [SMALL_STATE(1318)] = 49972, - [SMALL_STATE(1319)] = 49983, - [SMALL_STATE(1320)] = 49992, - [SMALL_STATE(1321)] = 50005, - [SMALL_STATE(1322)] = 50018, - [SMALL_STATE(1323)] = 50029, - [SMALL_STATE(1324)] = 50040, - [SMALL_STATE(1325)] = 50053, - [SMALL_STATE(1326)] = 50066, - [SMALL_STATE(1327)] = 50079, - [SMALL_STATE(1328)] = 50092, - [SMALL_STATE(1329)] = 50103, - [SMALL_STATE(1330)] = 50112, - [SMALL_STATE(1331)] = 50125, - [SMALL_STATE(1332)] = 50138, - [SMALL_STATE(1333)] = 50151, - [SMALL_STATE(1334)] = 50160, - [SMALL_STATE(1335)] = 50173, - [SMALL_STATE(1336)] = 50186, - [SMALL_STATE(1337)] = 50199, - [SMALL_STATE(1338)] = 50212, - [SMALL_STATE(1339)] = 50221, - [SMALL_STATE(1340)] = 50230, - [SMALL_STATE(1341)] = 50243, - [SMALL_STATE(1342)] = 50256, - [SMALL_STATE(1343)] = 50269, - [SMALL_STATE(1344)] = 50282, - [SMALL_STATE(1345)] = 50295, - [SMALL_STATE(1346)] = 50304, - [SMALL_STATE(1347)] = 50313, - [SMALL_STATE(1348)] = 50326, - [SMALL_STATE(1349)] = 50339, - [SMALL_STATE(1350)] = 50352, - [SMALL_STATE(1351)] = 50365, - [SMALL_STATE(1352)] = 50375, - [SMALL_STATE(1353)] = 50385, - [SMALL_STATE(1354)] = 50395, - [SMALL_STATE(1355)] = 50405, - [SMALL_STATE(1356)] = 50415, - [SMALL_STATE(1357)] = 50425, - [SMALL_STATE(1358)] = 50435, - [SMALL_STATE(1359)] = 50445, - [SMALL_STATE(1360)] = 50455, - [SMALL_STATE(1361)] = 50465, - [SMALL_STATE(1362)] = 50475, - [SMALL_STATE(1363)] = 50485, - [SMALL_STATE(1364)] = 50495, - [SMALL_STATE(1365)] = 50505, - [SMALL_STATE(1366)] = 50513, - [SMALL_STATE(1367)] = 50523, - [SMALL_STATE(1368)] = 50533, - [SMALL_STATE(1369)] = 50541, - [SMALL_STATE(1370)] = 50551, - [SMALL_STATE(1371)] = 50559, - [SMALL_STATE(1372)] = 50567, - [SMALL_STATE(1373)] = 50577, - [SMALL_STATE(1374)] = 50585, - [SMALL_STATE(1375)] = 50595, - [SMALL_STATE(1376)] = 50605, - [SMALL_STATE(1377)] = 50615, - [SMALL_STATE(1378)] = 50625, - [SMALL_STATE(1379)] = 50635, - [SMALL_STATE(1380)] = 50645, - [SMALL_STATE(1381)] = 50655, - [SMALL_STATE(1382)] = 50665, - [SMALL_STATE(1383)] = 50675, - [SMALL_STATE(1384)] = 50685, - [SMALL_STATE(1385)] = 50695, - [SMALL_STATE(1386)] = 50705, - [SMALL_STATE(1387)] = 50713, - [SMALL_STATE(1388)] = 50723, - [SMALL_STATE(1389)] = 50733, - [SMALL_STATE(1390)] = 50743, - [SMALL_STATE(1391)] = 50751, - [SMALL_STATE(1392)] = 50761, - [SMALL_STATE(1393)] = 50771, - [SMALL_STATE(1394)] = 50781, - [SMALL_STATE(1395)] = 50791, - [SMALL_STATE(1396)] = 50801, - [SMALL_STATE(1397)] = 50811, - [SMALL_STATE(1398)] = 50821, - [SMALL_STATE(1399)] = 50831, - [SMALL_STATE(1400)] = 50841, - [SMALL_STATE(1401)] = 50851, - [SMALL_STATE(1402)] = 50861, - [SMALL_STATE(1403)] = 50871, - [SMALL_STATE(1404)] = 50881, - [SMALL_STATE(1405)] = 50891, - [SMALL_STATE(1406)] = 50899, - [SMALL_STATE(1407)] = 50907, - [SMALL_STATE(1408)] = 50917, - [SMALL_STATE(1409)] = 50927, - [SMALL_STATE(1410)] = 50937, - [SMALL_STATE(1411)] = 50947, - [SMALL_STATE(1412)] = 50957, - [SMALL_STATE(1413)] = 50967, - [SMALL_STATE(1414)] = 50977, - [SMALL_STATE(1415)] = 50987, - [SMALL_STATE(1416)] = 50997, - [SMALL_STATE(1417)] = 51007, - [SMALL_STATE(1418)] = 51015, - [SMALL_STATE(1419)] = 51025, - [SMALL_STATE(1420)] = 51035, - [SMALL_STATE(1421)] = 51045, - [SMALL_STATE(1422)] = 51055, - [SMALL_STATE(1423)] = 51065, - [SMALL_STATE(1424)] = 51075, - [SMALL_STATE(1425)] = 51085, - [SMALL_STATE(1426)] = 51095, - [SMALL_STATE(1427)] = 51103, - [SMALL_STATE(1428)] = 51113, - [SMALL_STATE(1429)] = 51123, - [SMALL_STATE(1430)] = 51133, - [SMALL_STATE(1431)] = 51143, - [SMALL_STATE(1432)] = 51151, - [SMALL_STATE(1433)] = 51159, - [SMALL_STATE(1434)] = 51169, - [SMALL_STATE(1435)] = 51179, - [SMALL_STATE(1436)] = 51189, - [SMALL_STATE(1437)] = 51197, - [SMALL_STATE(1438)] = 51207, - [SMALL_STATE(1439)] = 51217, - [SMALL_STATE(1440)] = 51227, - [SMALL_STATE(1441)] = 51235, - [SMALL_STATE(1442)] = 51245, - [SMALL_STATE(1443)] = 51253, - [SMALL_STATE(1444)] = 51261, - [SMALL_STATE(1445)] = 51271, - [SMALL_STATE(1446)] = 51279, - [SMALL_STATE(1447)] = 51289, - [SMALL_STATE(1448)] = 51299, - [SMALL_STATE(1449)] = 51309, - [SMALL_STATE(1450)] = 51319, - [SMALL_STATE(1451)] = 51327, - [SMALL_STATE(1452)] = 51337, - [SMALL_STATE(1453)] = 51347, - [SMALL_STATE(1454)] = 51357, - [SMALL_STATE(1455)] = 51367, - [SMALL_STATE(1456)] = 51377, - [SMALL_STATE(1457)] = 51387, - [SMALL_STATE(1458)] = 51397, - [SMALL_STATE(1459)] = 51405, - [SMALL_STATE(1460)] = 51415, - [SMALL_STATE(1461)] = 51425, - [SMALL_STATE(1462)] = 51435, - [SMALL_STATE(1463)] = 51445, - [SMALL_STATE(1464)] = 51455, - [SMALL_STATE(1465)] = 51465, - [SMALL_STATE(1466)] = 51475, - [SMALL_STATE(1467)] = 51485, - [SMALL_STATE(1468)] = 51495, - [SMALL_STATE(1469)] = 51503, - [SMALL_STATE(1470)] = 51513, - [SMALL_STATE(1471)] = 51523, - [SMALL_STATE(1472)] = 51531, - [SMALL_STATE(1473)] = 51541, - [SMALL_STATE(1474)] = 51551, - [SMALL_STATE(1475)] = 51559, - [SMALL_STATE(1476)] = 51569, - [SMALL_STATE(1477)] = 51577, - [SMALL_STATE(1478)] = 51587, - [SMALL_STATE(1479)] = 51597, - [SMALL_STATE(1480)] = 51607, - [SMALL_STATE(1481)] = 51617, - [SMALL_STATE(1482)] = 51627, - [SMALL_STATE(1483)] = 51637, - [SMALL_STATE(1484)] = 51647, - [SMALL_STATE(1485)] = 51657, - [SMALL_STATE(1486)] = 51667, - [SMALL_STATE(1487)] = 51677, - [SMALL_STATE(1488)] = 51687, - [SMALL_STATE(1489)] = 51695, - [SMALL_STATE(1490)] = 51705, - [SMALL_STATE(1491)] = 51715, - [SMALL_STATE(1492)] = 51725, - [SMALL_STATE(1493)] = 51735, - [SMALL_STATE(1494)] = 51745, - [SMALL_STATE(1495)] = 51755, - [SMALL_STATE(1496)] = 51765, - [SMALL_STATE(1497)] = 51775, - [SMALL_STATE(1498)] = 51785, - [SMALL_STATE(1499)] = 51795, - [SMALL_STATE(1500)] = 51805, - [SMALL_STATE(1501)] = 51813, - [SMALL_STATE(1502)] = 51823, - [SMALL_STATE(1503)] = 51833, - [SMALL_STATE(1504)] = 51843, - [SMALL_STATE(1505)] = 51851, - [SMALL_STATE(1506)] = 51861, - [SMALL_STATE(1507)] = 51871, - [SMALL_STATE(1508)] = 51879, - [SMALL_STATE(1509)] = 51889, - [SMALL_STATE(1510)] = 51899, - [SMALL_STATE(1511)] = 51909, - [SMALL_STATE(1512)] = 51919, - [SMALL_STATE(1513)] = 51929, - [SMALL_STATE(1514)] = 51939, - [SMALL_STATE(1515)] = 51949, - [SMALL_STATE(1516)] = 51959, - [SMALL_STATE(1517)] = 51969, - [SMALL_STATE(1518)] = 51979, - [SMALL_STATE(1519)] = 51989, - [SMALL_STATE(1520)] = 51999, - [SMALL_STATE(1521)] = 52009, - [SMALL_STATE(1522)] = 52019, - [SMALL_STATE(1523)] = 52029, - [SMALL_STATE(1524)] = 52039, - [SMALL_STATE(1525)] = 52049, - [SMALL_STATE(1526)] = 52059, - [SMALL_STATE(1527)] = 52069, - [SMALL_STATE(1528)] = 52079, - [SMALL_STATE(1529)] = 52089, - [SMALL_STATE(1530)] = 52099, - [SMALL_STATE(1531)] = 52107, - [SMALL_STATE(1532)] = 52117, - [SMALL_STATE(1533)] = 52127, - [SMALL_STATE(1534)] = 52137, - [SMALL_STATE(1535)] = 52147, - [SMALL_STATE(1536)] = 52157, - [SMALL_STATE(1537)] = 52167, - [SMALL_STATE(1538)] = 52177, - [SMALL_STATE(1539)] = 52187, - [SMALL_STATE(1540)] = 52197, - [SMALL_STATE(1541)] = 52207, - [SMALL_STATE(1542)] = 52217, - [SMALL_STATE(1543)] = 52227, - [SMALL_STATE(1544)] = 52237, - [SMALL_STATE(1545)] = 52247, - [SMALL_STATE(1546)] = 52257, - [SMALL_STATE(1547)] = 52267, - [SMALL_STATE(1548)] = 52277, - [SMALL_STATE(1549)] = 52287, - [SMALL_STATE(1550)] = 52297, - [SMALL_STATE(1551)] = 52305, - [SMALL_STATE(1552)] = 52313, - [SMALL_STATE(1553)] = 52323, - [SMALL_STATE(1554)] = 52333, - [SMALL_STATE(1555)] = 52343, - [SMALL_STATE(1556)] = 52353, - [SMALL_STATE(1557)] = 52363, - [SMALL_STATE(1558)] = 52373, - [SMALL_STATE(1559)] = 52383, - [SMALL_STATE(1560)] = 52390, - [SMALL_STATE(1561)] = 52397, - [SMALL_STATE(1562)] = 52404, - [SMALL_STATE(1563)] = 52411, - [SMALL_STATE(1564)] = 52418, - [SMALL_STATE(1565)] = 52425, - [SMALL_STATE(1566)] = 52432, - [SMALL_STATE(1567)] = 52439, - [SMALL_STATE(1568)] = 52446, - [SMALL_STATE(1569)] = 52453, - [SMALL_STATE(1570)] = 52460, - [SMALL_STATE(1571)] = 52467, - [SMALL_STATE(1572)] = 52474, - [SMALL_STATE(1573)] = 52481, - [SMALL_STATE(1574)] = 52488, - [SMALL_STATE(1575)] = 52495, - [SMALL_STATE(1576)] = 52502, - [SMALL_STATE(1577)] = 52509, - [SMALL_STATE(1578)] = 52516, - [SMALL_STATE(1579)] = 52523, - [SMALL_STATE(1580)] = 52530, - [SMALL_STATE(1581)] = 52537, - [SMALL_STATE(1582)] = 52544, - [SMALL_STATE(1583)] = 52551, - [SMALL_STATE(1584)] = 52558, - [SMALL_STATE(1585)] = 52565, - [SMALL_STATE(1586)] = 52572, - [SMALL_STATE(1587)] = 52579, - [SMALL_STATE(1588)] = 52586, - [SMALL_STATE(1589)] = 52593, - [SMALL_STATE(1590)] = 52600, - [SMALL_STATE(1591)] = 52607, - [SMALL_STATE(1592)] = 52614, - [SMALL_STATE(1593)] = 52621, - [SMALL_STATE(1594)] = 52628, - [SMALL_STATE(1595)] = 52635, - [SMALL_STATE(1596)] = 52642, - [SMALL_STATE(1597)] = 52649, - [SMALL_STATE(1598)] = 52656, - [SMALL_STATE(1599)] = 52663, - [SMALL_STATE(1600)] = 52670, - [SMALL_STATE(1601)] = 52677, - [SMALL_STATE(1602)] = 52684, - [SMALL_STATE(1603)] = 52691, - [SMALL_STATE(1604)] = 52698, - [SMALL_STATE(1605)] = 52705, - [SMALL_STATE(1606)] = 52712, - [SMALL_STATE(1607)] = 52719, - [SMALL_STATE(1608)] = 52726, - [SMALL_STATE(1609)] = 52733, - [SMALL_STATE(1610)] = 52740, - [SMALL_STATE(1611)] = 52747, - [SMALL_STATE(1612)] = 52754, - [SMALL_STATE(1613)] = 52761, - [SMALL_STATE(1614)] = 52768, - [SMALL_STATE(1615)] = 52775, - [SMALL_STATE(1616)] = 52782, - [SMALL_STATE(1617)] = 52789, - [SMALL_STATE(1618)] = 52796, - [SMALL_STATE(1619)] = 52803, - [SMALL_STATE(1620)] = 52810, - [SMALL_STATE(1621)] = 52817, - [SMALL_STATE(1622)] = 52824, - [SMALL_STATE(1623)] = 52831, - [SMALL_STATE(1624)] = 52838, - [SMALL_STATE(1625)] = 52845, - [SMALL_STATE(1626)] = 52852, - [SMALL_STATE(1627)] = 52859, - [SMALL_STATE(1628)] = 52866, - [SMALL_STATE(1629)] = 52873, - [SMALL_STATE(1630)] = 52880, - [SMALL_STATE(1631)] = 52887, - [SMALL_STATE(1632)] = 52894, - [SMALL_STATE(1633)] = 52901, - [SMALL_STATE(1634)] = 52908, - [SMALL_STATE(1635)] = 52915, - [SMALL_STATE(1636)] = 52922, - [SMALL_STATE(1637)] = 52929, - [SMALL_STATE(1638)] = 52936, - [SMALL_STATE(1639)] = 52943, - [SMALL_STATE(1640)] = 52950, - [SMALL_STATE(1641)] = 52957, - [SMALL_STATE(1642)] = 52964, - [SMALL_STATE(1643)] = 52971, - [SMALL_STATE(1644)] = 52978, - [SMALL_STATE(1645)] = 52985, - [SMALL_STATE(1646)] = 52992, - [SMALL_STATE(1647)] = 52999, - [SMALL_STATE(1648)] = 53006, - [SMALL_STATE(1649)] = 53013, - [SMALL_STATE(1650)] = 53020, - [SMALL_STATE(1651)] = 53027, - [SMALL_STATE(1652)] = 53034, - [SMALL_STATE(1653)] = 53041, - [SMALL_STATE(1654)] = 53048, - [SMALL_STATE(1655)] = 53055, - [SMALL_STATE(1656)] = 53062, - [SMALL_STATE(1657)] = 53069, - [SMALL_STATE(1658)] = 53076, - [SMALL_STATE(1659)] = 53083, - [SMALL_STATE(1660)] = 53090, - [SMALL_STATE(1661)] = 53097, - [SMALL_STATE(1662)] = 53104, - [SMALL_STATE(1663)] = 53111, - [SMALL_STATE(1664)] = 53118, - [SMALL_STATE(1665)] = 53125, - [SMALL_STATE(1666)] = 53132, - [SMALL_STATE(1667)] = 53139, - [SMALL_STATE(1668)] = 53146, - [SMALL_STATE(1669)] = 53153, - [SMALL_STATE(1670)] = 53160, - [SMALL_STATE(1671)] = 53167, - [SMALL_STATE(1672)] = 53174, - [SMALL_STATE(1673)] = 53181, + [SMALL_STATE(331)] = 0, + [SMALL_STATE(332)] = 71, + [SMALL_STATE(333)] = 142, + [SMALL_STATE(334)] = 215, + [SMALL_STATE(335)] = 304, + [SMALL_STATE(336)] = 375, + [SMALL_STATE(337)] = 448, + [SMALL_STATE(338)] = 521, + [SMALL_STATE(339)] = 592, + [SMALL_STATE(340)] = 665, + [SMALL_STATE(341)] = 738, + [SMALL_STATE(342)] = 811, + [SMALL_STATE(343)] = 884, + [SMALL_STATE(344)] = 957, + [SMALL_STATE(345)] = 1030, + [SMALL_STATE(346)] = 1103, + [SMALL_STATE(347)] = 1174, + [SMALL_STATE(348)] = 1249, + [SMALL_STATE(349)] = 1320, + [SMALL_STATE(350)] = 1411, + [SMALL_STATE(351)] = 1482, + [SMALL_STATE(352)] = 1555, + [SMALL_STATE(353)] = 1625, + [SMALL_STATE(354)] = 1695, + [SMALL_STATE(355)] = 1765, + [SMALL_STATE(356)] = 1835, + [SMALL_STATE(357)] = 1921, + [SMALL_STATE(358)] = 1991, + [SMALL_STATE(359)] = 2061, + [SMALL_STATE(360)] = 2131, + [SMALL_STATE(361)] = 2201, + [SMALL_STATE(362)] = 2271, + [SMALL_STATE(363)] = 2341, + [SMALL_STATE(364)] = 2411, + [SMALL_STATE(365)] = 2481, + [SMALL_STATE(366)] = 2551, + [SMALL_STATE(367)] = 2621, + [SMALL_STATE(368)] = 2691, + [SMALL_STATE(369)] = 2761, + [SMALL_STATE(370)] = 2831, + [SMALL_STATE(371)] = 2901, + [SMALL_STATE(372)] = 2971, + [SMALL_STATE(373)] = 3041, + [SMALL_STATE(374)] = 3111, + [SMALL_STATE(375)] = 3181, + [SMALL_STATE(376)] = 3251, + [SMALL_STATE(377)] = 3337, + [SMALL_STATE(378)] = 3407, + [SMALL_STATE(379)] = 3497, + [SMALL_STATE(380)] = 3567, + [SMALL_STATE(381)] = 3637, + [SMALL_STATE(382)] = 3707, + [SMALL_STATE(383)] = 3777, + [SMALL_STATE(384)] = 3847, + [SMALL_STATE(385)] = 3917, + [SMALL_STATE(386)] = 3987, + [SMALL_STATE(387)] = 4057, + [SMALL_STATE(388)] = 4127, + [SMALL_STATE(389)] = 4197, + [SMALL_STATE(390)] = 4267, + [SMALL_STATE(391)] = 4337, + [SMALL_STATE(392)] = 4407, + [SMALL_STATE(393)] = 4477, + [SMALL_STATE(394)] = 4547, + [SMALL_STATE(395)] = 4617, + [SMALL_STATE(396)] = 4687, + [SMALL_STATE(397)] = 4757, + [SMALL_STATE(398)] = 4843, + [SMALL_STATE(399)] = 4913, + [SMALL_STATE(400)] = 4983, + [SMALL_STATE(401)] = 5053, + [SMALL_STATE(402)] = 5123, + [SMALL_STATE(403)] = 5193, + [SMALL_STATE(404)] = 5263, + [SMALL_STATE(405)] = 5333, + [SMALL_STATE(406)] = 5403, + [SMALL_STATE(407)] = 5473, + [SMALL_STATE(408)] = 5543, + [SMALL_STATE(409)] = 5613, + [SMALL_STATE(410)] = 5683, + [SMALL_STATE(411)] = 5753, + [SMALL_STATE(412)] = 5823, + [SMALL_STATE(413)] = 5893, + [SMALL_STATE(414)] = 5963, + [SMALL_STATE(415)] = 6033, + [SMALL_STATE(416)] = 6103, + [SMALL_STATE(417)] = 6173, + [SMALL_STATE(418)] = 6243, + [SMALL_STATE(419)] = 6313, + [SMALL_STATE(420)] = 6383, + [SMALL_STATE(421)] = 6453, + [SMALL_STATE(422)] = 6523, + [SMALL_STATE(423)] = 6610, + [SMALL_STATE(424)] = 6695, + [SMALL_STATE(425)] = 6780, + [SMALL_STATE(426)] = 6869, + [SMALL_STATE(427)] = 6956, + [SMALL_STATE(428)] = 7044, + [SMALL_STATE(429)] = 7127, + [SMALL_STATE(430)] = 7193, + [SMALL_STATE(431)] = 7259, + [SMALL_STATE(432)] = 7325, + [SMALL_STATE(433)] = 7391, + [SMALL_STATE(434)] = 7457, + [SMALL_STATE(435)] = 7539, + [SMALL_STATE(436)] = 7609, + [SMALL_STATE(437)] = 7675, + [SMALL_STATE(438)] = 7757, + [SMALL_STATE(439)] = 7839, + [SMALL_STATE(440)] = 7905, + [SMALL_STATE(441)] = 7988, + [SMALL_STATE(442)] = 8059, + [SMALL_STATE(443)] = 8130, + [SMALL_STATE(444)] = 8195, + [SMALL_STATE(445)] = 8260, + [SMALL_STATE(446)] = 8325, + [SMALL_STATE(447)] = 8390, + [SMALL_STATE(448)] = 8455, + [SMALL_STATE(449)] = 8520, + [SMALL_STATE(450)] = 8591, + [SMALL_STATE(451)] = 8656, + [SMALL_STATE(452)] = 8721, + [SMALL_STATE(453)] = 8786, + [SMALL_STATE(454)] = 8857, + [SMALL_STATE(455)] = 8925, + [SMALL_STATE(456)] = 8994, + [SMALL_STATE(457)] = 9063, + [SMALL_STATE(458)] = 9126, + [SMALL_STATE(459)] = 9189, + [SMALL_STATE(460)] = 9252, + [SMALL_STATE(461)] = 9315, + [SMALL_STATE(462)] = 9378, + [SMALL_STATE(463)] = 9447, + [SMALL_STATE(464)] = 9518, + [SMALL_STATE(465)] = 9589, + [SMALL_STATE(466)] = 9652, + [SMALL_STATE(467)] = 9723, + [SMALL_STATE(468)] = 9794, + [SMALL_STATE(469)] = 9861, + [SMALL_STATE(470)] = 9932, + [SMALL_STATE(471)] = 10001, + [SMALL_STATE(472)] = 10072, + [SMALL_STATE(473)] = 10143, + [SMALL_STATE(474)] = 10212, + [SMALL_STATE(475)] = 10283, + [SMALL_STATE(476)] = 10352, + [SMALL_STATE(477)] = 10423, + [SMALL_STATE(478)] = 10494, + [SMALL_STATE(479)] = 10557, + [SMALL_STATE(480)] = 10626, + [SMALL_STATE(481)] = 10695, + [SMALL_STATE(482)] = 10763, + [SMALL_STATE(483)] = 10833, + [SMALL_STATE(484)] = 10901, + [SMALL_STATE(485)] = 10967, + [SMALL_STATE(486)] = 11037, + [SMALL_STATE(487)] = 11109, + [SMALL_STATE(488)] = 11177, + [SMALL_STATE(489)] = 11249, + [SMALL_STATE(490)] = 11315, + [SMALL_STATE(491)] = 11382, + [SMALL_STATE(492)] = 11453, + [SMALL_STATE(493)] = 11520, + [SMALL_STATE(494)] = 11587, + [SMALL_STATE(495)] = 11656, + [SMALL_STATE(496)] = 11727, + [SMALL_STATE(497)] = 11795, + [SMALL_STATE(498)] = 11865, + [SMALL_STATE(499)] = 11931, + [SMALL_STATE(500)] = 11997, + [SMALL_STATE(501)] = 12063, + [SMALL_STATE(502)] = 12133, + [SMALL_STATE(503)] = 12199, + [SMALL_STATE(504)] = 12266, + [SMALL_STATE(505)] = 12329, + [SMALL_STATE(506)] = 12395, + [SMALL_STATE(507)] = 12459, + [SMALL_STATE(508)] = 12525, + [SMALL_STATE(509)] = 12581, + [SMALL_STATE(510)] = 12636, + [SMALL_STATE(511)] = 12697, + [SMALL_STATE(512)] = 12750, + [SMALL_STATE(513)] = 12801, + [SMALL_STATE(514)] = 12854, + [SMALL_STATE(515)] = 12907, + [SMALL_STATE(516)] = 12957, + [SMALL_STATE(517)] = 13007, + [SMALL_STATE(518)] = 13059, + [SMALL_STATE(519)] = 13109, + [SMALL_STATE(520)] = 13159, + [SMALL_STATE(521)] = 13209, + [SMALL_STATE(522)] = 13297, + [SMALL_STATE(523)] = 13347, + [SMALL_STATE(524)] = 13417, + [SMALL_STATE(525)] = 13467, + [SMALL_STATE(526)] = 13517, + [SMALL_STATE(527)] = 13567, + [SMALL_STATE(528)] = 13633, + [SMALL_STATE(529)] = 13683, + [SMALL_STATE(530)] = 13779, + [SMALL_STATE(531)] = 13829, + [SMALL_STATE(532)] = 13909, + [SMALL_STATE(533)] = 13959, + [SMALL_STATE(534)] = 14009, + [SMALL_STATE(535)] = 14099, + [SMALL_STATE(536)] = 14149, + [SMALL_STATE(537)] = 14245, + [SMALL_STATE(538)] = 14295, + [SMALL_STATE(539)] = 14391, + [SMALL_STATE(540)] = 14463, + [SMALL_STATE(541)] = 14513, + [SMALL_STATE(542)] = 14567, + [SMALL_STATE(543)] = 14659, + [SMALL_STATE(544)] = 14755, + [SMALL_STATE(545)] = 14805, + [SMALL_STATE(546)] = 14855, + [SMALL_STATE(547)] = 14951, + [SMALL_STATE(548)] = 15001, + [SMALL_STATE(549)] = 15051, + [SMALL_STATE(550)] = 15101, + [SMALL_STATE(551)] = 15151, + [SMALL_STATE(552)] = 15205, + [SMALL_STATE(553)] = 15289, + [SMALL_STATE(554)] = 15339, + [SMALL_STATE(555)] = 15389, + [SMALL_STATE(556)] = 15485, + [SMALL_STATE(557)] = 15535, + [SMALL_STATE(558)] = 15585, + [SMALL_STATE(559)] = 15635, + [SMALL_STATE(560)] = 15685, + [SMALL_STATE(561)] = 15735, + [SMALL_STATE(562)] = 15785, + [SMALL_STATE(563)] = 15881, + [SMALL_STATE(564)] = 15977, + [SMALL_STATE(565)] = 16073, + [SMALL_STATE(566)] = 16123, + [SMALL_STATE(567)] = 16173, + [SMALL_STATE(568)] = 16269, + [SMALL_STATE(569)] = 16319, + [SMALL_STATE(570)] = 16369, + [SMALL_STATE(571)] = 16423, + [SMALL_STATE(572)] = 16519, + [SMALL_STATE(573)] = 16569, + [SMALL_STATE(574)] = 16619, + [SMALL_STATE(575)] = 16669, + [SMALL_STATE(576)] = 16719, + [SMALL_STATE(577)] = 16769, + [SMALL_STATE(578)] = 16819, + [SMALL_STATE(579)] = 16869, + [SMALL_STATE(580)] = 16919, + [SMALL_STATE(581)] = 16969, + [SMALL_STATE(582)] = 17025, + [SMALL_STATE(583)] = 17075, + [SMALL_STATE(584)] = 17171, + [SMALL_STATE(585)] = 17221, + [SMALL_STATE(586)] = 17271, + [SMALL_STATE(587)] = 17359, + [SMALL_STATE(588)] = 17409, + [SMALL_STATE(589)] = 17505, + [SMALL_STATE(590)] = 17555, + [SMALL_STATE(591)] = 17605, + [SMALL_STATE(592)] = 17655, + [SMALL_STATE(593)] = 17705, + [SMALL_STATE(594)] = 17755, + [SMALL_STATE(595)] = 17805, + [SMALL_STATE(596)] = 17855, + [SMALL_STATE(597)] = 17931, + [SMALL_STATE(598)] = 17981, + [SMALL_STATE(599)] = 18031, + [SMALL_STATE(600)] = 18117, + [SMALL_STATE(601)] = 18167, + [SMALL_STATE(602)] = 18233, + [SMALL_STATE(603)] = 18283, + [SMALL_STATE(604)] = 18333, + [SMALL_STATE(605)] = 18383, + [SMALL_STATE(606)] = 18433, + [SMALL_STATE(607)] = 18482, + [SMALL_STATE(608)] = 18531, + [SMALL_STATE(609)] = 18594, + [SMALL_STATE(610)] = 18645, + [SMALL_STATE(611)] = 18696, + [SMALL_STATE(612)] = 18747, + [SMALL_STATE(613)] = 18796, + [SMALL_STATE(614)] = 18857, + [SMALL_STATE(615)] = 18920, + [SMALL_STATE(616)] = 18969, + [SMALL_STATE(617)] = 19020, + [SMALL_STATE(618)] = 19071, + [SMALL_STATE(619)] = 19122, + [SMALL_STATE(620)] = 19216, + [SMALL_STATE(621)] = 19310, + [SMALL_STATE(622)] = 19404, + [SMALL_STATE(623)] = 19498, + [SMALL_STATE(624)] = 19592, + [SMALL_STATE(625)] = 19686, + [SMALL_STATE(626)] = 19760, + [SMALL_STATE(627)] = 19854, + [SMALL_STATE(628)] = 19928, + [SMALL_STATE(629)] = 20022, + [SMALL_STATE(630)] = 20106, + [SMALL_STATE(631)] = 20170, + [SMALL_STATE(632)] = 20264, + [SMALL_STATE(633)] = 20312, + [SMALL_STATE(634)] = 20406, + [SMALL_STATE(635)] = 20492, + [SMALL_STATE(636)] = 20586, + [SMALL_STATE(637)] = 20650, + [SMALL_STATE(638)] = 20748, + [SMALL_STATE(639)] = 20836, + [SMALL_STATE(640)] = 20930, + [SMALL_STATE(641)] = 21000, + [SMALL_STATE(642)] = 21094, + [SMALL_STATE(643)] = 21176, + [SMALL_STATE(644)] = 21274, + [SMALL_STATE(645)] = 21364, + [SMALL_STATE(646)] = 21414, + [SMALL_STATE(647)] = 21498, + [SMALL_STATE(648)] = 21592, + [SMALL_STATE(649)] = 21642, + [SMALL_STATE(650)] = 21728, + [SMALL_STATE(651)] = 21782, + [SMALL_STATE(652)] = 21860, + [SMALL_STATE(653)] = 21928, + [SMALL_STATE(654)] = 21992, + [SMALL_STATE(655)] = 22086, + [SMALL_STATE(656)] = 22164, + [SMALL_STATE(657)] = 22228, + [SMALL_STATE(658)] = 22322, + [SMALL_STATE(659)] = 22416, + [SMALL_STATE(660)] = 22506, + [SMALL_STATE(661)] = 22594, + [SMALL_STATE(662)] = 22680, + [SMALL_STATE(663)] = 22774, + [SMALL_STATE(664)] = 22868, + [SMALL_STATE(665)] = 22964, + [SMALL_STATE(666)] = 23062, + [SMALL_STATE(667)] = 23130, + [SMALL_STATE(668)] = 23224, + [SMALL_STATE(669)] = 23318, + [SMALL_STATE(670)] = 23370, + [SMALL_STATE(671)] = 23456, + [SMALL_STATE(672)] = 23508, + [SMALL_STATE(673)] = 23558, + [SMALL_STATE(674)] = 23652, + [SMALL_STATE(675)] = 23746, + [SMALL_STATE(676)] = 23844, + [SMALL_STATE(677)] = 23942, + [SMALL_STATE(678)] = 24000, + [SMALL_STATE(679)] = 24048, + [SMALL_STATE(680)] = 24142, + [SMALL_STATE(681)] = 24224, + [SMALL_STATE(682)] = 24294, + [SMALL_STATE(683)] = 24392, + [SMALL_STATE(684)] = 24442, + [SMALL_STATE(685)] = 24536, + [SMALL_STATE(686)] = 24630, + [SMALL_STATE(687)] = 24677, + [SMALL_STATE(688)] = 24724, + [SMALL_STATE(689)] = 24821, + [SMALL_STATE(690)] = 24868, + [SMALL_STATE(691)] = 24915, + [SMALL_STATE(692)] = 24962, + [SMALL_STATE(693)] = 25009, + [SMALL_STATE(694)] = 25106, + [SMALL_STATE(695)] = 25203, + [SMALL_STATE(696)] = 25300, + [SMALL_STATE(697)] = 25347, + [SMALL_STATE(698)] = 25444, + [SMALL_STATE(699)] = 25541, + [SMALL_STATE(700)] = 25638, + [SMALL_STATE(701)] = 25735, + [SMALL_STATE(702)] = 25832, + [SMALL_STATE(703)] = 25883, + [SMALL_STATE(704)] = 25980, + [SMALL_STATE(705)] = 26031, + [SMALL_STATE(706)] = 26128, + [SMALL_STATE(707)] = 26179, + [SMALL_STATE(708)] = 26226, + [SMALL_STATE(709)] = 26273, + [SMALL_STATE(710)] = 26322, + [SMALL_STATE(711)] = 26369, + [SMALL_STATE(712)] = 26466, + [SMALL_STATE(713)] = 26563, + [SMALL_STATE(714)] = 26610, + [SMALL_STATE(715)] = 26707, + [SMALL_STATE(716)] = 26804, + [SMALL_STATE(717)] = 26855, + [SMALL_STATE(718)] = 26902, + [SMALL_STATE(719)] = 26949, + [SMALL_STATE(720)] = 26996, + [SMALL_STATE(721)] = 27043, + [SMALL_STATE(722)] = 27140, + [SMALL_STATE(723)] = 27237, + [SMALL_STATE(724)] = 27288, + [SMALL_STATE(725)] = 27385, + [SMALL_STATE(726)] = 27436, + [SMALL_STATE(727)] = 27533, + [SMALL_STATE(728)] = 27630, + [SMALL_STATE(729)] = 27727, + [SMALL_STATE(730)] = 27824, + [SMALL_STATE(731)] = 27921, + [SMALL_STATE(732)] = 28018, + [SMALL_STATE(733)] = 28065, + [SMALL_STATE(734)] = 28162, + [SMALL_STATE(735)] = 28259, + [SMALL_STATE(736)] = 28352, + [SMALL_STATE(737)] = 28399, + [SMALL_STATE(738)] = 28446, + [SMALL_STATE(739)] = 28543, + [SMALL_STATE(740)] = 28590, + [SMALL_STATE(741)] = 28637, + [SMALL_STATE(742)] = 28684, + [SMALL_STATE(743)] = 28731, + [SMALL_STATE(744)] = 28778, + [SMALL_STATE(745)] = 28825, + [SMALL_STATE(746)] = 28872, + [SMALL_STATE(747)] = 28969, + [SMALL_STATE(748)] = 29016, + [SMALL_STATE(749)] = 29113, + [SMALL_STATE(750)] = 29162, + [SMALL_STATE(751)] = 29209, + [SMALL_STATE(752)] = 29256, + [SMALL_STATE(753)] = 29307, + [SMALL_STATE(754)] = 29354, + [SMALL_STATE(755)] = 29401, + [SMALL_STATE(756)] = 29448, + [SMALL_STATE(757)] = 29545, + [SMALL_STATE(758)] = 29596, + [SMALL_STATE(759)] = 29643, + [SMALL_STATE(760)] = 29740, + [SMALL_STATE(761)] = 29791, + [SMALL_STATE(762)] = 29838, + [SMALL_STATE(763)] = 29885, + [SMALL_STATE(764)] = 29932, + [SMALL_STATE(765)] = 29983, + [SMALL_STATE(766)] = 30034, + [SMALL_STATE(767)] = 30081, + [SMALL_STATE(768)] = 30178, + [SMALL_STATE(769)] = 30275, + [SMALL_STATE(770)] = 30324, + [SMALL_STATE(771)] = 30371, + [SMALL_STATE(772)] = 30418, + [SMALL_STATE(773)] = 30515, + [SMALL_STATE(774)] = 30562, + [SMALL_STATE(775)] = 30615, + [SMALL_STATE(776)] = 30662, + [SMALL_STATE(777)] = 30755, + [SMALL_STATE(778)] = 30802, + [SMALL_STATE(779)] = 30895, + [SMALL_STATE(780)] = 30942, + [SMALL_STATE(781)] = 30991, + [SMALL_STATE(782)] = 31038, + [SMALL_STATE(783)] = 31085, + [SMALL_STATE(784)] = 31132, + [SMALL_STATE(785)] = 31183, + [SMALL_STATE(786)] = 31230, + [SMALL_STATE(787)] = 31327, + [SMALL_STATE(788)] = 31374, + [SMALL_STATE(789)] = 31471, + [SMALL_STATE(790)] = 31518, + [SMALL_STATE(791)] = 31569, + [SMALL_STATE(792)] = 31620, + [SMALL_STATE(793)] = 31667, + [SMALL_STATE(794)] = 31764, + [SMALL_STATE(795)] = 31861, + [SMALL_STATE(796)] = 31908, + [SMALL_STATE(797)] = 31955, + [SMALL_STATE(798)] = 32047, + [SMALL_STATE(799)] = 32139, + [SMALL_STATE(800)] = 32231, + [SMALL_STATE(801)] = 32303, + [SMALL_STATE(802)] = 32365, + [SMALL_STATE(803)] = 32449, + [SMALL_STATE(804)] = 32535, + [SMALL_STATE(805)] = 32603, + [SMALL_STATE(806)] = 32683, + [SMALL_STATE(807)] = 32765, + [SMALL_STATE(808)] = 32849, + [SMALL_STATE(809)] = 32941, + [SMALL_STATE(810)] = 33007, + [SMALL_STATE(811)] = 33069, + [SMALL_STATE(812)] = 33145, + [SMALL_STATE(813)] = 33233, + [SMALL_STATE(814)] = 33325, + [SMALL_STATE(815)] = 33417, + [SMALL_STATE(816)] = 33509, + [SMALL_STATE(817)] = 33601, + [SMALL_STATE(818)] = 33693, + [SMALL_STATE(819)] = 33785, + [SMALL_STATE(820)] = 33877, + [SMALL_STATE(821)] = 33969, + [SMALL_STATE(822)] = 34061, + [SMALL_STATE(823)] = 34153, + [SMALL_STATE(824)] = 34205, + [SMALL_STATE(825)] = 34255, + [SMALL_STATE(826)] = 34307, + [SMALL_STATE(827)] = 34359, + [SMALL_STATE(828)] = 34409, + [SMALL_STATE(829)] = 34461, + [SMALL_STATE(830)] = 34553, + [SMALL_STATE(831)] = 34645, + [SMALL_STATE(832)] = 34695, + [SMALL_STATE(833)] = 34789, + [SMALL_STATE(834)] = 34880, + [SMALL_STATE(835)] = 34971, + [SMALL_STATE(836)] = 35022, + [SMALL_STATE(837)] = 35113, + [SMALL_STATE(838)] = 35164, + [SMALL_STATE(839)] = 35255, + [SMALL_STATE(840)] = 35346, + [SMALL_STATE(841)] = 35437, + [SMALL_STATE(842)] = 35528, + [SMALL_STATE(843)] = 35619, + [SMALL_STATE(844)] = 35710, + [SMALL_STATE(845)] = 35801, + [SMALL_STATE(846)] = 35868, + [SMALL_STATE(847)] = 35947, + [SMALL_STATE(848)] = 36028, + [SMALL_STATE(849)] = 36119, + [SMALL_STATE(850)] = 36210, + [SMALL_STATE(851)] = 36301, + [SMALL_STATE(852)] = 36392, + [SMALL_STATE(853)] = 36475, + [SMALL_STATE(854)] = 36566, + [SMALL_STATE(855)] = 36631, + [SMALL_STATE(856)] = 36722, + [SMALL_STATE(857)] = 36815, + [SMALL_STATE(858)] = 36906, + [SMALL_STATE(859)] = 36991, + [SMALL_STATE(860)] = 37082, + [SMALL_STATE(861)] = 37173, + [SMALL_STATE(862)] = 37264, + [SMALL_STATE(863)] = 37347, + [SMALL_STATE(864)] = 37408, + [SMALL_STATE(865)] = 37459, + [SMALL_STATE(866)] = 37520, + [SMALL_STATE(867)] = 37571, + [SMALL_STATE(868)] = 37658, + [SMALL_STATE(869)] = 37733, + [SMALL_STATE(870)] = 37804, + [SMALL_STATE(871)] = 37850, + [SMALL_STATE(872)] = 37936, + [SMALL_STATE(873)] = 38024, + [SMALL_STATE(874)] = 38110, + [SMALL_STATE(875)] = 38196, + [SMALL_STATE(876)] = 38284, + [SMALL_STATE(877)] = 38334, + [SMALL_STATE(878)] = 38420, + [SMALL_STATE(879)] = 38506, + [SMALL_STATE(880)] = 38592, + [SMALL_STATE(881)] = 38638, + [SMALL_STATE(882)] = 38716, + [SMALL_STATE(883)] = 38793, + [SMALL_STATE(884)] = 38870, + [SMALL_STATE(885)] = 38947, + [SMALL_STATE(886)] = 39024, + [SMALL_STATE(887)] = 39101, + [SMALL_STATE(888)] = 39178, + [SMALL_STATE(889)] = 39255, + [SMALL_STATE(890)] = 39332, + [SMALL_STATE(891)] = 39409, + [SMALL_STATE(892)] = 39479, + [SMALL_STATE(893)] = 39536, + [SMALL_STATE(894)] = 39601, + [SMALL_STATE(895)] = 39658, + [SMALL_STATE(896)] = 39710, + [SMALL_STATE(897)] = 39766, + [SMALL_STATE(898)] = 39824, + [SMALL_STATE(899)] = 39882, + [SMALL_STATE(900)] = 39938, + [SMALL_STATE(901)] = 39994, + [SMALL_STATE(902)] = 40052, + [SMALL_STATE(903)] = 40110, + [SMALL_STATE(904)] = 40166, + [SMALL_STATE(905)] = 40222, + [SMALL_STATE(906)] = 40280, + [SMALL_STATE(907)] = 40336, + [SMALL_STATE(908)] = 40394, + [SMALL_STATE(909)] = 40445, + [SMALL_STATE(910)] = 40496, + [SMALL_STATE(911)] = 40549, + [SMALL_STATE(912)] = 40600, + [SMALL_STATE(913)] = 40651, + [SMALL_STATE(914)] = 40702, + [SMALL_STATE(915)] = 40753, + [SMALL_STATE(916)] = 40801, + [SMALL_STATE(917)] = 40851, + [SMALL_STATE(918)] = 40903, + [SMALL_STATE(919)] = 40953, + [SMALL_STATE(920)] = 41013, + [SMALL_STATE(921)] = 41068, + [SMALL_STATE(922)] = 41113, + [SMALL_STATE(923)] = 41168, + [SMALL_STATE(924)] = 41213, + [SMALL_STATE(925)] = 41258, + [SMALL_STATE(926)] = 41301, + [SMALL_STATE(927)] = 41348, + [SMALL_STATE(928)] = 41391, + [SMALL_STATE(929)] = 41434, + [SMALL_STATE(930)] = 41481, + [SMALL_STATE(931)] = 41526, + [SMALL_STATE(932)] = 41556, + [SMALL_STATE(933)] = 41584, + [SMALL_STATE(934)] = 41612, + [SMALL_STATE(935)] = 41640, + [SMALL_STATE(936)] = 41674, + [SMALL_STATE(937)] = 41702, + [SMALL_STATE(938)] = 41732, + [SMALL_STATE(939)] = 41770, + [SMALL_STATE(940)] = 41798, + [SMALL_STATE(941)] = 41826, + [SMALL_STATE(942)] = 41854, + [SMALL_STATE(943)] = 41882, + [SMALL_STATE(944)] = 41910, + [SMALL_STATE(945)] = 41938, + [SMALL_STATE(946)] = 41978, + [SMALL_STATE(947)] = 42006, + [SMALL_STATE(948)] = 42034, + [SMALL_STATE(949)] = 42062, + [SMALL_STATE(950)] = 42090, + [SMALL_STATE(951)] = 42128, + [SMALL_STATE(952)] = 42156, + [SMALL_STATE(953)] = 42184, + [SMALL_STATE(954)] = 42212, + [SMALL_STATE(955)] = 42250, + [SMALL_STATE(956)] = 42278, + [SMALL_STATE(957)] = 42306, + [SMALL_STATE(958)] = 42334, + [SMALL_STATE(959)] = 42372, + [SMALL_STATE(960)] = 42400, + [SMALL_STATE(961)] = 42428, + [SMALL_STATE(962)] = 42456, + [SMALL_STATE(963)] = 42484, + [SMALL_STATE(964)] = 42522, + [SMALL_STATE(965)] = 42560, + [SMALL_STATE(966)] = 42588, + [SMALL_STATE(967)] = 42616, + [SMALL_STATE(968)] = 42644, + [SMALL_STATE(969)] = 42672, + [SMALL_STATE(970)] = 42699, + [SMALL_STATE(971)] = 42726, + [SMALL_STATE(972)] = 42753, + [SMALL_STATE(973)] = 42780, + [SMALL_STATE(974)] = 42807, + [SMALL_STATE(975)] = 42834, + [SMALL_STATE(976)] = 42861, + [SMALL_STATE(977)] = 42888, + [SMALL_STATE(978)] = 42921, + [SMALL_STATE(979)] = 42948, + [SMALL_STATE(980)] = 42975, + [SMALL_STATE(981)] = 43004, + [SMALL_STATE(982)] = 43044, + [SMALL_STATE(983)] = 43086, + [SMALL_STATE(984)] = 43130, + [SMALL_STATE(985)] = 43172, + [SMALL_STATE(986)] = 43218, + [SMALL_STATE(987)] = 43256, + [SMALL_STATE(988)] = 43298, + [SMALL_STATE(989)] = 43338, + [SMALL_STATE(990)] = 43380, + [SMALL_STATE(991)] = 43415, + [SMALL_STATE(992)] = 43450, + [SMALL_STATE(993)] = 43485, + [SMALL_STATE(994)] = 43520, + [SMALL_STATE(995)] = 43555, + [SMALL_STATE(996)] = 43590, + [SMALL_STATE(997)] = 43625, + [SMALL_STATE(998)] = 43660, + [SMALL_STATE(999)] = 43701, + [SMALL_STATE(1000)] = 43736, + [SMALL_STATE(1001)] = 43761, + [SMALL_STATE(1002)] = 43796, + [SMALL_STATE(1003)] = 43821, + [SMALL_STATE(1004)] = 43856, + [SMALL_STATE(1005)] = 43891, + [SMALL_STATE(1006)] = 43926, + [SMALL_STATE(1007)] = 43961, + [SMALL_STATE(1008)] = 43996, + [SMALL_STATE(1009)] = 44021, + [SMALL_STATE(1010)] = 44060, + [SMALL_STATE(1011)] = 44095, + [SMALL_STATE(1012)] = 44138, + [SMALL_STATE(1013)] = 44181, + [SMALL_STATE(1014)] = 44220, + [SMALL_STATE(1015)] = 44255, + [SMALL_STATE(1016)] = 44280, + [SMALL_STATE(1017)] = 44315, + [SMALL_STATE(1018)] = 44340, + [SMALL_STATE(1019)] = 44375, + [SMALL_STATE(1020)] = 44400, + [SMALL_STATE(1021)] = 44435, + [SMALL_STATE(1022)] = 44470, + [SMALL_STATE(1023)] = 44505, + [SMALL_STATE(1024)] = 44540, + [SMALL_STATE(1025)] = 44581, + [SMALL_STATE(1026)] = 44616, + [SMALL_STATE(1027)] = 44648, + [SMALL_STATE(1028)] = 44680, + [SMALL_STATE(1029)] = 44712, + [SMALL_STATE(1030)] = 44744, + [SMALL_STATE(1031)] = 44776, + [SMALL_STATE(1032)] = 44808, + [SMALL_STATE(1033)] = 44840, + [SMALL_STATE(1034)] = 44872, + [SMALL_STATE(1035)] = 44904, + [SMALL_STATE(1036)] = 44936, + [SMALL_STATE(1037)] = 44958, + [SMALL_STATE(1038)] = 44990, + [SMALL_STATE(1039)] = 45012, + [SMALL_STATE(1040)] = 45044, + [SMALL_STATE(1041)] = 45076, + [SMALL_STATE(1042)] = 45108, + [SMALL_STATE(1043)] = 45140, + [SMALL_STATE(1044)] = 45162, + [SMALL_STATE(1045)] = 45184, + [SMALL_STATE(1046)] = 45216, + [SMALL_STATE(1047)] = 45248, + [SMALL_STATE(1048)] = 45270, + [SMALL_STATE(1049)] = 45302, + [SMALL_STATE(1050)] = 45340, + [SMALL_STATE(1051)] = 45376, + [SMALL_STATE(1052)] = 45412, + [SMALL_STATE(1053)] = 45442, + [SMALL_STATE(1054)] = 45472, + [SMALL_STATE(1055)] = 45502, + [SMALL_STATE(1056)] = 45532, + [SMALL_STATE(1057)] = 45568, + [SMALL_STATE(1058)] = 45598, + [SMALL_STATE(1059)] = 45628, + [SMALL_STATE(1060)] = 45658, + [SMALL_STATE(1061)] = 45694, + [SMALL_STATE(1062)] = 45724, + [SMALL_STATE(1063)] = 45757, + [SMALL_STATE(1064)] = 45790, + [SMALL_STATE(1065)] = 45823, + [SMALL_STATE(1066)] = 45856, + [SMALL_STATE(1067)] = 45889, + [SMALL_STATE(1068)] = 45922, + [SMALL_STATE(1069)] = 45955, + [SMALL_STATE(1070)] = 45982, + [SMALL_STATE(1071)] = 46015, + [SMALL_STATE(1072)] = 46045, + [SMALL_STATE(1073)] = 46075, + [SMALL_STATE(1074)] = 46105, + [SMALL_STATE(1075)] = 46135, + [SMALL_STATE(1076)] = 46165, + [SMALL_STATE(1077)] = 46195, + [SMALL_STATE(1078)] = 46225, + [SMALL_STATE(1079)] = 46255, + [SMALL_STATE(1080)] = 46281, + [SMALL_STATE(1081)] = 46307, + [SMALL_STATE(1082)] = 46337, + [SMALL_STATE(1083)] = 46365, + [SMALL_STATE(1084)] = 46395, + [SMALL_STATE(1085)] = 46425, + [SMALL_STATE(1086)] = 46455, + [SMALL_STATE(1087)] = 46485, + [SMALL_STATE(1088)] = 46515, + [SMALL_STATE(1089)] = 46545, + [SMALL_STATE(1090)] = 46575, + [SMALL_STATE(1091)] = 46605, + [SMALL_STATE(1092)] = 46635, + [SMALL_STATE(1093)] = 46665, + [SMALL_STATE(1094)] = 46695, + [SMALL_STATE(1095)] = 46722, + [SMALL_STATE(1096)] = 46749, + [SMALL_STATE(1097)] = 46763, + [SMALL_STATE(1098)] = 46777, + [SMALL_STATE(1099)] = 46801, + [SMALL_STATE(1100)] = 46825, + [SMALL_STATE(1101)] = 46849, + [SMALL_STATE(1102)] = 46873, + [SMALL_STATE(1103)] = 46887, + [SMALL_STATE(1104)] = 46905, + [SMALL_STATE(1105)] = 46929, + [SMALL_STATE(1106)] = 46949, + [SMALL_STATE(1107)] = 46973, + [SMALL_STATE(1108)] = 46987, + [SMALL_STATE(1109)] = 47011, + [SMALL_STATE(1110)] = 47031, + [SMALL_STATE(1111)] = 47053, + [SMALL_STATE(1112)] = 47075, + [SMALL_STATE(1113)] = 47097, + [SMALL_STATE(1114)] = 47119, + [SMALL_STATE(1115)] = 47143, + [SMALL_STATE(1116)] = 47167, + [SMALL_STATE(1117)] = 47191, + [SMALL_STATE(1118)] = 47205, + [SMALL_STATE(1119)] = 47223, + [SMALL_STATE(1120)] = 47245, + [SMALL_STATE(1121)] = 47267, + [SMALL_STATE(1122)] = 47288, + [SMALL_STATE(1123)] = 47301, + [SMALL_STATE(1124)] = 47314, + [SMALL_STATE(1125)] = 47327, + [SMALL_STATE(1126)] = 47346, + [SMALL_STATE(1127)] = 47359, + [SMALL_STATE(1128)] = 47380, + [SMALL_STATE(1129)] = 47393, + [SMALL_STATE(1130)] = 47412, + [SMALL_STATE(1131)] = 47433, + [SMALL_STATE(1132)] = 47454, + [SMALL_STATE(1133)] = 47475, + [SMALL_STATE(1134)] = 47494, + [SMALL_STATE(1135)] = 47507, + [SMALL_STATE(1136)] = 47520, + [SMALL_STATE(1137)] = 47533, + [SMALL_STATE(1138)] = 47554, + [SMALL_STATE(1139)] = 47575, + [SMALL_STATE(1140)] = 47590, + [SMALL_STATE(1141)] = 47605, + [SMALL_STATE(1142)] = 47624, + [SMALL_STATE(1143)] = 47637, + [SMALL_STATE(1144)] = 47656, + [SMALL_STATE(1145)] = 47675, + [SMALL_STATE(1146)] = 47694, + [SMALL_STATE(1147)] = 47713, + [SMALL_STATE(1148)] = 47732, + [SMALL_STATE(1149)] = 47753, + [SMALL_STATE(1150)] = 47772, + [SMALL_STATE(1151)] = 47791, + [SMALL_STATE(1152)] = 47804, + [SMALL_STATE(1153)] = 47821, + [SMALL_STATE(1154)] = 47837, + [SMALL_STATE(1155)] = 47851, + [SMALL_STATE(1156)] = 47865, + [SMALL_STATE(1157)] = 47879, + [SMALL_STATE(1158)] = 47893, + [SMALL_STATE(1159)] = 47907, + [SMALL_STATE(1160)] = 47921, + [SMALL_STATE(1161)] = 47935, + [SMALL_STATE(1162)] = 47949, + [SMALL_STATE(1163)] = 47967, + [SMALL_STATE(1164)] = 47987, + [SMALL_STATE(1165)] = 48007, + [SMALL_STATE(1166)] = 48025, + [SMALL_STATE(1167)] = 48039, + [SMALL_STATE(1168)] = 48053, + [SMALL_STATE(1169)] = 48073, + [SMALL_STATE(1170)] = 48093, + [SMALL_STATE(1171)] = 48113, + [SMALL_STATE(1172)] = 48133, + [SMALL_STATE(1173)] = 48153, + [SMALL_STATE(1174)] = 48167, + [SMALL_STATE(1175)] = 48187, + [SMALL_STATE(1176)] = 48207, + [SMALL_STATE(1177)] = 48221, + [SMALL_STATE(1178)] = 48235, + [SMALL_STATE(1179)] = 48249, + [SMALL_STATE(1180)] = 48263, + [SMALL_STATE(1181)] = 48277, + [SMALL_STATE(1182)] = 48291, + [SMALL_STATE(1183)] = 48305, + [SMALL_STATE(1184)] = 48319, + [SMALL_STATE(1185)] = 48333, + [SMALL_STATE(1186)] = 48345, + [SMALL_STATE(1187)] = 48357, + [SMALL_STATE(1188)] = 48377, + [SMALL_STATE(1189)] = 48393, + [SMALL_STATE(1190)] = 48407, + [SMALL_STATE(1191)] = 48427, + [SMALL_STATE(1192)] = 48447, + [SMALL_STATE(1193)] = 48461, + [SMALL_STATE(1194)] = 48475, + [SMALL_STATE(1195)] = 48489, + [SMALL_STATE(1196)] = 48509, + [SMALL_STATE(1197)] = 48523, + [SMALL_STATE(1198)] = 48537, + [SMALL_STATE(1199)] = 48557, + [SMALL_STATE(1200)] = 48575, + [SMALL_STATE(1201)] = 48595, + [SMALL_STATE(1202)] = 48609, + [SMALL_STATE(1203)] = 48625, + [SMALL_STATE(1204)] = 48639, + [SMALL_STATE(1205)] = 48653, + [SMALL_STATE(1206)] = 48667, + [SMALL_STATE(1207)] = 48681, + [SMALL_STATE(1208)] = 48695, + [SMALL_STATE(1209)] = 48709, + [SMALL_STATE(1210)] = 48723, + [SMALL_STATE(1211)] = 48737, + [SMALL_STATE(1212)] = 48757, + [SMALL_STATE(1213)] = 48777, + [SMALL_STATE(1214)] = 48797, + [SMALL_STATE(1215)] = 48817, + [SMALL_STATE(1216)] = 48837, + [SMALL_STATE(1217)] = 48857, + [SMALL_STATE(1218)] = 48871, + [SMALL_STATE(1219)] = 48883, + [SMALL_STATE(1220)] = 48903, + [SMALL_STATE(1221)] = 48922, + [SMALL_STATE(1222)] = 48939, + [SMALL_STATE(1223)] = 48954, + [SMALL_STATE(1224)] = 48971, + [SMALL_STATE(1225)] = 48988, + [SMALL_STATE(1226)] = 49005, + [SMALL_STATE(1227)] = 49022, + [SMALL_STATE(1228)] = 49039, + [SMALL_STATE(1229)] = 49056, + [SMALL_STATE(1230)] = 49073, + [SMALL_STATE(1231)] = 49090, + [SMALL_STATE(1232)] = 49107, + [SMALL_STATE(1233)] = 49126, + [SMALL_STATE(1234)] = 49145, + [SMALL_STATE(1235)] = 49162, + [SMALL_STATE(1236)] = 49179, + [SMALL_STATE(1237)] = 49194, + [SMALL_STATE(1238)] = 49209, + [SMALL_STATE(1239)] = 49224, + [SMALL_STATE(1240)] = 49241, + [SMALL_STATE(1241)] = 49258, + [SMALL_STATE(1242)] = 49275, + [SMALL_STATE(1243)] = 49292, + [SMALL_STATE(1244)] = 49309, + [SMALL_STATE(1245)] = 49320, + [SMALL_STATE(1246)] = 49335, + [SMALL_STATE(1247)] = 49350, + [SMALL_STATE(1248)] = 49367, + [SMALL_STATE(1249)] = 49384, + [SMALL_STATE(1250)] = 49401, + [SMALL_STATE(1251)] = 49414, + [SMALL_STATE(1252)] = 49431, + [SMALL_STATE(1253)] = 49448, + [SMALL_STATE(1254)] = 49465, + [SMALL_STATE(1255)] = 49482, + [SMALL_STATE(1256)] = 49497, + [SMALL_STATE(1257)] = 49510, + [SMALL_STATE(1258)] = 49527, + [SMALL_STATE(1259)] = 49546, + [SMALL_STATE(1260)] = 49561, + [SMALL_STATE(1261)] = 49576, + [SMALL_STATE(1262)] = 49595, + [SMALL_STATE(1263)] = 49612, + [SMALL_STATE(1264)] = 49627, + [SMALL_STATE(1265)] = 49642, + [SMALL_STATE(1266)] = 49659, + [SMALL_STATE(1267)] = 49674, + [SMALL_STATE(1268)] = 49687, + [SMALL_STATE(1269)] = 49704, + [SMALL_STATE(1270)] = 49721, + [SMALL_STATE(1271)] = 49736, + [SMALL_STATE(1272)] = 49755, + [SMALL_STATE(1273)] = 49772, + [SMALL_STATE(1274)] = 49783, + [SMALL_STATE(1275)] = 49800, + [SMALL_STATE(1276)] = 49811, + [SMALL_STATE(1277)] = 49828, + [SMALL_STATE(1278)] = 49839, + [SMALL_STATE(1279)] = 49856, + [SMALL_STATE(1280)] = 49867, + [SMALL_STATE(1281)] = 49884, + [SMALL_STATE(1282)] = 49901, + [SMALL_STATE(1283)] = 49918, + [SMALL_STATE(1284)] = 49935, + [SMALL_STATE(1285)] = 49952, + [SMALL_STATE(1286)] = 49969, + [SMALL_STATE(1287)] = 49986, + [SMALL_STATE(1288)] = 50003, + [SMALL_STATE(1289)] = 50018, + [SMALL_STATE(1290)] = 50033, + [SMALL_STATE(1291)] = 50048, + [SMALL_STATE(1292)] = 50065, + [SMALL_STATE(1293)] = 50080, + [SMALL_STATE(1294)] = 50097, + [SMALL_STATE(1295)] = 50108, + [SMALL_STATE(1296)] = 50125, + [SMALL_STATE(1297)] = 50138, + [SMALL_STATE(1298)] = 50155, + [SMALL_STATE(1299)] = 50169, + [SMALL_STATE(1300)] = 50183, + [SMALL_STATE(1301)] = 50197, + [SMALL_STATE(1302)] = 50211, + [SMALL_STATE(1303)] = 50225, + [SMALL_STATE(1304)] = 50239, + [SMALL_STATE(1305)] = 50253, + [SMALL_STATE(1306)] = 50267, + [SMALL_STATE(1307)] = 50281, + [SMALL_STATE(1308)] = 50295, + [SMALL_STATE(1309)] = 50309, + [SMALL_STATE(1310)] = 50321, + [SMALL_STATE(1311)] = 50335, + [SMALL_STATE(1312)] = 50349, + [SMALL_STATE(1313)] = 50359, + [SMALL_STATE(1314)] = 50373, + [SMALL_STATE(1315)] = 50383, + [SMALL_STATE(1316)] = 50397, + [SMALL_STATE(1317)] = 50411, + [SMALL_STATE(1318)] = 50423, + [SMALL_STATE(1319)] = 50437, + [SMALL_STATE(1320)] = 50453, + [SMALL_STATE(1321)] = 50469, + [SMALL_STATE(1322)] = 50483, + [SMALL_STATE(1323)] = 50497, + [SMALL_STATE(1324)] = 50511, + [SMALL_STATE(1325)] = 50525, + [SMALL_STATE(1326)] = 50539, + [SMALL_STATE(1327)] = 50553, + [SMALL_STATE(1328)] = 50567, + [SMALL_STATE(1329)] = 50581, + [SMALL_STATE(1330)] = 50595, + [SMALL_STATE(1331)] = 50609, + [SMALL_STATE(1332)] = 50623, + [SMALL_STATE(1333)] = 50633, + [SMALL_STATE(1334)] = 50645, + [SMALL_STATE(1335)] = 50659, + [SMALL_STATE(1336)] = 50673, + [SMALL_STATE(1337)] = 50687, + [SMALL_STATE(1338)] = 50701, + [SMALL_STATE(1339)] = 50715, + [SMALL_STATE(1340)] = 50729, + [SMALL_STATE(1341)] = 50743, + [SMALL_STATE(1342)] = 50757, + [SMALL_STATE(1343)] = 50771, + [SMALL_STATE(1344)] = 50785, + [SMALL_STATE(1345)] = 50799, + [SMALL_STATE(1346)] = 50811, + [SMALL_STATE(1347)] = 50825, + [SMALL_STATE(1348)] = 50839, + [SMALL_STATE(1349)] = 50853, + [SMALL_STATE(1350)] = 50865, + [SMALL_STATE(1351)] = 50879, + [SMALL_STATE(1352)] = 50893, + [SMALL_STATE(1353)] = 50907, + [SMALL_STATE(1354)] = 50917, + [SMALL_STATE(1355)] = 50927, + [SMALL_STATE(1356)] = 50941, + [SMALL_STATE(1357)] = 50955, + [SMALL_STATE(1358)] = 50971, + [SMALL_STATE(1359)] = 50983, + [SMALL_STATE(1360)] = 50997, + [SMALL_STATE(1361)] = 51009, + [SMALL_STATE(1362)] = 51023, + [SMALL_STATE(1363)] = 51037, + [SMALL_STATE(1364)] = 51051, + [SMALL_STATE(1365)] = 51065, + [SMALL_STATE(1366)] = 51079, + [SMALL_STATE(1367)] = 51089, + [SMALL_STATE(1368)] = 51103, + [SMALL_STATE(1369)] = 51117, + [SMALL_STATE(1370)] = 51131, + [SMALL_STATE(1371)] = 51141, + [SMALL_STATE(1372)] = 51155, + [SMALL_STATE(1373)] = 51171, + [SMALL_STATE(1374)] = 51185, + [SMALL_STATE(1375)] = 51199, + [SMALL_STATE(1376)] = 51213, + [SMALL_STATE(1377)] = 51227, + [SMALL_STATE(1378)] = 51243, + [SMALL_STATE(1379)] = 51257, + [SMALL_STATE(1380)] = 51271, + [SMALL_STATE(1381)] = 51285, + [SMALL_STATE(1382)] = 51301, + [SMALL_STATE(1383)] = 51315, + [SMALL_STATE(1384)] = 51329, + [SMALL_STATE(1385)] = 51339, + [SMALL_STATE(1386)] = 51351, + [SMALL_STATE(1387)] = 51365, + [SMALL_STATE(1388)] = 51379, + [SMALL_STATE(1389)] = 51391, + [SMALL_STATE(1390)] = 51403, + [SMALL_STATE(1391)] = 51417, + [SMALL_STATE(1392)] = 51431, + [SMALL_STATE(1393)] = 51445, + [SMALL_STATE(1394)] = 51459, + [SMALL_STATE(1395)] = 51473, + [SMALL_STATE(1396)] = 51487, + [SMALL_STATE(1397)] = 51501, + [SMALL_STATE(1398)] = 51513, + [SMALL_STATE(1399)] = 51527, + [SMALL_STATE(1400)] = 51543, + [SMALL_STATE(1401)] = 51554, + [SMALL_STATE(1402)] = 51565, + [SMALL_STATE(1403)] = 51576, + [SMALL_STATE(1404)] = 51585, + [SMALL_STATE(1405)] = 51594, + [SMALL_STATE(1406)] = 51605, + [SMALL_STATE(1407)] = 51616, + [SMALL_STATE(1408)] = 51627, + [SMALL_STATE(1409)] = 51636, + [SMALL_STATE(1410)] = 51647, + [SMALL_STATE(1411)] = 51658, + [SMALL_STATE(1412)] = 51669, + [SMALL_STATE(1413)] = 51680, + [SMALL_STATE(1414)] = 51691, + [SMALL_STATE(1415)] = 51702, + [SMALL_STATE(1416)] = 51711, + [SMALL_STATE(1417)] = 51722, + [SMALL_STATE(1418)] = 51731, + [SMALL_STATE(1419)] = 51742, + [SMALL_STATE(1420)] = 51753, + [SMALL_STATE(1421)] = 51762, + [SMALL_STATE(1422)] = 51771, + [SMALL_STATE(1423)] = 51780, + [SMALL_STATE(1424)] = 51791, + [SMALL_STATE(1425)] = 51800, + [SMALL_STATE(1426)] = 51811, + [SMALL_STATE(1427)] = 51822, + [SMALL_STATE(1428)] = 51833, + [SMALL_STATE(1429)] = 51844, + [SMALL_STATE(1430)] = 51855, + [SMALL_STATE(1431)] = 51866, + [SMALL_STATE(1432)] = 51877, + [SMALL_STATE(1433)] = 51888, + [SMALL_STATE(1434)] = 51899, + [SMALL_STATE(1435)] = 51910, + [SMALL_STATE(1436)] = 51921, + [SMALL_STATE(1437)] = 51932, + [SMALL_STATE(1438)] = 51943, + [SMALL_STATE(1439)] = 51954, + [SMALL_STATE(1440)] = 51965, + [SMALL_STATE(1441)] = 51976, + [SMALL_STATE(1442)] = 51987, + [SMALL_STATE(1443)] = 51998, + [SMALL_STATE(1444)] = 52009, + [SMALL_STATE(1445)] = 52020, + [SMALL_STATE(1446)] = 52031, + [SMALL_STATE(1447)] = 52042, + [SMALL_STATE(1448)] = 52053, + [SMALL_STATE(1449)] = 52064, + [SMALL_STATE(1450)] = 52075, + [SMALL_STATE(1451)] = 52086, + [SMALL_STATE(1452)] = 52095, + [SMALL_STATE(1453)] = 52106, + [SMALL_STATE(1454)] = 52117, + [SMALL_STATE(1455)] = 52128, + [SMALL_STATE(1456)] = 52139, + [SMALL_STATE(1457)] = 52150, + [SMALL_STATE(1458)] = 52159, + [SMALL_STATE(1459)] = 52168, + [SMALL_STATE(1460)] = 52179, + [SMALL_STATE(1461)] = 52190, + [SMALL_STATE(1462)] = 52201, + [SMALL_STATE(1463)] = 52212, + [SMALL_STATE(1464)] = 52223, + [SMALL_STATE(1465)] = 52234, + [SMALL_STATE(1466)] = 52245, + [SMALL_STATE(1467)] = 52256, + [SMALL_STATE(1468)] = 52265, + [SMALL_STATE(1469)] = 52276, + [SMALL_STATE(1470)] = 52287, + [SMALL_STATE(1471)] = 52298, + [SMALL_STATE(1472)] = 52309, + [SMALL_STATE(1473)] = 52318, + [SMALL_STATE(1474)] = 52327, + [SMALL_STATE(1475)] = 52338, + [SMALL_STATE(1476)] = 52349, + [SMALL_STATE(1477)] = 52360, + [SMALL_STATE(1478)] = 52371, + [SMALL_STATE(1479)] = 52382, + [SMALL_STATE(1480)] = 52393, + [SMALL_STATE(1481)] = 52404, + [SMALL_STATE(1482)] = 52415, + [SMALL_STATE(1483)] = 52426, + [SMALL_STATE(1484)] = 52435, + [SMALL_STATE(1485)] = 52446, + [SMALL_STATE(1486)] = 52457, + [SMALL_STATE(1487)] = 52468, + [SMALL_STATE(1488)] = 52479, + [SMALL_STATE(1489)] = 52488, + [SMALL_STATE(1490)] = 52499, + [SMALL_STATE(1491)] = 52510, + [SMALL_STATE(1492)] = 52521, + [SMALL_STATE(1493)] = 52532, + [SMALL_STATE(1494)] = 52543, + [SMALL_STATE(1495)] = 52554, + [SMALL_STATE(1496)] = 52565, + [SMALL_STATE(1497)] = 52576, + [SMALL_STATE(1498)] = 52587, + [SMALL_STATE(1499)] = 52598, + [SMALL_STATE(1500)] = 52609, + [SMALL_STATE(1501)] = 52620, + [SMALL_STATE(1502)] = 52631, + [SMALL_STATE(1503)] = 52642, + [SMALL_STATE(1504)] = 52653, + [SMALL_STATE(1505)] = 52664, + [SMALL_STATE(1506)] = 52673, + [SMALL_STATE(1507)] = 52684, + [SMALL_STATE(1508)] = 52695, + [SMALL_STATE(1509)] = 52706, + [SMALL_STATE(1510)] = 52717, + [SMALL_STATE(1511)] = 52728, + [SMALL_STATE(1512)] = 52739, + [SMALL_STATE(1513)] = 52750, + [SMALL_STATE(1514)] = 52761, + [SMALL_STATE(1515)] = 52772, + [SMALL_STATE(1516)] = 52783, + [SMALL_STATE(1517)] = 52794, + [SMALL_STATE(1518)] = 52805, + [SMALL_STATE(1519)] = 52816, + [SMALL_STATE(1520)] = 52827, + [SMALL_STATE(1521)] = 52838, + [SMALL_STATE(1522)] = 52847, + [SMALL_STATE(1523)] = 52858, + [SMALL_STATE(1524)] = 52869, + [SMALL_STATE(1525)] = 52878, + [SMALL_STATE(1526)] = 52889, + [SMALL_STATE(1527)] = 52900, + [SMALL_STATE(1528)] = 52911, + [SMALL_STATE(1529)] = 52922, + [SMALL_STATE(1530)] = 52931, + [SMALL_STATE(1531)] = 52940, + [SMALL_STATE(1532)] = 52951, + [SMALL_STATE(1533)] = 52962, + [SMALL_STATE(1534)] = 52971, + [SMALL_STATE(1535)] = 52982, + [SMALL_STATE(1536)] = 52993, + [SMALL_STATE(1537)] = 53004, + [SMALL_STATE(1538)] = 53015, + [SMALL_STATE(1539)] = 53026, + [SMALL_STATE(1540)] = 53037, + [SMALL_STATE(1541)] = 53048, + [SMALL_STATE(1542)] = 53059, + [SMALL_STATE(1543)] = 53070, + [SMALL_STATE(1544)] = 53081, + [SMALL_STATE(1545)] = 53092, + [SMALL_STATE(1546)] = 53103, + [SMALL_STATE(1547)] = 53114, + [SMALL_STATE(1548)] = 53125, + [SMALL_STATE(1549)] = 53136, + [SMALL_STATE(1550)] = 53147, + [SMALL_STATE(1551)] = 53158, + [SMALL_STATE(1552)] = 53167, + [SMALL_STATE(1553)] = 53176, + [SMALL_STATE(1554)] = 53187, + [SMALL_STATE(1555)] = 53198, + [SMALL_STATE(1556)] = 53209, + [SMALL_STATE(1557)] = 53220, + [SMALL_STATE(1558)] = 53231, + [SMALL_STATE(1559)] = 53242, + [SMALL_STATE(1560)] = 53253, + [SMALL_STATE(1561)] = 53264, + [SMALL_STATE(1562)] = 53275, + [SMALL_STATE(1563)] = 53286, + [SMALL_STATE(1564)] = 53295, + [SMALL_STATE(1565)] = 53306, + [SMALL_STATE(1566)] = 53317, + [SMALL_STATE(1567)] = 53328, + [SMALL_STATE(1568)] = 53339, + [SMALL_STATE(1569)] = 53350, + [SMALL_STATE(1570)] = 53361, + [SMALL_STATE(1571)] = 53372, + [SMALL_STATE(1572)] = 53383, + [SMALL_STATE(1573)] = 53394, + [SMALL_STATE(1574)] = 53405, + [SMALL_STATE(1575)] = 53416, + [SMALL_STATE(1576)] = 53427, + [SMALL_STATE(1577)] = 53438, + [SMALL_STATE(1578)] = 53447, + [SMALL_STATE(1579)] = 53458, + [SMALL_STATE(1580)] = 53469, + [SMALL_STATE(1581)] = 53480, + [SMALL_STATE(1582)] = 53489, + [SMALL_STATE(1583)] = 53500, + [SMALL_STATE(1584)] = 53511, + [SMALL_STATE(1585)] = 53522, + [SMALL_STATE(1586)] = 53533, + [SMALL_STATE(1587)] = 53544, + [SMALL_STATE(1588)] = 53555, + [SMALL_STATE(1589)] = 53566, + [SMALL_STATE(1590)] = 53577, + [SMALL_STATE(1591)] = 53588, + [SMALL_STATE(1592)] = 53599, + [SMALL_STATE(1593)] = 53610, + [SMALL_STATE(1594)] = 53621, + [SMALL_STATE(1595)] = 53630, + [SMALL_STATE(1596)] = 53641, + [SMALL_STATE(1597)] = 53652, + [SMALL_STATE(1598)] = 53661, + [SMALL_STATE(1599)] = 53672, + [SMALL_STATE(1600)] = 53683, + [SMALL_STATE(1601)] = 53694, + [SMALL_STATE(1602)] = 53705, + [SMALL_STATE(1603)] = 53716, + [SMALL_STATE(1604)] = 53727, + [SMALL_STATE(1605)] = 53738, + [SMALL_STATE(1606)] = 53749, + [SMALL_STATE(1607)] = 53760, + [SMALL_STATE(1608)] = 53771, + [SMALL_STATE(1609)] = 53782, + [SMALL_STATE(1610)] = 53793, + [SMALL_STATE(1611)] = 53804, + [SMALL_STATE(1612)] = 53813, + [SMALL_STATE(1613)] = 53824, + [SMALL_STATE(1614)] = 53835, + [SMALL_STATE(1615)] = 53846, + [SMALL_STATE(1616)] = 53857, + [SMALL_STATE(1617)] = 53868, + [SMALL_STATE(1618)] = 53879, + [SMALL_STATE(1619)] = 53890, + [SMALL_STATE(1620)] = 53901, + [SMALL_STATE(1621)] = 53912, + [SMALL_STATE(1622)] = 53923, + [SMALL_STATE(1623)] = 53934, + [SMALL_STATE(1624)] = 53945, + [SMALL_STATE(1625)] = 53956, + [SMALL_STATE(1626)] = 53967, + [SMALL_STATE(1627)] = 53978, + [SMALL_STATE(1628)] = 53989, + [SMALL_STATE(1629)] = 54000, + [SMALL_STATE(1630)] = 54011, + [SMALL_STATE(1631)] = 54022, + [SMALL_STATE(1632)] = 54033, + [SMALL_STATE(1633)] = 54044, + [SMALL_STATE(1634)] = 54055, + [SMALL_STATE(1635)] = 54066, + [SMALL_STATE(1636)] = 54077, + [SMALL_STATE(1637)] = 54088, + [SMALL_STATE(1638)] = 54097, + [SMALL_STATE(1639)] = 54108, + [SMALL_STATE(1640)] = 54117, + [SMALL_STATE(1641)] = 54128, + [SMALL_STATE(1642)] = 54139, + [SMALL_STATE(1643)] = 54150, + [SMALL_STATE(1644)] = 54161, + [SMALL_STATE(1645)] = 54169, + [SMALL_STATE(1646)] = 54177, + [SMALL_STATE(1647)] = 54185, + [SMALL_STATE(1648)] = 54193, + [SMALL_STATE(1649)] = 54201, + [SMALL_STATE(1650)] = 54209, + [SMALL_STATE(1651)] = 54217, + [SMALL_STATE(1652)] = 54225, + [SMALL_STATE(1653)] = 54233, + [SMALL_STATE(1654)] = 54241, + [SMALL_STATE(1655)] = 54249, + [SMALL_STATE(1656)] = 54259, + [SMALL_STATE(1657)] = 54267, + [SMALL_STATE(1658)] = 54275, + [SMALL_STATE(1659)] = 54285, + [SMALL_STATE(1660)] = 54293, + [SMALL_STATE(1661)] = 54301, + [SMALL_STATE(1662)] = 54309, + [SMALL_STATE(1663)] = 54317, + [SMALL_STATE(1664)] = 54325, + [SMALL_STATE(1665)] = 54333, + [SMALL_STATE(1666)] = 54341, + [SMALL_STATE(1667)] = 54349, + [SMALL_STATE(1668)] = 54357, + [SMALL_STATE(1669)] = 54365, + [SMALL_STATE(1670)] = 54375, + [SMALL_STATE(1671)] = 54383, + [SMALL_STATE(1672)] = 54391, + [SMALL_STATE(1673)] = 54399, + [SMALL_STATE(1674)] = 54407, + [SMALL_STATE(1675)] = 54415, + [SMALL_STATE(1676)] = 54423, + [SMALL_STATE(1677)] = 54431, + [SMALL_STATE(1678)] = 54439, + [SMALL_STATE(1679)] = 54447, + [SMALL_STATE(1680)] = 54455, + [SMALL_STATE(1681)] = 54463, + [SMALL_STATE(1682)] = 54471, + [SMALL_STATE(1683)] = 54479, + [SMALL_STATE(1684)] = 54487, + [SMALL_STATE(1685)] = 54495, + [SMALL_STATE(1686)] = 54503, + [SMALL_STATE(1687)] = 54511, + [SMALL_STATE(1688)] = 54519, + [SMALL_STATE(1689)] = 54527, + [SMALL_STATE(1690)] = 54535, + [SMALL_STATE(1691)] = 54543, + [SMALL_STATE(1692)] = 54551, + [SMALL_STATE(1693)] = 54559, + [SMALL_STATE(1694)] = 54567, + [SMALL_STATE(1695)] = 54575, + [SMALL_STATE(1696)] = 54583, + [SMALL_STATE(1697)] = 54591, + [SMALL_STATE(1698)] = 54599, + [SMALL_STATE(1699)] = 54607, + [SMALL_STATE(1700)] = 54615, + [SMALL_STATE(1701)] = 54623, + [SMALL_STATE(1702)] = 54631, + [SMALL_STATE(1703)] = 54639, + [SMALL_STATE(1704)] = 54647, + [SMALL_STATE(1705)] = 54655, + [SMALL_STATE(1706)] = 54663, + [SMALL_STATE(1707)] = 54671, + [SMALL_STATE(1708)] = 54681, + [SMALL_STATE(1709)] = 54689, + [SMALL_STATE(1710)] = 54697, + [SMALL_STATE(1711)] = 54705, + [SMALL_STATE(1712)] = 54713, + [SMALL_STATE(1713)] = 54721, + [SMALL_STATE(1714)] = 54729, + [SMALL_STATE(1715)] = 54737, + [SMALL_STATE(1716)] = 54745, + [SMALL_STATE(1717)] = 54755, + [SMALL_STATE(1718)] = 54763, + [SMALL_STATE(1719)] = 54771, + [SMALL_STATE(1720)] = 54779, + [SMALL_STATE(1721)] = 54787, + [SMALL_STATE(1722)] = 54795, + [SMALL_STATE(1723)] = 54803, + [SMALL_STATE(1724)] = 54811, + [SMALL_STATE(1725)] = 54819, + [SMALL_STATE(1726)] = 54827, + [SMALL_STATE(1727)] = 54835, + [SMALL_STATE(1728)] = 54843, + [SMALL_STATE(1729)] = 54851, + [SMALL_STATE(1730)] = 54859, + [SMALL_STATE(1731)] = 54867, + [SMALL_STATE(1732)] = 54875, + [SMALL_STATE(1733)] = 54883, + [SMALL_STATE(1734)] = 54891, + [SMALL_STATE(1735)] = 54899, + [SMALL_STATE(1736)] = 54907, + [SMALL_STATE(1737)] = 54917, + [SMALL_STATE(1738)] = 54925, + [SMALL_STATE(1739)] = 54933, + [SMALL_STATE(1740)] = 54943, + [SMALL_STATE(1741)] = 54953, + [SMALL_STATE(1742)] = 54961, + [SMALL_STATE(1743)] = 54969, + [SMALL_STATE(1744)] = 54977, + [SMALL_STATE(1745)] = 54985, + [SMALL_STATE(1746)] = 54993, + [SMALL_STATE(1747)] = 55001, + [SMALL_STATE(1748)] = 55009, + [SMALL_STATE(1749)] = 55017, + [SMALL_STATE(1750)] = 55025, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(477), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(281), - [157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(504), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1064), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1066), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1355), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1359), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1330), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(86), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(183), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1361), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(36), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1366), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1367), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1323), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1322), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1371), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(102), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(117), - [213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(316), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(48), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(73), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1373), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1151), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1643), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1150), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(308), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1187), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(113), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(208), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(208), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(211), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1189), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1192), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1104), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(736), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(736), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(739), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1285), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(472), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 38), - [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 38), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 62), - [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 62), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 104), - [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 104), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 96), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 96), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 96), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 96), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 91), - [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 91), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 91), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 91), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 72), - [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 72), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 91), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 91), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 91), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 91), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 79), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 79), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 79), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 79), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 82), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 82), - [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 82), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 82), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 102), - [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 102), - [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 102), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 102), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 74), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 74), - [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 74), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 74), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 37), - [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 37), - [671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 37), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 37), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), - [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(40), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(996), - [865] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(93), - [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(252), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 6), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(93), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 19), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(115), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(254), - [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(226), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 27), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 27), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 23), - [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 23), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 19), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 6), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 107), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 107), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 25), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 25), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 64), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 64), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 79), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 79), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 86), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 86), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 81), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 81), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 22), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 22), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 74), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 74), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 20), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 20), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 95), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 95), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 24), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 26), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 26), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 100), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 100), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 37), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 37), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 91), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 91), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 91), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 91), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 96), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 96), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 28), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 28), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 29), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 29), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 30), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 30), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 30), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 30), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 106), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 106), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 102), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 102), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 65), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 65), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 63), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 63), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 22), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 22), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 54), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 54), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 57), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 57), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 54), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 54), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 55), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 55), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 52), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 52), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 13), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 13), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 93), - [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 93), - [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 80), - [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 80), - [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 44), - [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 44), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 45), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 45), - [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 46), - [1221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 46), - [1223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 47), - [1225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 47), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 99), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 99), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 109), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 109), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 105), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 105), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 98), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 98), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(220), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(114), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(271), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 7), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 7), - [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [1331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [1333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), - [1347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 18), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 41), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 17), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 17), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 51), - [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 51), - [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 16), - [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 16), - [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 15), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 43), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 11), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 11), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 11), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 11), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 50), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 50), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 49), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 49), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 48), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 48), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 78), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 78), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 76), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 76), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 43), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 77), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 77), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 76), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 76), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 83), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 83), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 6), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 6), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 31), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 31), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 33), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 33), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 66), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 66), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 90), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 90), - [1531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 92), - [1533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 94), - [1539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 94), - [1541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), - [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), - [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 38), - [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 38), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 75), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 75), - [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 39), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 39), - [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 40), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 40), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 68), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 68), - [1577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 42), - [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 42), - [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 41), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 41), - [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 62), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 62), SHIFT(178), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 41), REDUCE(sym_assignment_expression, 3, .production_id = 41), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 41), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 58), REDUCE(sym_assignment_expression, 3, .production_id = 41), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 58), - [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 58), REDUCE(sym_assignment_expression, 3, .production_id = 15), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 18), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 59), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(469), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(301), + [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1049), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1516), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1120), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(426), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1119), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1405), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1407), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1306), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(96), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(395), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(234), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1410), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(45), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1411), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1389), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1385), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1415), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(113), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(142), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(60), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(83), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1381), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1213), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1226), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1227), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1212), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(321), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1228), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(152), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(248), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1736), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(248), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(244), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1129), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(747), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1735), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(747), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(749), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1380), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(476), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(367), + [293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 100), + [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 100), + [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 38), + [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3, .production_id = 38), + [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 59), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 59), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 80), + [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 80), + [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 80), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 80), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 76), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 76), + [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 76), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 76), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 98), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 98), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 98), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 98), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 88), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 88), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 88), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 88), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 71), + [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 71), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 71), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 71), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 37), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 37), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 37), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 37), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 69), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 69), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 88), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 88), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, .production_id = 88), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, .production_id = 88), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 92), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 92), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(33), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1027), + [871] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(102), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(261), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(102), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 6), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 6), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(206), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 28), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 28), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 19), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(221), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 19), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, .production_id = 62), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, .production_id = 62), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 6), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 6), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 24), + [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 24), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(157), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 105), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 105), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 63), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 63), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 30), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 30), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 61), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 61), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 54), + [1014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 54), + [1016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 60), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 60), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 14), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 23), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 23), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 54), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 54), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 26), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 26), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 55), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 55), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 13), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 13), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 52), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 52), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 29), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 29), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 30), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 30), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 20), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 20), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 20), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 20), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 21), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 21), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 6), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 6), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 91), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 91), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 37), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 37), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 112), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 112), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 111), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 111), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 110), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 110), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 109), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 109), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 79), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 79), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 54), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 54), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 98), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 98), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 103), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 103), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 102), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 102), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 62), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 62), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 92), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 92), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 88), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 88), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 88), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 88), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 96), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 96), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 71), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 71), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 76), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 76), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 25), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 25), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 104), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 104), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 80), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 80), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 23), + [1230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 23), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 47), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 47), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 45), + [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 45), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 46), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 46), + [1254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 90), + [1256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 90), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 78), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 78), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 48), + [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 48), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(94), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 108), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 108), + [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 107), + [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 7, .production_id = 107), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 101), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 101), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 95), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 95), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 94), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 94), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(194), + [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(223), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(159), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 9), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 9), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 8), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 8), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 53), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 53), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 41), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 41), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 40), + [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 40), + [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, .production_id = 39), + [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, .production_id = 39), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 44), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 44), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 38), + [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 38), + [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, .production_id = 32), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, .production_id = 32), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 31), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 31), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 72), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 72), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 42), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 73), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 73), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 18), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 16), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 16), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 49), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 49), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 15), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 7), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 7), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 43), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 43), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 11), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 11), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), + [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 50), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 50), + [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 44), + [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 74), + [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 74), + [1521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 51), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 51), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 89), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 6), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 6), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 7), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 7), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 17), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 17), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 87), + [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 87), + [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 64), + [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 64), + [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [1576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 75), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 75), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 81), + [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 81), + [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), + [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 73), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 73), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 32), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 32), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 77), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 77), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 42), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 59), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 59), SHIFT(267), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 42), REDUCE(sym_assignment_expression, 3, .production_id = 42), + [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 42), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), REDUCE(sym_assignment_expression, 3, .production_id = 42), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 56), REDUCE(sym_assignment_expression, 3, .production_id = 15), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 18), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 62), SHIFT(242), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(1205), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(1008), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(161), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(1373), - [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(910), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(1214), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(1217), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(1091), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(1285), - [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(918), - [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(926), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 97), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 97), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 103), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 103), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 108), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 108), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 79), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 79), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 91), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 91), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 60), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 60), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 85), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 85), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 102), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 102), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 44), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 44), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), - [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(1285), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 35), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 35), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 34), - [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 34), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1076), - [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 67), SHIFT_REPEAT(94), - [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 67), - [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 67), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1076), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(96), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1152), - [2436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1055), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 18), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1588), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(116), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 88), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, .production_id = 36), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 71), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(1117), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(154), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 69), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(220), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [2640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 21), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 32), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 32), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(271), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [2699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(1166), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1170), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(87), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(1082), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(98), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 66), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 59), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 56), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(886), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(1545), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1479), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 56), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(85), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(885), - [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 31), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(1344), - [3024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), - [3026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 56), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 84), - [3050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 56), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 20), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 61), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 87), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 89), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 70), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 101), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 61), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 61), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3204] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 61), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import_export, 3), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 57), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [1868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), REDUCE(sym_object_pattern, 3, .production_id = 18), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 59), SHIFT(237), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1277), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1028), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(882), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(293), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1377), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1282), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1283), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(928), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1148), + [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1380), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(910), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(1009), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 70), SHIFT_REPEAT(954), + [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(1468), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 99), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 99), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 93), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 93), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 76), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 76), + [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 98), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 98), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 58), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 58), + [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 106), + [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 106), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 88), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 88), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 83), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 83), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 6), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 2, .production_id = 6), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 35), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 35), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, .production_id = 38), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_static_block, 3, .production_id = 38), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 45), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 45), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 34), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 34), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), + [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 12), SHIFT_REPEAT(1380), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), SHIFT_REPEAT(971), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 10), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(108), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1069), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(1219), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_element_repeat1, 2), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1105), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(109), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), + [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 65), SHIFT_REPEAT(1105), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 18), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), + [2634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(233), + [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), + [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(1417), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), + [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 85), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1700), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(156), + [2696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 68), + [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 66), + [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 45), + [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 45), + [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), + [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 1, .production_id = 36), + [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(1149), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(169), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), + [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(223), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 33), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 33), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 32), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 32), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(194), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 2, .dynamic_precedence = -1), + [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, .dynamic_precedence = -1), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 64), + [2818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 64), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 22), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), + [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), + [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2), + [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 2), + [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3), + [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jsx_string, 3), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2), SHIFT_REPEAT(1220), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2), + [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2), SHIFT_REPEAT(1220), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(1113), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 18), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(209), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(1262), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [3019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1265), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(98), + [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2), SHIFT_REPEAT(1271), + [3036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2), + [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2), SHIFT_REPEAT(1271), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(895), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(893), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 5), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(97), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 5), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 20), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(1357), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 57), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(1127), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(105), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1131), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 86), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 3, .production_id = 84), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 82), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 82), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 2, .production_id = 67), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_definition, 4, .production_id = 97), + [3328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3452] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), }; #ifdef __cplusplus diff --git a/tree-sitter-mozjs/src/tree_sitter_javascript_scanner.c b/tree-sitter-mozjs/src/tree_sitter_javascript_scanner.c index 1e8acf561..04f42d4c8 100644 --- a/tree-sitter-mozjs/src/tree_sitter_javascript_scanner.c +++ b/tree-sitter-mozjs/src/tree_sitter_javascript_scanner.c @@ -1,187 +1,364 @@ -#include +#include "tree_sitter/parser.h" + +#include #include enum TokenType { - AUTOMATIC_SEMICOLON, - TEMPLATE_CHARS, - TERNARY_QMARK, + AUTOMATIC_SEMICOLON, + TEMPLATE_CHARS, + TERNARY_QMARK, + HTML_COMMENT, + LOGICAL_OR, + ESCAPE_SEQUENCE, + REGEX_PATTERN, + JSX_TEXT, }; void *tree_sitter_javascript_external_scanner_mozjs_create() { return NULL; } + void tree_sitter_javascript_external_scanner_mozjs_destroy(void *p) {} -void tree_sitter_javascript_external_scanner_mozjs_reset(void *p) {} -unsigned tree_sitter_javascript_external_scanner_mozjs_serialize(void *p, char *buffer) { return 0; } + +unsigned tree_sitter_javascript_external_scanner_mozjs_serialize(void *payload, char *buffer) { return 0; } + void tree_sitter_javascript_external_scanner_mozjs_deserialize(void *p, const char *b, unsigned n) {} -static void advance(TSLexer *lexer) { lexer->advance(lexer, false); } -static void skip(TSLexer *lexer) { lexer->advance(lexer, true); } +static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + +static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } static bool scan_template_chars(TSLexer *lexer) { - lexer->result_symbol = TEMPLATE_CHARS; - for (bool has_content = false;; has_content = true) { - lexer->mark_end(lexer); - switch (lexer->lookahead) { - case '`': - return has_content; - case '\0': - return false; - case '$': - advance(lexer); - if (lexer->lookahead == '{') return has_content; - break; - case '\\': - return has_content; - default: - advance(lexer); + lexer->result_symbol = TEMPLATE_CHARS; + for (bool has_content = false;; has_content = true) { + lexer->mark_end(lexer); + switch (lexer->lookahead) { + case '`': + return has_content; + case '\0': + return false; + case '$': + advance(lexer); + if (lexer->lookahead == '{') { + return has_content; + } + break; + case '\\': + return has_content; + default: + advance(lexer); + } } - } } -static bool scan_whitespace_and_comments(TSLexer *lexer) { - for (;;) { - while (iswspace(lexer->lookahead)) { - skip(lexer); - } +typedef enum { + REJECT, // Semicolon is illegal, ie a syntax error occurred + NO_NEWLINE, // Unclear if semicolon will be legal, continue + ACCEPT, // Semicolon is legal, assuming a comment was encountered +} WhitespaceResult; - if (lexer->lookahead == '/') { - skip(lexer); +/** + * @param consume If false, only consume enough to check if comment indicates semicolon-legality + */ +static WhitespaceResult scan_whitespace_and_comments(TSLexer *lexer, bool *scanned_comment, bool consume) { + bool saw_block_newline = false; - if (lexer->lookahead == '/') { - skip(lexer); - while (lexer->lookahead != 0 && lexer->lookahead != '\n') { - skip(lexer); + for (;;) { + while (iswspace(lexer->lookahead)) { + skip(lexer); } - } else if (lexer->lookahead == '*') { - skip(lexer); - while (lexer->lookahead != 0) { - if (lexer->lookahead == '*') { + + if (lexer->lookahead == '/') { skip(lexer); + if (lexer->lookahead == '/') { - skip(lexer); - break; + skip(lexer); + while (lexer->lookahead != 0 && lexer->lookahead != '\n' && lexer->lookahead != 0x2028 && + lexer->lookahead != 0x2029) { + skip(lexer); + } + *scanned_comment = true; + } else if (lexer->lookahead == '*') { + skip(lexer); + while (lexer->lookahead != 0) { + if (lexer->lookahead == '*') { + skip(lexer); + if (lexer->lookahead == '/') { + skip(lexer); + *scanned_comment = true; + + if (lexer->lookahead != '/' && !consume) { + return saw_block_newline ? ACCEPT : NO_NEWLINE; + } + + break; + } + } else if (lexer->lookahead == '\n' || lexer->lookahead == 0x2028 || lexer->lookahead == 0x2029) { + saw_block_newline = true; + skip(lexer); + } else { + skip(lexer); + } + } + } else { + return REJECT; } - } else { - skip(lexer); - } + } else { + return ACCEPT; } - } else { - return false; - } - } else { - return true; } - } } -static bool scan_automatic_semicolon(TSLexer *lexer) { - lexer->result_symbol = AUTOMATIC_SEMICOLON; - lexer->mark_end(lexer); +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 == '/') { + WhitespaceResult result = scan_whitespace_and_comments(lexer, scanned_comment, false); + if (result == REJECT) { + return false; + } + + if (result == ACCEPT && comment_condition && lexer->lookahead != ',' && lexer->lookahead != '=') { + 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; + } - for (;;) { - if (lexer->lookahead == 0) return true; - if (lexer->lookahead == '}') return true; - if (lexer->is_at_included_range_start(lexer)) return true; - if (lexer->lookahead == '\n') break; - if (!iswspace(lexer->lookahead)) return false; - skip(lexer); - } - - skip(lexer); - - if (!scan_whitespace_and_comments(lexer)) return false; - - switch (lexer->lookahead) { - case ',': - case '.': - case ':': - case ';': - case '*': - case '%': - case '>': - case '<': - case '=': - case '[': - case '(': - case '?': - case '^': - case '|': - case '&': - case '/': - return false; - - // Insert a semicolon before `--` and `++`, but not before binary `+` or `-`. - case '+': - skip(lexer); - return lexer->lookahead == '+'; - case '-': - skip(lexer); - return lexer->lookahead == '-'; - - // Don't insert a semicolon before `!=`, but do insert one before a unary `!`. - case '!': - skip(lexer); - return lexer->lookahead != '='; - - // Don't insert a semicolon before `in` or `instanceof`, but do insert one - // before an identifier. - case 'i': - skip(lexer); - - if (lexer->lookahead != 'n') return true; - skip(lexer); - - if (!iswalpha(lexer->lookahead)) return false; - - for (unsigned i = 0; i < 8; i++) { - if (lexer->lookahead != "stanceof"[i]) return true; skip(lexer); - } + } - if (!iswalpha(lexer->lookahead)) return false; - break; - } + skip(lexer); - return true; + if (scan_whitespace_and_comments(lexer, scanned_comment, true) == REJECT) { + return false; + } + + switch (lexer->lookahead) { + case '`': + case ',': + case ':': + case ';': + case '*': + case '%': + case '>': + case '<': + case '=': + case '[': + case '(': + case '?': + case '^': + case '|': + case '&': + case '/': + return false; + + // Insert a semicolon before decimals literals but not otherwise. + case '.': + skip(lexer); + return iswdigit(lexer->lookahead); + + // Insert a semicolon before `--` and `++`, but not before binary `+` or `-`. + case '+': + skip(lexer); + return lexer->lookahead == '+'; + case '-': + skip(lexer); + return lexer->lookahead == '-'; + + // Don't insert a semicolon before `!=`, but do insert one before a unary `!`. + case '!': + skip(lexer); + return lexer->lookahead != '='; + + // Don't insert a semicolon before `in` or `instanceof`, but do insert one + // before an identifier. + case 'i': + skip(lexer); + + if (lexer->lookahead != 'n') { + return true; + } + skip(lexer); + + if (!iswalpha(lexer->lookahead)) { + return false; + } + + for (unsigned i = 0; i < 8; i++) { + if (lexer->lookahead != "stanceof"[i]) { + return true; + } + skip(lexer); + } + + if (!iswalpha(lexer->lookahead)) { + return false; + } + break; + + default: + break; + } + + return true; } static bool scan_ternary_qmark(TSLexer *lexer) { - for(;;) { - if (!iswspace(lexer->lookahead)) break; - skip(lexer); - } + for (;;) { + if (!iswspace(lexer->lookahead)) { + break; + } + skip(lexer); + } - if (lexer->lookahead == '?') { - advance(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; + lexer->mark_end(lexer); + lexer->result_symbol = TERNARY_QMARK; + + if (lexer->lookahead == '.') { + advance(lexer); + if (iswdigit(lexer->lookahead)) { + return true; + } + return false; + } + return true; + } + return false; +} + +static bool scan_html_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; + } - if (lexer->lookahead == '.') { - advance(lexer); - if (iswdigit(lexer->lookahead)) return true; - 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; - } - return false; } -bool tree_sitter_javascript_external_scanner_mozjs_scan(void *payload, TSLexer *lexer, - const bool *valid_symbols) { - if (valid_symbols[TEMPLATE_CHARS]) { - 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 == '?') - return scan_ternary_qmark(lexer); - return ret; - } - if (valid_symbols[TERNARY_QMARK]) { - return scan_ternary_qmark(lexer); - } - - return false; +static bool scan_jsx_text(TSLexer *lexer) { + // saw_text will be true if we see any non-whitespace content, or any whitespace content that is not a newline and + // does not immediately follow a newline. + bool saw_text = false; + // at_newline will be true if we are currently at a newline, or if we are at whitespace that is not a newline but + // immediately follows a newline. + bool at_newline = false; + + while (lexer->lookahead != 0 && lexer->lookahead != '<' && lexer->lookahead != '>' && lexer->lookahead != '{' && + lexer->lookahead != '}' && lexer->lookahead != '&') { + bool is_wspace = iswspace(lexer->lookahead); + if (lexer->lookahead == '\n') { + at_newline = true; + } else { + // If at_newline is already true, and we see some whitespace, then it must stay true. + // Otherwise, it should be false. + // + // See the table below to determine the logic for computing `saw_text`. + // + // |------------------------------------| + // | at_newline | is_wspace | saw_text | + // |------------|-----------|-----------| + // | false (0) | false (0) | true (1) | + // | false (0) | true (1) | true (1) | + // | true (1) | false (0) | true (1) | + // | true (1) | true (1) | false (0) | + // |------------------------------------| + + at_newline &= is_wspace; + if (!at_newline) { + saw_text = true; + } + } + + advance(lexer); + } + + lexer->result_symbol = JSX_TEXT; + return saw_text; +} + +bool tree_sitter_javascript_external_scanner_mozjs_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[TEMPLATE_CHARS]) { + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + return false; + } + return scan_template_chars(lexer); + } + + if (valid_symbols[JSX_TEXT] && scan_jsx_text(lexer)) { + return true; + } + + if (valid_symbols[AUTOMATIC_SEMICOLON]) { + bool scanned_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); + } + + if (valid_symbols[HTML_COMMENT] && !valid_symbols[LOGICAL_OR] && !valid_symbols[ESCAPE_SEQUENCE] && + !valid_symbols[REGEX_PATTERN]) { + return scan_html_comment(lexer); + } + + return false; } From 7d62e6eb29b3864cf5c12493ffba21b3cdcfdc30 Mon Sep 17 00:00:00 2001 From: Alex <100879557+alexle0nte@users.noreply.github.com> Date: Wed, 25 Sep 2024 09:22:28 +0200 Subject: [PATCH 2/5] Fix TypeScript tests --- src/checker.rs | 4 ++-- src/getter.rs | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/checker.rs b/src/checker.rs index 9596544ca..d3f9a5988 100644 --- a/src/checker.rs +++ b/src/checker.rs @@ -491,7 +491,7 @@ impl Checker for TypescriptCode { matches!( node.kind_id().into(), Typescript::Program - | Typescript::Function + | Typescript::FunctionExpression | Typescript::Class | Typescript::GeneratorFunction | Typescript::FunctionDeclaration @@ -550,7 +550,7 @@ impl Checker for TsxCode { matches!( node.kind_id().into(), Tsx::Program - | Tsx::Function + | Tsx::FunctionExpression | Tsx::Class | Tsx::GeneratorFunction | Tsx::FunctionDeclaration diff --git a/src/getter.rs b/src/getter.rs index 96d32cc40..4735bb7f2 100644 --- a/src/getter.rs +++ b/src/getter.rs @@ -232,7 +232,7 @@ impl Getter for TypescriptCode { use Typescript::*; match node.kind_id().into() { - Function + FunctionExpression | MethodDefinition | GeneratorFunction | FunctionDeclaration @@ -285,7 +285,7 @@ impl Getter for TypescriptCode { | GT | PLUSEQ | BANG | BANGEQEQ | EQEQEQ | DASHEQ | STAREQ | SLASHEQ | PERCENTEQ | STARSTAREQ | GTGTEQ | GTGTGTEQ | LTLTEQ | AMPEQ | CARET | CARETEQ | PIPEEQ | Yield | LBRACK | LBRACE | Await | QMARK | QMARKQMARK | New | Let | Var | Const - | Function | SEMI => HalsteadType::Operator, + | Function | FunctionExpression | SEMI => HalsteadType::Operator, Identifier | NestedIdentifier | MemberExpression | PropertyIdentifier | String | Number | True | False | Null | Void | This | Super | Undefined | Set | Get | Typeof | Instanceof => HalsteadType::Operand, @@ -301,7 +301,7 @@ impl Getter for TsxCode { use Tsx::*; match node.kind_id().into() { - Function + FunctionExpression | MethodDefinition | GeneratorFunction | FunctionDeclaration @@ -354,10 +354,10 @@ impl Getter for TsxCode { | GT | PLUSEQ | BANG | BANGEQEQ | EQEQEQ | DASHEQ | STAREQ | SLASHEQ | PERCENTEQ | STARSTAREQ | GTGTEQ | GTGTGTEQ | LTLTEQ | AMPEQ | CARET | CARETEQ | PIPEEQ | Yield | LBRACK | LBRACE | Await | QMARK | QMARKQMARK | New | Let | Var | Const - | Function | SEMI => HalsteadType::Operator, + | Function | FunctionExpression | SEMI => HalsteadType::Operator, Identifier | NestedIdentifier | MemberExpression | PropertyIdentifier | String - | Number | True | False | Null | Void | This | Super | Undefined | Set | Get - | Typeof | Instanceof => HalsteadType::Operand, + | String2 | Number | True | False | Null | Void | This | Super | Undefined | Set + | Get | Typeof | Instanceof => HalsteadType::Operand, _ => HalsteadType::Unknown, } } From 0c12b30c41244f818426935baa994082e422e8cc Mon Sep 17 00:00:00 2001 From: Alex <100879557+alexle0nte@users.noreply.github.com> Date: Wed, 25 Sep 2024 09:27:13 +0200 Subject: [PATCH 3/5] Fix JavaScript tests --- src/checker.rs | 2 +- src/getter.rs | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/checker.rs b/src/checker.rs index d3f9a5988..4d60c3024 100644 --- a/src/checker.rs +++ b/src/checker.rs @@ -433,7 +433,7 @@ impl Checker for JavascriptCode { matches!( node.kind_id().into(), Javascript::Program - | Javascript::Function + | Javascript::FunctionExpression | Javascript::Class | Javascript::GeneratorFunction | Javascript::FunctionDeclaration diff --git a/src/getter.rs b/src/getter.rs index 4735bb7f2..8428533df 100644 --- a/src/getter.rs +++ b/src/getter.rs @@ -164,7 +164,7 @@ impl Getter for JavascriptCode { use Javascript::*; match node.kind_id().into() { - Function + FunctionExpression | MethodDefinition | GeneratorFunction | FunctionDeclaration @@ -216,10 +216,10 @@ impl Getter for JavascriptCode { | GT | PLUSEQ | BANG | BANGEQEQ | EQEQEQ | DASHEQ | STAREQ | SLASHEQ | PERCENTEQ | STARSTAREQ | GTGTEQ | GTGTGTEQ | LTLTEQ | AMPEQ | CARET | CARETEQ | PIPEEQ | Yield | LBRACK | LBRACE | Await | QMARK | QMARKQMARK | New | Let | Var | Const - | Function | SEMI => HalsteadType::Operator, - Identifier | Identifier2 | MemberExpression | PropertyIdentifier | String | Number - | True | False | Null | Void | This | Super | Undefined | Set | Get | Typeof - | Instanceof => HalsteadType::Operand, + | Function | FunctionExpression | SEMI => HalsteadType::Operator, + Identifier | Identifier2 | MemberExpression | MemberExpression2 + | PropertyIdentifier | String | String2 | Number | True | False | Null | Void + | This | Super | Undefined | Set | Get | Typeof | Instanceof => HalsteadType::Operand, _ => HalsteadType::Unknown, } } From 450bfeddb9cfb36733900a02db041e5001f0fc2d Mon Sep 17 00:00:00 2001 From: Alex <100879557+alexle0nte@users.noreply.github.com> Date: Wed, 25 Sep 2024 09:30:58 +0200 Subject: [PATCH 4/5] Fix Python tests --- src/metrics/loc.rs | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/metrics/loc.rs b/src/metrics/loc.rs index 6c78dcc4d..51f6cb922 100644 --- a/src/metrics/loc.rs +++ b/src/metrics/loc.rs @@ -569,7 +569,7 @@ impl Loc for PythonCode { let (start, end) = init(node, stats, is_func_space, is_unit); match node.kind_id().into() { - Block | Module => {} + StringStart | StringEnd | StringContent | Block | Module => {} Comment => { add_cloc_lines(stats, start, end); } @@ -1063,10 +1063,10 @@ mod tests { "lloc_average": 3.0, "cloc_average": 2.0, "blank_average": 0.5, - "sloc_min": 9.0, - "sloc_max": 9.0, - "cloc_min": 2.0, - "cloc_max": 2.0, + "sloc_min": 10.0, + "sloc_max": 10.0, + "cloc_min": 4.0, + "cloc_max": 4.0, "ploc_min": 7.0, "ploc_max": 7.0, "lloc_min": 6.0, @@ -1110,10 +1110,10 @@ mod tests { "lloc_average": 3.0, "cloc_average": 2.0, "blank_average": 0.0, - "sloc_min": 8.0, - "sloc_max": 8.0, - "cloc_min": 2.0, - "cloc_max": 2.0, + "sloc_min": 9.0, + "sloc_max": 9.0, + "cloc_min": 4.0, + "cloc_max": 4.0, "ploc_min": 7.0, "ploc_max": 7.0, "lloc_min": 6.0, @@ -1158,10 +1158,10 @@ mod tests { "lloc_average": 3.0, "cloc_average": 2.5, "blank_average": 0.5, - "sloc_min": 9.0, - "sloc_max": 9.0, - "cloc_min": 3.0, - "cloc_max": 3.0, + "sloc_min": 10.0, + "sloc_max": 10.0, + "cloc_min": 5.0, + "cloc_max": 5.0, "ploc_min": 7.0, "ploc_max": 7.0, "lloc_min": 6.0, From 2ecb60fcd461cc6fa907e2e5ed4e86a1d7220175 Mon Sep 17 00:00:00 2001 From: Alex <100879557+alexle0nte@users.noreply.github.com> Date: Wed, 25 Sep 2024 09:35:45 +0200 Subject: [PATCH 5/5] Fix Rust tests --- src/metrics/halstead.rs | 27 +++++++++++++-------------- src/metrics/loc.rs | 10 +++++++++- src/ops.rs | 4 +--- 3 files changed, 23 insertions(+), 18 deletions(-) diff --git a/src/metrics/halstead.rs b/src/metrics/halstead.rs index fc44fee86..30bc7b55a 100644 --- a/src/metrics/halstead.rs +++ b/src/metrics/halstead.rs @@ -429,27 +429,26 @@ mod tests { }", "foo.rs", |metric| { - // FIXME tree-sitter-rust does not parse the comma inside the println! macro - // unique operators: fn, (), {}, let, =, +, /, ;, ! + // unique operators: fn, (), {}, let, =, +, /, ;, !, , // unique operands: main, a, b, c, avg, 5, 3, println, "{}" insta::assert_json_snapshot!( metric.halstead, @r###" { - "n1": 9.0, - "N1": 22.0, + "n1": 10.0, + "N1": 23.0, "n2": 9.0, "N2": 15.0, - "length": 37.0, - "estimated_program_length": 57.05865002596162, - "purity_ratio": 1.542125676377341, - "vocabulary": 18.0, - "volume": 154.28722505336555, - "difficulty": 7.5, - "level": 0.13333333333333333, - "effort": 1157.1541879002416, - "time": 64.28634377223564, - "bugs": 0.03674003504721376 + "length": 38.0, + "estimated_program_length": 61.74860596185444, + "purity_ratio": 1.624963314785643, + "vocabulary": 19.0, + "volume": 161.42124551085624, + "difficulty": 8.333333333333334, + "level": 0.12, + "effort": 1345.177045923802, + "time": 74.7320581068779, + "bugs": 0.040619232256751396 }"### ); }, diff --git a/src/metrics/loc.rs b/src/metrics/loc.rs index 51f6cb922..f180ca820 100644 --- a/src/metrics/loc.rs +++ b/src/metrics/loc.rs @@ -725,7 +725,15 @@ impl Loc for RustCode { let (start, end) = init(node, stats, is_func_space, is_unit); match node.kind_id().into() { - StringLiteral | RawStringLiteral | Block | SourceFile => {} + StringLiteral + | RawStringLiteral + | Block + | SourceFile + | SLASHSLASH + | SLASHSTAR + | STARSLASH + | OuterDocCommentMarker2 + | DocComment => {} LineComment | BlockComment => { add_cloc_lines(stats, start, end); } diff --git a/src/ops.rs b/src/ops.rs index fcf250956..478573a86 100644 --- a/src/ops.rs +++ b/src/ops.rs @@ -356,7 +356,6 @@ mod tests { LANG::Rust, "let: usize a = 5; let b: f32 = 7.0; let c: i32 = 3;", "foo.rs", - // FIXME tree-sitter-rust does not parse the comma inside the println! macro &mut ["let", "usize", "=", ";", "f32", "i32"], &mut ["a", "b", "c", "5", "7.0", "3"], ); @@ -372,8 +371,7 @@ mod tests { println!(\"{}\", avg); }", "foo.rs", - // FIXME tree-sitter-rust does not parse the comma inside the println! macro - &mut ["fn", "()", "{}", "let", "=", "+", "/", ";", "!"], + &mut ["fn", "()", "{}", "let", "=", "+", "/", ";", "!", ","], &mut ["main", "a", "b", "c", "avg", "5", "3", "println", "\"{}\""], ); }