From 3676123bc631265f562050130bdb11414832f484 Mon Sep 17 00:00:00 2001 From: Luni-4 Date: Wed, 10 Mar 2021 11:23:04 +0100 Subject: [PATCH 1/2] Bump tree-sitter-mozjs to v0.17 --- Cargo.lock | 2 +- Cargo.toml | 2 +- enums/Cargo.lock | 2 +- enums/Cargo.toml | 2 +- src/languages/language_mozjs.rs | 890 +- tree-sitter-mozjs/Cargo.toml | 2 +- tree-sitter-mozjs/src/grammar.json | 504 +- tree-sitter-mozjs/src/node-types.json | 75 +- tree-sitter-mozjs/src/parser.c | 56782 ++++++++++--------- tree-sitter-mozjs/src/tree_sitter/parser.h | 3 + 10 files changed, 30344 insertions(+), 27920 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e5a351434..f4eac3e5b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2241,7 +2241,7 @@ dependencies = [ [[package]] name = "tree-sitter-mozjs" -version = "0.16.0" +version = "0.17.0" dependencies = [ "cc", "tree-sitter 0.17.1", diff --git a/Cargo.toml b/Cargo.toml index b60ec5960..30a6d9e77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ tree-sitter-java = "^0.16" tree-sitter-preproc = { path = "./tree-sitter-preproc", version = "^0.17" } tree-sitter-ccomment = { path = "./tree-sitter-ccomment", version = "^0.17" } tree-sitter-mozcpp = { path = "./tree-sitter-mozcpp", version = "^0.16" } -tree-sitter-mozjs = { path = "./tree-sitter-mozjs", version = "^0.16" } +tree-sitter-mozjs = { path = "./tree-sitter-mozjs", version = "^0.17" } [dev-dependencies] pretty_assertions = "^0.7" diff --git a/enums/Cargo.lock b/enums/Cargo.lock index 539dae02f..acee71b2d 100644 --- a/enums/Cargo.lock +++ b/enums/Cargo.lock @@ -535,7 +535,7 @@ dependencies = [ [[package]] name = "tree-sitter-mozjs" -version = "0.16.0" +version = "0.17.0" dependencies = [ "cc", "tree-sitter 0.17.1", diff --git a/enums/Cargo.toml b/enums/Cargo.toml index 14401a213..3312388e1 100644 --- a/enums/Cargo.toml +++ b/enums/Cargo.toml @@ -21,4 +21,4 @@ tree-sitter-java = "^0.16" tree-sitter-preproc = { path = "../tree-sitter-preproc", version = "^0.17" } tree-sitter-ccomment = { path = "../tree-sitter-ccomment", version = "^0.17" } tree-sitter-mozcpp = { path = "../tree-sitter-mozcpp" } -tree-sitter-mozjs = { path = "../tree-sitter-mozjs" } +tree-sitter-mozjs = { path = "../tree-sitter-mozjs", version = "^0.17" } diff --git a/src/languages/language_mozjs.rs b/src/languages/language_mozjs.rs index edb55b9a6..c56e5cf1b 100644 --- a/src/languages/language_mozjs.rs +++ b/src/languages/language_mozjs.rs @@ -17,8 +17,8 @@ pub enum Mozjs { Var = 12, Let = 13, Const = 14, - If = 15, - Else = 16, + Else = 15, + If = 16, Switch = 17, For = 18, LPAREN = 19, @@ -55,188 +55,193 @@ pub enum Mozjs { Async = 50, Function2 = 51, EQGT = 52, - New = 53, - PLUSEQ = 54, - DASHEQ = 55, - STAREQ = 56, - SLASHEQ = 57, - PERCENTEQ = 58, - CARETEQ = 59, - AMPEQ = 60, - PIPEEQ = 61, - GTGTEQ = 62, - GTGTGTEQ = 63, - LTLTEQ = 64, - STARSTAREQ = 65, - DOTDOTDOT = 66, - QMARK = 67, - AMPAMP = 68, - PIPEPIPE = 69, - GTGT = 70, - GTGTGT = 71, - LTLT = 72, - AMP = 73, - CARET = 74, - PIPE = 75, - PLUS = 76, - DASH = 77, - PERCENT = 78, - STARSTAR = 79, - LTEQ = 80, - EQEQ = 81, - EQEQEQ = 82, - BANGEQ = 83, - BANGEQEQ = 84, - GTEQ = 85, - QMARKQMARK = 86, - Instanceof = 87, - BANG = 88, - TILDE = 89, - Typeof = 90, - Void = 91, - Delete = 92, - PLUSPLUS = 93, - DASHDASH = 94, - DQUOTE = 95, - StringToken1 = 96, - SQUOTE = 97, - StringToken2 = 98, - EscapeSequence = 99, - Comment = 100, - BQUOTE = 101, - DOLLARLBRACE = 102, - SLASH2 = 103, - RegexPattern = 104, - RegexFlags = 105, - Number = 106, - Target = 107, - This = 108, - Super = 109, - True = 110, - False = 111, - Null = 112, - Undefined = 113, - AT = 114, - Static = 115, - Get = 116, - Set = 117, - Preproc = 118, - AutomaticSemicolon = 119, - TemplateChars = 120, - Program = 121, - ExportStatement = 122, - ExportClause = 123, - ImportExportSpecifier = 124, - Declaration = 125, - Import = 126, - ImportStatement = 127, - ImportClause = 128, - FromClause = 129, - NamespaceImport = 130, - NamedImports = 131, - ExpressionStatement = 132, - VariableDeclaration = 133, - LexicalDeclaration = 134, - VariableDeclarator = 135, - StatementBlock = 136, - IfStatement = 137, - SwitchStatement = 138, - ForStatement = 139, - ForInStatement = 140, - ForHeader = 141, - WhileStatement = 142, - DoStatement = 143, - TryStatement = 144, - WithStatement = 145, - BreakStatement = 146, - ContinueStatement = 147, - DebuggerStatement = 148, - ReturnStatement = 149, - ThrowStatement = 150, - EmptyStatement = 151, - LabeledStatement = 152, - SwitchBody = 153, - SwitchCase = 154, - SwitchDefault = 155, - CatchClause = 156, - FinallyClause = 157, - ParenthesizedExpression = 158, - Expression = 159, - YieldExpression = 160, - Object = 161, - AssignmentPattern = 162, - Array = 163, - JsxElement = 164, - JsxFragment = 165, - JsxExpression = 166, - JsxOpeningElement = 167, - NestedIdentifier = 168, - JsxNamespaceName = 169, - JsxClosingElement = 170, - JsxSelfClosingElement = 171, - JsxAttribute = 172, - Class = 173, - ClassDeclaration = 174, - ClassHeritage = 175, - Function = 176, - FunctionDeclaration = 177, - GeneratorFunction = 178, - GeneratorFunctionDeclaration = 179, - ArrowFunction = 180, - CallExpression = 181, - NewExpression = 182, - AwaitExpression = 183, - MemberExpression = 184, - SubscriptExpression = 185, - AssignmentExpression = 186, - AugmentedAssignmentExpression = 187, - Initializer = 188, - SpreadElement = 189, - TernaryExpression = 190, - BinaryExpression = 191, - UnaryExpression = 192, - UpdateExpression = 193, - SequenceExpression = 194, - String = 195, - TemplateString = 196, - TemplateSubstitution = 197, - Regex = 198, - MetaProperty = 199, - Arguments = 200, - Decorator = 201, - MemberExpression2 = 202, - CallExpression2 = 203, - ClassBody = 204, - PublicFieldDefinition = 205, - FormalParameters = 206, - RestParameter = 207, - MethodDefinition = 208, - Pair = 209, - PropertyName = 210, - ComputedPropertyName = 211, - ProgramRepeat1 = 212, - ExportStatementRepeat1 = 213, - ExportClauseRepeat1 = 214, - NamedImportsRepeat1 = 215, - VariableDeclarationRepeat1 = 216, - SwitchBodyRepeat1 = 217, - ObjectRepeat1 = 218, - ArrayRepeat1 = 219, - JsxElementRepeat1 = 220, - JsxOpeningElementRepeat1 = 221, - StringRepeat1 = 222, - StringRepeat2 = 223, - TemplateStringRepeat1 = 224, - ClassBodyRepeat1 = 225, - FormalParametersRepeat1 = 226, - ArrayPattern = 227, - ExportSpecifier = 228, - ImportSpecifier = 229, - ObjectPattern = 230, - PropertyIdentifier = 231, - ShorthandPropertyIdentifier = 232, - StatementIdentifier = 233, - Error = 234, + QMARKDOT = 53, + New = 54, + PLUSEQ = 55, + DASHEQ = 56, + STAREQ = 57, + SLASHEQ = 58, + PERCENTEQ = 59, + CARETEQ = 60, + AMPEQ = 61, + PIPEEQ = 62, + GTGTEQ = 63, + GTGTGTEQ = 64, + LTLTEQ = 65, + STARSTAREQ = 66, + AMPAMPEQ = 67, + PIPEPIPEEQ = 68, + QMARKQMARKEQ = 69, + DOTDOTDOT = 70, + QMARK = 71, + AMPAMP = 72, + PIPEPIPE = 73, + GTGT = 74, + GTGTGT = 75, + LTLT = 76, + AMP = 77, + CARET = 78, + PIPE = 79, + PLUS = 80, + DASH = 81, + PERCENT = 82, + STARSTAR = 83, + LTEQ = 84, + EQEQ = 85, + EQEQEQ = 86, + BANGEQ = 87, + BANGEQEQ = 88, + GTEQ = 89, + QMARKQMARK = 90, + Instanceof = 91, + BANG = 92, + TILDE = 93, + Typeof = 94, + Void = 95, + Delete = 96, + PLUSPLUS = 97, + DASHDASH = 98, + DQUOTE = 99, + StringToken1 = 100, + SQUOTE = 101, + StringToken2 = 102, + EscapeSequence = 103, + Comment = 104, + BQUOTE = 105, + DOLLARLBRACE = 106, + SLASH2 = 107, + RegexPattern = 108, + RegexFlags = 109, + Number = 110, + Target = 111, + This = 112, + Super = 113, + True = 114, + False = 115, + Null = 116, + Undefined = 117, + AT = 118, + Static = 119, + Get = 120, + Set = 121, + Preproc = 122, + AutomaticSemicolon = 123, + TemplateChars = 124, + Program = 125, + ExportStatement = 126, + ExportClause = 127, + ExportSpecifier = 128, + Declaration = 129, + Import = 130, + ImportStatement = 131, + ImportClause = 132, + FromClause = 133, + NamespaceImport = 134, + NamedImports = 135, + ExpressionStatement = 136, + VariableDeclaration = 137, + LexicalDeclaration = 138, + VariableDeclarator = 139, + StatementBlock = 140, + ElseClause = 141, + IfStatement = 142, + SwitchStatement = 143, + ForStatement = 144, + ForInStatement = 145, + ForHeader = 146, + WhileStatement = 147, + DoStatement = 148, + TryStatement = 149, + WithStatement = 150, + BreakStatement = 151, + ContinueStatement = 152, + DebuggerStatement = 153, + ReturnStatement = 154, + ThrowStatement = 155, + EmptyStatement = 156, + LabeledStatement = 157, + SwitchBody = 158, + SwitchCase = 159, + SwitchDefault = 160, + CatchClause = 161, + FinallyClause = 162, + ParenthesizedExpression = 163, + Expression = 164, + YieldExpression = 165, + Object = 166, + AssignmentPattern = 167, + Array = 168, + JsxElement = 169, + JsxFragment = 170, + JsxExpression = 171, + JsxOpeningElement = 172, + NestedIdentifier = 173, + JsxNamespaceName = 174, + JsxClosingElement = 175, + JsxSelfClosingElement = 176, + JsxAttribute = 177, + Class = 178, + ClassDeclaration = 179, + ClassHeritage = 180, + Function = 181, + FunctionDeclaration = 182, + GeneratorFunction = 183, + GeneratorFunctionDeclaration = 184, + ArrowFunction = 185, + CallExpression = 186, + NewExpression = 187, + AwaitExpression = 188, + MemberExpression = 189, + SubscriptExpression = 190, + AssignmentExpression = 191, + AugmentedAssignmentLhs = 192, + AugmentedAssignmentExpression = 193, + Initializer = 194, + SpreadElement = 195, + TernaryExpression = 196, + BinaryExpression = 197, + UnaryExpression = 198, + UpdateExpression = 199, + SequenceExpression = 200, + String = 201, + TemplateString = 202, + TemplateSubstitution = 203, + Regex = 204, + MetaProperty = 205, + Arguments = 206, + Decorator = 207, + MemberExpression2 = 208, + CallExpression2 = 209, + ClassBody = 210, + PublicFieldDefinition = 211, + FormalParameters = 212, + RestParameter = 213, + MethodDefinition = 214, + Pair = 215, + PropertyName = 216, + ComputedPropertyName = 217, + ProgramRepeat1 = 218, + ExportStatementRepeat1 = 219, + ExportClauseRepeat1 = 220, + NamedImportsRepeat1 = 221, + VariableDeclarationRepeat1 = 222, + SwitchBodyRepeat1 = 223, + ObjectRepeat1 = 224, + ArrayRepeat1 = 225, + JsxElementRepeat1 = 226, + JsxOpeningElementRepeat1 = 227, + StringRepeat1 = 228, + StringRepeat2 = 229, + TemplateStringRepeat1 = 230, + ClassBodyRepeat1 = 231, + FormalParametersRepeat1 = 232, + ArrayPattern = 233, + ImportSpecifier = 234, + ObjectPattern = 235, + PropertyIdentifier = 236, + ShorthandPropertyIdentifier = 237, + StatementIdentifier = 238, + Error = 239, } impl Into<&'static str> for Mozjs { @@ -257,8 +262,8 @@ impl Into<&'static str> for Mozjs { Mozjs::Var => "var", Mozjs::Let => "let", Mozjs::Const => "const", - Mozjs::If => "if", Mozjs::Else => "else", + Mozjs::If => "if", Mozjs::Switch => "switch", Mozjs::For => "for", Mozjs::LPAREN => "(", @@ -295,6 +300,7 @@ impl Into<&'static str> for Mozjs { Mozjs::Async => "async", Mozjs::Function2 => "function", Mozjs::EQGT => "=>", + Mozjs::QMARKDOT => "?.", Mozjs::New => "new", Mozjs::PLUSEQ => "+=", Mozjs::DASHEQ => "-=", @@ -308,6 +314,9 @@ impl Into<&'static str> for Mozjs { Mozjs::GTGTGTEQ => ">>>=", Mozjs::LTLTEQ => "<<=", Mozjs::STARSTAREQ => "**=", + Mozjs::AMPAMPEQ => "&&=", + Mozjs::PIPEPIPEEQ => "||=", + Mozjs::QMARKQMARKEQ => "??=", Mozjs::DOTDOTDOT => "...", Mozjs::QMARK => "?", Mozjs::AMPAMP => "&&", @@ -366,7 +375,7 @@ impl Into<&'static str> for Mozjs { Mozjs::Program => "program", Mozjs::ExportStatement => "export_statement", Mozjs::ExportClause => "export_clause", - Mozjs::ImportExportSpecifier => "_import_export_specifier", + Mozjs::ExportSpecifier => "export_specifier", Mozjs::Declaration => "_declaration", Mozjs::Import => "import", Mozjs::ImportStatement => "import_statement", @@ -379,6 +388,7 @@ impl Into<&'static str> for Mozjs { Mozjs::LexicalDeclaration => "lexical_declaration", Mozjs::VariableDeclarator => "variable_declarator", Mozjs::StatementBlock => "statement_block", + Mozjs::ElseClause => "else_clause", Mozjs::IfStatement => "if_statement", Mozjs::SwitchStatement => "switch_statement", Mozjs::ForStatement => "for_statement", @@ -429,6 +439,7 @@ impl Into<&'static str> for Mozjs { Mozjs::MemberExpression => "member_expression", Mozjs::SubscriptExpression => "subscript_expression", Mozjs::AssignmentExpression => "assignment_expression", + Mozjs::AugmentedAssignmentLhs => "_augmented_assignment_lhs", Mozjs::AugmentedAssignmentExpression => "augmented_assignment_expression", Mozjs::Initializer => "_initializer", Mozjs::SpreadElement => "spread_element", @@ -470,7 +481,6 @@ impl Into<&'static str> for Mozjs { Mozjs::ClassBodyRepeat1 => "class_body_repeat1", Mozjs::FormalParametersRepeat1 => "formal_parameters_repeat1", Mozjs::ArrayPattern => "array_pattern", - Mozjs::ExportSpecifier => "export_specifier", Mozjs::ImportSpecifier => "import_specifier", Mozjs::ObjectPattern => "object_pattern", Mozjs::PropertyIdentifier => "property_identifier", @@ -483,299 +493,305 @@ impl Into<&'static str> for Mozjs { #[allow(clippy::unreadable_literal)] static KEYS: phf::Map<&'static str, Mozjs> = ::phf::Map { - key: 3213172566270843353, + key: 3347381344252206323, disps: ::phf::Slice::Static(&[ + (0, 10), (0, 1), - (0, 21), - (0, 13), - (5, 76), + (0, 72), + (0, 17), + (2, 1), + (1, 214), + (0, 1), + (0, 84), + (0, 195), + (7, 123), + (0, 62), + (0, 6), + (0, 46), + (0, 24), + (0, 60), + (4, 22), + (2, 67), (0, 16), - (0, 43), - (0, 5), + (0, 8), + (30, 182), + (5, 55), + (0, 10), + (0, 83), + (3, 128), + (0, 189), + (0, 70), (0, 0), - (3, 185), - (7, 194), - (2, 186), - (0, 2), - (0, 2), - (14, 15), - (0, 104), + (0, 31), + (3, 162), + (0, 29), + (7, 182), + (2, 191), + (0, 120), + (24, 35), + (0, 155), + (4, 62), + (0, 35), + (4, 151), + (29, 129), + (0, 31), + (22, 120), + (0, 31), (0, 3), - (21, 104), - (0, 142), - (0, 0), - (2, 60), - (0, 26), + (0, 5), (0, 0), - (0, 9), - (0, 168), - (4, 114), - (0, 14), - (12, 71), - (0, 1), - (1, 11), - (0, 6), - (0, 49), - (6, 27), - (25, 223), - (1, 84), - (1, 0), - (0, 82), - (1, 0), - (0, 18), - (0, 56), - (0, 189), - (38, 151), - (7, 130), + (1, 169), (0, 7), - (0, 11), - (2, 3), - (0, 205), ]), entries: ::phf::Slice::Static(&[ - ("_import_export_specifier", Mozjs::ImportExportSpecifier), - ("class_body_repeat1", Mozjs::ClassBodyRepeat1), - ("get", Mozjs::Get), - ("&=", Mozjs::AMPEQ), - ("-=", Mozjs::DASHEQ), - (">>=", Mozjs::GTGTEQ), - ("for_in_statement", Mozjs::ForInStatement), - ("(", Mozjs::LPAREN), - ("import_clause", Mozjs::ImportClause), - ("object", Mozjs::Object), - ("var", Mozjs::Var), - ("extends", Mozjs::Extends), - ("variable_declaration", Mozjs::VariableDeclaration), - ("empty_statement", Mozjs::EmptyStatement), - ("true", Mozjs::True), + ("new", Mozjs::New), + ("switch_statement", Mozjs::SwitchStatement), + ("string_token1", Mozjs::StringToken1), + ("of", Mozjs::Of), + ("try_statement", Mozjs::TryStatement), ("<<=", Mozjs::LTLTEQ), - ("undefined", Mozjs::Undefined), - ("from", Mozjs::From), - ("=", Mozjs::EQ), - ("formal_parameters", Mozjs::FormalParameters), + ( + "augmented_assignment_expression", + Mozjs::AugmentedAssignmentExpression, + ), + ("formal_parameters_repeat1", Mozjs::FormalParametersRepeat1), + ("class_declaration", Mozjs::ClassDeclaration), ("target", Mozjs::Target), - ("in", Mozjs::In), - ("&", Mozjs::AMP), - ("while", Mozjs::While), - ("object_pattern", Mozjs::ObjectPattern), - (",", Mozjs::COMMA), - ("import_statement", Mozjs::ImportStatement), - ("[", Mozjs::LBRACK), - ("!=", Mozjs::BANGEQ), - ("case", Mozjs::Case), - ("-", Mozjs::DASH), - (">>>", Mozjs::GTGTGT), - ("!==", Mozjs::BANGEQEQ), - ("switch_body", Mozjs::SwitchBody), - ("break", Mozjs::Break), - ("regex_flags", Mozjs::RegexFlags), - ("finally_clause", Mozjs::FinallyClause), + ("|=", Mozjs::PIPEEQ), + ("jsx_closing_element", Mozjs::JsxClosingElement), + ("/", Mozjs::SLASH), + ("%=", Mozjs::PERCENTEQ), + (">>=", Mozjs::GTGTEQ), + ("import_specifier", Mozjs::ImportSpecifier), + ("finally", Mozjs::Finally), + ("??", Mozjs::QMARKQMARK), + ("do", Mozjs::Do), + ("yield", Mozjs::Yield), + ("class_heritage", Mozjs::ClassHeritage), + ("await", Mozjs::Await), + ("import", Mozjs::Import), + ("array_pattern", Mozjs::ArrayPattern), + ("arrow_function", Mozjs::ArrowFunction), + ("async", Mozjs::Async), + ("string", Mozjs::String), + ("class_body_repeat1", Mozjs::ClassBodyRepeat1), + (".", Mozjs::DOT), + ("number", Mozjs::Number), ("class_body", Mozjs::ClassBody), - ("||", Mozjs::PIPEPIPE), - ("labeled_statement", Mozjs::LabeledStatement), - ("string_token2", Mozjs::StringToken2), - ("jsx_namespace_name", Mozjs::JsxNamespaceName), + ("await_expression", Mozjs::AwaitExpression), + ("spread_element", Mozjs::SpreadElement), + ("=", Mozjs::EQ), + ("formal_parameters", Mozjs::FormalParameters), + ("&&", Mozjs::AMPAMP), + ("for", Mozjs::For), + ("method_definition", Mozjs::MethodDefinition), + ("`", Mozjs::BQUOTE), + ("true", Mozjs::True), + ("nested_identifier", Mozjs::NestedIdentifier), + ("if", Mozjs::If), + ("set", Mozjs::Set), + ("--", Mozjs::DASHDASH), + ("do_statement", Mozjs::DoStatement), ("*", Mozjs::STAR), - ("decorator", Mozjs::Decorator), - ("ternary_expression", Mozjs::TernaryExpression), - ("<=", Mozjs::LTEQ), - ("object_repeat1", Mozjs::ObjectRepeat1), + ("pair", Mozjs::Pair), + ("+", Mozjs::PLUS), + ("return", Mozjs::Return), + ("_expression", Mozjs::Expression), ("jsx_text", Mozjs::JsxText), - ("binary_expression", Mozjs::BinaryExpression), - ("&&", Mozjs::AMPAMP), + ("switch_default", Mozjs::SwitchDefault), + ("property_identifier", Mozjs::PropertyIdentifier), + ("...", Mozjs::DOTDOTDOT), + ("template_substitution", Mozjs::TemplateSubstitution), + ("_automatic_semicolon", Mozjs::AutomaticSemicolon), + ("throw_statement", Mozjs::ThrowStatement), + ("variable_declarator", Mozjs::VariableDeclarator), + ("export_statement_repeat1", Mozjs::ExportStatementRepeat1), + ("throw", Mozjs::Throw), + ("&&=", Mozjs::AMPAMPEQ), + ("-", Mozjs::DASH), + ("catch_clause", Mozjs::CatchClause), + ("meta_property", Mozjs::MetaProperty), + ("in", Mozjs::In), ("try", Mozjs::Try), - ("finally", Mozjs::Finally), - ("_expression", Mozjs::Expression), - ("super", Mozjs::Super), - ("_from_clause", Mozjs::FromClause), - ("continue", Mozjs::Continue), - ("\'", Mozjs::SQUOTE), - ("@", Mozjs::AT), - ("_declaration", Mozjs::Declaration), - ("continue_statement", Mozjs::ContinueStatement), + ("jsx_element_repeat1", Mozjs::JsxElementRepeat1), + (")", Mozjs::RPAREN), + ("end", Mozjs::End), + ("${", Mozjs::DOLLARLBRACE), + ("empty_statement", Mozjs::EmptyStatement), + ("statement_block", Mozjs::StatementBlock), + (">>", Mozjs::GTGT), + ("named_imports_repeat1", Mozjs::NamedImportsRepeat1), ("debugger_statement", Mozjs::DebuggerStatement), - ("arguments", Mozjs::Arguments), - ("arrow_function", Mozjs::ArrowFunction), - ("import", Mozjs::Import), - ("function_declaration", Mozjs::FunctionDeclaration), - ("jsx_element", Mozjs::JsxElement), - ("switch_body_repeat1", Mozjs::SwitchBodyRepeat1), - ("array_pattern", Mozjs::ArrayPattern), ("statement_identifier", Mozjs::StatementIdentifier), - ("meta_property", Mozjs::MetaProperty), - ("catch_clause", Mozjs::CatchClause), ("computed_property_name", Mozjs::ComputedPropertyName), - ("^", Mozjs::CARET), - ("for_statement", Mozjs::ForStatement), - ("++", Mozjs::PLUSPLUS), - ("array_repeat1", Mozjs::ArrayRepeat1), - ("string_repeat1", Mozjs::StringRepeat1), - ("export_specifier", Mozjs::ExportSpecifier), ("_template_chars", Mozjs::TemplateChars), - ("spread_element", Mozjs::SpreadElement), - ("do", Mozjs::Do), + ("identifier", Mozjs::Identifier), + ("variable_declaration", Mozjs::VariableDeclaration), + ("continue", Mozjs::Continue), + ("with", Mozjs::With), + (">>>", Mozjs::GTGTGT), + ("string_token2", Mozjs::StringToken2), ("\\\"", Mozjs::DQUOTE), + ("as", Mozjs::As), + ("assignment_expression", Mozjs::AssignmentExpression), + ("||", Mozjs::PIPEPIPE), + ("!", Mozjs::BANG), + ("while", Mozjs::While), + ("false", Mozjs::False), + ("!==", Mozjs::BANGEQEQ), + ("return_statement", Mozjs::ReturnStatement), + ("export", Mozjs::Export), + ("member_expression", Mozjs::MemberExpression), + ("regex_flags", Mozjs::RegexFlags), + ("void", Mozjs::Void), + ("??=", Mozjs::QMARKQMARKEQ), + ("this", Mozjs::This), + ("expression_statement", Mozjs::ExpressionStatement), ("assignment_pattern", Mozjs::AssignmentPattern), - ("end", Mozjs::End), - ("==", Mozjs::EQEQ), - ("jsx_self_closing_element", Mozjs::JsxSelfClosingElement), - ("preproc", Mozjs::Preproc), - (">=", Mozjs::GTEQ), - ("<", Mozjs::LT), - ("identifier", Mozjs::Identifier), - ("yield", Mozjs::Yield), - ("export_statement", Mozjs::ExportStatement), - ("public_field_definition", Mozjs::PublicFieldDefinition), - ("nested_identifier", Mozjs::NestedIdentifier), - ("class", Mozjs::Class), - ("const", Mozjs::Const), - ("number", Mozjs::Number), - ("${", Mozjs::DOLLARLBRACE), - ("null", Mozjs::Null), - ("property_identifier", Mozjs::PropertyIdentifier), - ("jsx_fragment", Mozjs::JsxFragment), - ("class_declaration", Mozjs::ClassDeclaration), - ("string", Mozjs::String), - ("throw_statement", Mozjs::ThrowStatement), - (">", Mozjs::GT), - ("delete", Mozjs::Delete), - ( - "shorthand_property_identifier", - Mozjs::ShorthandPropertyIdentifier, - ), - ("update_expression", Mozjs::UpdateExpression), - ("return", Mozjs::Return), - ("call_expression", Mozjs::CallExpression), - ("await_expression", Mozjs::AwaitExpression), - ("~", Mozjs::TILDE), - (";", Mozjs::SEMI), - ("program_repeat1", Mozjs::ProgramRepeat1), - ("jsx_attribute", Mozjs::JsxAttribute), - ("do_statement", Mozjs::DoStatement), - ("typeof", Mozjs::Typeof), - ( - "jsx_opening_element_repeat1", - Mozjs::JsxOpeningElementRepeat1, - ), ("=>", Mozjs::EQGT), - ("if", Mozjs::If), + ("else", Mozjs::Else), + ("instanceof", Mozjs::Instanceof), + ("regex", Mozjs::Regex), ("ERROR", Mozjs::Error), + ("typeof", Mozjs::Typeof), + ("<=", Mozjs::LTEQ), + ("continue_statement", Mozjs::ContinueStatement), + ("ternary_expression", Mozjs::TernaryExpression), + ("export_clause_repeat1", Mozjs::ExportClauseRepeat1), + ("from", Mozjs::From), + ("object_pattern", Mozjs::ObjectPattern), + ("_augmented_assignment_lhs", Mozjs::AugmentedAssignmentLhs), + ("[", Mozjs::LBRACK), ("function", Mozjs::Function), - ("escape_sequence", Mozjs::EscapeSequence), - ("named_imports", Mozjs::NamedImports), - ("hash_bang_line", Mozjs::HashBangLine), - ("switch_statement", Mozjs::SwitchStatement), - ("export", Mozjs::Export), - ("template_substitution", Mozjs::TemplateSubstitution), - ("%", Mozjs::PERCENT), - ("regex_pattern", Mozjs::RegexPattern), - (">>>=", Mozjs::GTGTGTEQ), - ("new", Mozjs::New), - ("`", Mozjs::BQUOTE), - ("with_statement", Mozjs::WithStatement), - ("%=", Mozjs::PERCENTEQ), - ("instanceof", Mozjs::Instanceof), - ("set", Mozjs::Set), - ("export_clause", Mozjs::ExportClause), - ("with", Mozjs::With), - ("member_expression", Mozjs::MemberExpression), - ("export_statement_repeat1", Mozjs::ExportStatementRepeat1), + ("case", Mozjs::Case), + ("jsx_self_closing_element", Mozjs::JsxSelfClosingElement), ("**", Mozjs::STARSTAR), - ("of", Mozjs::Of), - ("as", Mozjs::As), - (")", Mozjs::RPAREN), - ("unary_expression", Mozjs::UnaryExpression), - ("void", Mozjs::Void), - ("false", Mozjs::False), + ("function_declaration", Mozjs::FunctionDeclaration), + (":", Mozjs::COLON), + ("<<", Mozjs::LTLT), ("string_repeat2", Mozjs::StringRepeat2), - ("switch", Mozjs::Switch), - ("--", Mozjs::DASHDASH), - ("while_statement", Mozjs::WhileStatement), - ("import_specifier", Mozjs::ImportSpecifier), - ("export_clause_repeat1", Mozjs::ExportClauseRepeat1), - ("try_statement", Mozjs::TryStatement), - ("+", Mozjs::PLUS), - ("===", Mozjs::EQEQEQ), - ("rest_parameter", Mozjs::RestParameter), + ("else_clause", Mozjs::ElseClause), + ("_for_header", Mozjs::ForHeader), + ("default", Mozjs::Default), + ("for_in_statement", Mozjs::ForInStatement), + ("jsx_fragment", Mozjs::JsxFragment), + ("named_imports", Mozjs::NamedImports), + ("preproc", Mozjs::Preproc), + ("lexical_declaration", Mozjs::LexicalDeclaration), + ("undefined", Mozjs::Undefined), + ("\'", Mozjs::SQUOTE), + ("switch_body", Mozjs::SwitchBody), + ("++", Mozjs::PLUSPLUS), + ("array", Mozjs::Array), + ("_initializer", Mozjs::Initializer), + ("with_statement", Mozjs::WithStatement), + ("binary_expression", Mozjs::BinaryExpression), + (",", Mozjs::COMMA), + ("(", Mozjs::LPAREN), + ("switch_case", Mozjs::SwitchCase), + ("escape_sequence", Mozjs::EscapeSequence), + ("labeled_statement", Mozjs::LabeledStatement), + ("array_repeat1", Mozjs::ArrayRepeat1), + ("jsx_element", Mozjs::JsxElement), + ("static", Mozjs::Static), + ("call_expression", Mozjs::CallExpression), + ("super", Mozjs::Super), ("{", Mozjs::LBRACE), - ("sequence_expression", Mozjs::SequenceExpression), - ("*=", Mozjs::STAREQ), + ("new_expression", Mozjs::NewExpression), + ("template_string_repeat1", Mozjs::TemplateStringRepeat1), + ("object_repeat1", Mozjs::ObjectRepeat1), + ("/=", Mozjs::SLASHEQ), + ("subscript_expression", Mozjs::SubscriptExpression), + ("|", Mozjs::PIPE), + ("import_clause", Mozjs::ImportClause), + ("import_statement", Mozjs::ImportStatement), + ("yield_expression", Mozjs::YieldExpression), ( "generator_function_declaration", Mozjs::GeneratorFunctionDeclaration, ), + ("while_statement", Mozjs::WhileStatement), ("jsx_opening_element", Mozjs::JsxOpeningElement), - ("variable_declarator", Mozjs::VariableDeclarator), - ("for", Mozjs::For), - ("??", Mozjs::QMARKQMARK), - ("...", Mozjs::DOTDOTDOT), - ("**=", Mozjs::STARSTAREQ), - ("jsx_element_repeat1", Mozjs::JsxElementRepeat1), - ("}", Mozjs::RBRACE), - ("generator_function", Mozjs::GeneratorFunction), - ("switch_default", Mozjs::SwitchDefault), - ("jsx_closing_element", Mozjs::JsxClosingElement), - ("named_imports_repeat1", Mozjs::NamedImportsRepeat1), - ("^=", Mozjs::CARETEQ), - ("yield_expression", Mozjs::YieldExpression), - ("|", Mozjs::PIPE), - ("regex", Mozjs::Regex), - ("string_token1", Mozjs::StringToken1), - ("program", Mozjs::Program), - (".", Mozjs::DOT), + (">>>=", Mozjs::GTGTGTEQ), + ("jsx_attribute", Mozjs::JsxAttribute), + ("delete", Mozjs::Delete), + ("hash_bang_line", Mozjs::HashBangLine), + ("export_clause", Mozjs::ExportClause), + ("break_statement", Mozjs::BreakStatement), ("+=", Mozjs::PLUSEQ), - ("?", Mozjs::QMARK), + ("var", Mozjs::Var), + ("program_repeat1", Mozjs::ProgramRepeat1), + ("extends", Mozjs::Extends), + ("get", Mozjs::Get), + ("?.", Mozjs::QMARKDOT), + ("let", Mozjs::Let), + ("string_repeat1", Mozjs::StringRepeat1), + ("_from_clause", Mozjs::FromClause), ("jsx_expression", Mozjs::JsxExpression), - ("subscript_expression", Mozjs::SubscriptExpression), - ("async", Mozjs::Async), - ("_for_header", Mozjs::ForHeader), - ("static", Mozjs::Static), - ("class_heritage", Mozjs::ClassHeritage), - ("catch", Mozjs::Catch), - ("await", Mozjs::Await), - ("formal_parameters_repeat1", Mozjs::FormalParametersRepeat1), - (">>", Mozjs::GTGT), - ("template_string", Mozjs::TemplateString), - ("return_statement", Mozjs::ReturnStatement), - ("statement_block", Mozjs::StatementBlock), - ("this", Mozjs::This), - ("new_expression", Mozjs::NewExpression), - ("switch_case", Mozjs::SwitchCase), + ("object", Mozjs::Object), + ("const", Mozjs::Const), + ("-=", Mozjs::DASHEQ), + ("break", Mozjs::Break), + ("*=", Mozjs::STAREQ), + ("<", Mozjs::LT), + ("program", Mozjs::Program), + ("_property_name", Mozjs::PropertyName), + (">=", Mozjs::GTEQ), + ("^=", Mozjs::CARETEQ), + ("==", Mozjs::EQEQ), + ("jsx_namespace_name", Mozjs::JsxNamespaceName), ( - "augmented_assignment_expression", - Mozjs::AugmentedAssignmentExpression, + "shorthand_property_identifier", + Mozjs::ShorthandPropertyIdentifier, ), - ("expression_statement", Mozjs::ExpressionStatement), - ("namespace_import", Mozjs::NamespaceImport), - ("/=", Mozjs::SLASHEQ), - ("_automatic_semicolon", Mozjs::AutomaticSemicolon), - ("method_definition", Mozjs::MethodDefinition), + ("===", Mozjs::EQEQEQ), + ("switch_body_repeat1", Mozjs::SwitchBodyRepeat1), ("debugger", Mozjs::Debugger), - ("|=", Mozjs::PIPEEQ), - ("_initializer", Mozjs::Initializer), - ("break_statement", Mozjs::BreakStatement), - (":", Mozjs::COLON), - ("array", Mozjs::Array), - ("_property_name", Mozjs::PropertyName), - ("if_statement", Mozjs::IfStatement), - ("]", Mozjs::RBRACK), - ("<<", Mozjs::LTLT), - ("pair", Mozjs::Pair), - ("/", Mozjs::SLASH), + ("rest_parameter", Mozjs::RestParameter), + ("for_statement", Mozjs::ForStatement), + ("**=", Mozjs::STARSTAREQ), + ("?", Mozjs::QMARK), + ("unary_expression", Mozjs::UnaryExpression), + ("&", Mozjs::AMP), ("parenthesized_expression", Mozjs::ParenthesizedExpression), - ("let", Mozjs::Let), - ("default", Mozjs::Default), + ("generator_function", Mozjs::GeneratorFunction), + ("switch", Mozjs::Switch), + ("export_specifier", Mozjs::ExportSpecifier), + ("template_string", Mozjs::TemplateString), + ("null", Mozjs::Null), + ("_declaration", Mozjs::Declaration), + ("if_statement", Mozjs::IfStatement), + ("@", Mozjs::AT), + ("regex_pattern", Mozjs::RegexPattern), + ("update_expression", Mozjs::UpdateExpression), + (";", Mozjs::SEMI), + ("public_field_definition", Mozjs::PublicFieldDefinition), + ("%", Mozjs::PERCENT), + (">", Mozjs::GT), + ("namespace_import", Mozjs::NamespaceImport), + ("arguments", Mozjs::Arguments), ( "variable_declaration_repeat1", Mozjs::VariableDeclarationRepeat1, ), - ("throw", Mozjs::Throw), + ("||=", Mozjs::PIPEPIPEEQ), + ("]", Mozjs::RBRACK), ("comment", Mozjs::Comment), - ("template_string_repeat1", Mozjs::TemplateStringRepeat1), - ("!", Mozjs::BANG), - ("assignment_expression", Mozjs::AssignmentExpression), - ("lexical_declaration", Mozjs::LexicalDeclaration), - ("else", Mozjs::Else), + ("class", Mozjs::Class), + ("}", Mozjs::RBRACE), + ("~", Mozjs::TILDE), + ("^", Mozjs::CARET), + ("catch", Mozjs::Catch), + ("export_statement", Mozjs::ExportStatement), + ("decorator", Mozjs::Decorator), + ("finally_clause", Mozjs::FinallyClause), + ("!=", Mozjs::BANGEQ), + ("&=", Mozjs::AMPEQ), + ("sequence_expression", Mozjs::SequenceExpression), + ( + "jsx_opening_element_repeat1", + Mozjs::JsxOpeningElementRepeat1, + ), ]), }; diff --git a/tree-sitter-mozjs/Cargo.toml b/tree-sitter-mozjs/Cargo.toml index 3f5ed9d27..9496e5fa1 100644 --- a/tree-sitter-mozjs/Cargo.toml +++ b/tree-sitter-mozjs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-mozjs" description = "Mozjs grammar for the tree-sitter parsing library" -version = "0.16.0" +version = "0.17.0" authors = ["Calixte Denizet "] license = "MIT" readme = "bindings/rust/README.md" diff --git a/tree-sitter-mozjs/src/grammar.json b/tree-sitter-mozjs/src/grammar.json index 96e461f34..32766792f 100644 --- a/tree-sitter-mozjs/src/grammar.json +++ b/tree-sitter-mozjs/src/grammar.json @@ -747,6 +747,19 @@ ] } }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "SYMBOL", + "name": "_statement" + } + ] + }, "if_statement": { "type": "PREC_RIGHT", "value": 0, @@ -777,21 +790,12 @@ "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "FIELD", - "name": "alternative", - "content": { - "type": "SYMBOL", - "name": "_statement" - } - } - ] + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } }, { "type": "BLANK" @@ -1500,7 +1504,7 @@ "members": [ { "type": "SYMBOL", - "name": "_constructable_expression" + "name": "_primary_expression" }, { "type": "SYMBOL", @@ -1540,7 +1544,7 @@ }, { "type": "SYMBOL", - "name": "call_expression" + "name": "new_expression" }, { "type": "SYMBOL", @@ -1548,6 +1552,112 @@ } ] }, + "_primary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "this" + }, + { + "type": "SYMBOL", + "name": "super" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "number" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "template_string" + }, + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "SYMBOL", + "name": "true" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "SYMBOL", + "name": "null" + }, + { + "type": "SYMBOL", + "name": "undefined" + }, + { + "type": "SYMBOL", + "name": "import" + }, + { + "type": "SYMBOL", + "name": "object" + }, + { + "type": "SYMBOL", + "name": "array" + }, + { + "type": "SYMBOL", + "name": "function" + }, + { + "type": "SYMBOL", + "name": "arrow_function" + }, + { + "type": "SYMBOL", + "name": "generator_function" + }, + { + "type": "SYMBOL", + "name": "class" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "SYMBOL", + "name": "member_expression" + }, + { + "type": "SYMBOL", + "name": "meta_property" + }, + { + "type": "SYMBOL", + "name": "call_expression" + } + ] + }, "yield_expression": { "type": "PREC_RIGHT", "value": 0, @@ -1981,6 +2091,10 @@ "type": "SYMBOL", "name": "_jsx_element" }, + { + "type": "SYMBOL", + "name": "jsx_fragment" + }, { "type": "SYMBOL", "name": "jsx_expression" @@ -2688,51 +2802,72 @@ ] }, "call_expression": { - "type": "PREC", - "value": 12, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "function", - "content": { - "type": "CHOICE", - "members": [ - { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { "type": "SYMBOL", "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "super" - }, - { + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "arguments" + }, + { + "type": "SYMBOL", + "name": "template_string" + } + ] + } + } + ] + } + }, + { + "type": "PREC", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { "type": "SYMBOL", - "name": "function" + "name": "_primary_expression" } - ] - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "CHOICE", - "members": [ - { + }, + { + "type": "STRING", + "value": "?." + }, + { + "type": "FIELD", + "name": "arguments", + "content": { "type": "SYMBOL", "name": "arguments" - }, - { - "type": "SYMBOL", - "name": "template_string" } - ] - } + } + ] } - ] - } + } + ] }, "new_expression": { "type": "PREC_RIGHT", @@ -2749,7 +2884,7 @@ "name": "constructor", "content": { "type": "SYMBOL", - "name": "_constructable_expression" + "name": "_primary_expression" } }, { @@ -2759,8 +2894,12 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "arguments" + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SYMBOL", + "name": "arguments" + } }, { "type": "BLANK" @@ -2771,108 +2910,6 @@ ] } }, - "_constructable_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "this" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, - "named": true, - "value": "identifier" - }, - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "template_string" - }, - { - "type": "SYMBOL", - "name": "regex" - }, - { - "type": "SYMBOL", - "name": "true" - }, - { - "type": "SYMBOL", - "name": "false" - }, - { - "type": "SYMBOL", - "name": "null" - }, - { - "type": "SYMBOL", - "name": "undefined" - }, - { - "type": "SYMBOL", - "name": "import" - }, - { - "type": "SYMBOL", - "name": "object" - }, - { - "type": "SYMBOL", - "name": "array" - }, - { - "type": "SYMBOL", - "name": "function" - }, - { - "type": "SYMBOL", - "name": "arrow_function" - }, - { - "type": "SYMBOL", - "name": "generator_function" - }, - { - "type": "SYMBOL", - "name": "class" - }, - { - "type": "SYMBOL", - "name": "parenthesized_expression" - }, - { - "type": "SYMBOL", - "name": "subscript_expression" - }, - { - "type": "SYMBOL", - "name": "member_expression" - }, - { - "type": "SYMBOL", - "name": "meta_property" - }, - { - "type": "SYMBOL", - "name": "new_expression" - } - ] - }, "await_expression": { "type": "SEQ", "members": [ @@ -2904,27 +2941,23 @@ }, { "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "super" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, - "named": true, - "value": "identifier" + "name": "_primary_expression" } ] } }, { - "type": "STRING", - "value": "." + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "STRING", + "value": "?." + } + ] }, { "type": "FIELD", @@ -2960,11 +2993,23 @@ }, { "type": "SYMBOL", - "name": "super" + "name": "_primary_expression" } ] } }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "?." + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "[" @@ -3052,6 +3097,36 @@ ] } }, + "_augmented_assignment_lhs": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "member_expression" + }, + { + "type": "SYMBOL", + "name": "subscript_expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_reserved_identifier" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + } + ] + }, "augmented_assignment_expression": { "type": "PREC_RIGHT", "value": 0, @@ -3062,34 +3137,8 @@ "type": "FIELD", "name": "left", "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "member_expression" - }, - { - "type": "SYMBOL", - "name": "subscript_expression" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, - "named": true, - "value": "identifier" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "parenthesized_expression" - } - ] + "type": "SYMBOL", + "name": "_augmented_assignment_lhs" } }, { @@ -3142,6 +3191,18 @@ { "type": "STRING", "value": "**=" + }, + { + "type": "STRING", + "value": "&&=" + }, + { + "type": "STRING", + "value": "||=" + }, + { + "type": "STRING", + "value": "??=" } ] }, @@ -4511,7 +4572,7 @@ }, { "type": "PATTERN", - "value": "[^*]*\\*+([^\\/*][^*]*\\*+)*" + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" }, { "type": "STRING", @@ -4673,7 +4734,7 @@ }, { "type": "PATTERN", - "value": "[^\\/\\\\\\[\\n]" + "value": "[^/\\\\\\[\\n]" } ] } @@ -5182,13 +5243,13 @@ "members": [ { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" }, { "type": "REPEAT", "content": { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" } } ] @@ -5331,7 +5392,7 @@ "members": [ { "type": "SYMBOL", - "name": "_identifier_reference" + "name": "identifier" }, { "type": "ALIAS", @@ -5355,24 +5416,6 @@ } ] }, - "_identifier_reference": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_reserved_identifier" - }, - "named": true, - "value": "identifier" - } - ] - }, "decorator_member_expression": { "type": "PREC", "value": 14, @@ -5387,7 +5430,7 @@ "members": [ { "type": "SYMBOL", - "name": "_identifier_reference" + "name": "identifier" }, { "type": "ALIAS", @@ -5435,7 +5478,7 @@ "members": [ { "type": "SYMBOL", - "name": "_identifier_reference" + "name": "identifier" }, { "type": "ALIAS", @@ -5948,13 +5991,12 @@ ], "inline": [ "_call_signature", - "_constructable_expression", + "_primary_expression", "_statement", "_expressions", "_semicolon", "_formal_parameter", "_destructuring_pattern", - "_identifier_reference", "_reserved_identifier", "_jsx_attribute", "_jsx_element_name", diff --git a/tree-sitter-mozjs/src/node-types.json b/tree-sitter-mozjs/src/node-types.json index 4938e79f2..7790df3ef 100644 --- a/tree-sitter-mozjs/src/node-types.json +++ b/tree-sitter-mozjs/src/node-types.json @@ -147,6 +147,10 @@ "type": "subscript_expression", "named": true }, + { + "type": "super", + "named": true + }, { "type": "template_string", "named": true @@ -666,10 +670,6 @@ { "type": "_expression", "named": true - }, - { - "type": "super", - "named": true } ] } @@ -917,6 +917,21 @@ } } }, + { + "type": "else_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "_statement", + "named": true + } + ] + } + }, { "type": "empty_statement", "named": true, @@ -1356,7 +1371,7 @@ "required": false, "types": [ { - "type": "_statement", + "type": "else_clause", "named": true } ] @@ -1443,7 +1458,7 @@ "fields": { "source": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "string", @@ -1563,6 +1578,10 @@ "type": "jsx_expression", "named": true }, + { + "type": "jsx_fragment", + "named": true + }, { "type": "jsx_self_closing_element", "named": true @@ -1613,6 +1632,10 @@ "type": "jsx_expression", "named": true }, + { + "type": "jsx_fragment", + "named": true + }, { "type": "jsx_self_closing_element", "named": true @@ -1767,10 +1790,6 @@ { "type": "_expression", "named": true - }, - { - "type": "super", - "named": true } ] }, @@ -1924,6 +1943,10 @@ "type": "arrow_function", "named": true }, + { + "type": "call_expression", + "named": true + }, { "type": "class", "named": true @@ -1956,10 +1979,6 @@ "type": "meta_property", "named": true }, - { - "type": "new_expression", - "named": true - }, { "type": "null", "named": true @@ -1988,6 +2007,10 @@ "type": "subscript_expression", "named": true }, + { + "type": "super", + "named": true + }, { "type": "template_string", "named": true @@ -2348,10 +2371,6 @@ { "type": "_expression", "named": true - }, - { - "type": "super", - "named": true } ] } @@ -2804,6 +2823,10 @@ "type": "&&", "named": false }, + { + "type": "&&=", + "named": false + }, { "type": "&=", "named": false @@ -2948,10 +2971,18 @@ "type": "?", "named": false }, + { + "type": "?.", + "named": false + }, { "type": "??", "named": false }, + { + "type": "??=", + "named": false + }, { "type": "@", "named": false @@ -3004,6 +3035,10 @@ "type": "class", "named": false }, + { + "type": "comment", + "named": true + }, { "type": "const", "named": false @@ -3224,6 +3259,10 @@ "type": "||", "named": false }, + { + "type": "||=", + "named": false + }, { "type": "}", "named": false diff --git a/tree-sitter-mozjs/src/parser.c b/tree-sitter-mozjs/src/parser.c index a219fbb93..751c58943 100644 --- a/tree-sitter-mozjs/src/parser.c +++ b/tree-sitter-mozjs/src/parser.c @@ -5,12 +5,12 @@ #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 11 -#define STATE_COUNT 1136 -#define LARGE_STATE_COUNT 182 -#define SYMBOL_COUNT 227 -#define ALIAS_COUNT 7 -#define TOKEN_COUNT 121 +#define LANGUAGE_VERSION 12 +#define STATE_COUNT 1172 +#define LARGE_STATE_COUNT 193 +#define SYMBOL_COUNT 233 +#define ALIAS_COUNT 6 +#define TOKEN_COUNT 125 #define EXTERNAL_TOKEN_COUNT 2 #define FIELD_COUNT 34 #define MAX_ALIAS_SEQUENCE_LENGTH 7 @@ -30,8 +30,8 @@ enum { anon_sym_var = 12, anon_sym_let = 13, anon_sym_const = 14, - anon_sym_if = 15, - anon_sym_else = 16, + anon_sym_else = 15, + anon_sym_if = 16, anon_sym_switch = 17, anon_sym_for = 18, anon_sym_LPAREN = 19, @@ -68,187 +68,192 @@ enum { anon_sym_async = 50, anon_sym_function = 51, anon_sym_EQ_GT = 52, - anon_sym_new = 53, - anon_sym_PLUS_EQ = 54, - anon_sym_DASH_EQ = 55, - anon_sym_STAR_EQ = 56, - anon_sym_SLASH_EQ = 57, - anon_sym_PERCENT_EQ = 58, - anon_sym_CARET_EQ = 59, - anon_sym_AMP_EQ = 60, - anon_sym_PIPE_EQ = 61, - anon_sym_GT_GT_EQ = 62, - anon_sym_GT_GT_GT_EQ = 63, - anon_sym_LT_LT_EQ = 64, - anon_sym_STAR_STAR_EQ = 65, - anon_sym_DOT_DOT_DOT = 66, - anon_sym_QMARK = 67, - anon_sym_AMP_AMP = 68, - anon_sym_PIPE_PIPE = 69, - anon_sym_GT_GT = 70, - anon_sym_GT_GT_GT = 71, - anon_sym_LT_LT = 72, - anon_sym_AMP = 73, - anon_sym_CARET = 74, - anon_sym_PIPE = 75, - anon_sym_PLUS = 76, - anon_sym_DASH = 77, - anon_sym_PERCENT = 78, - anon_sym_STAR_STAR = 79, - anon_sym_LT_EQ = 80, - anon_sym_EQ_EQ = 81, - anon_sym_EQ_EQ_EQ = 82, - anon_sym_BANG_EQ = 83, - anon_sym_BANG_EQ_EQ = 84, - anon_sym_GT_EQ = 85, - anon_sym_QMARK_QMARK = 86, - anon_sym_instanceof = 87, - anon_sym_BANG = 88, - anon_sym_TILDE = 89, - anon_sym_typeof = 90, - anon_sym_void = 91, - anon_sym_delete = 92, - anon_sym_PLUS_PLUS = 93, - anon_sym_DASH_DASH = 94, - anon_sym_DQUOTE = 95, - aux_sym_string_token1 = 96, - anon_sym_SQUOTE = 97, - aux_sym_string_token2 = 98, - sym_escape_sequence = 99, - sym_comment = 100, - anon_sym_BQUOTE = 101, - anon_sym_DOLLAR_LBRACE = 102, - anon_sym_SLASH2 = 103, - sym_regex_pattern = 104, - sym_regex_flags = 105, - sym_number = 106, - anon_sym_target = 107, - sym_this = 108, - sym_super = 109, - sym_true = 110, - sym_false = 111, - sym_null = 112, - sym_undefined = 113, - anon_sym_AT = 114, - anon_sym_static = 115, - anon_sym_get = 116, - anon_sym_set = 117, - sym_preproc = 118, - sym__automatic_semicolon = 119, - sym__template_chars = 120, - sym_program = 121, - sym_export_statement = 122, - sym_export_clause = 123, - sym__import_export_specifier = 124, - sym__declaration = 125, - sym_import = 126, - sym_import_statement = 127, - sym_import_clause = 128, - sym__from_clause = 129, - sym_namespace_import = 130, - sym_named_imports = 131, - sym_expression_statement = 132, - sym_variable_declaration = 133, - sym_lexical_declaration = 134, - sym_variable_declarator = 135, - sym_statement_block = 136, - sym_if_statement = 137, - sym_switch_statement = 138, - sym_for_statement = 139, - sym_for_in_statement = 140, - sym__for_header = 141, - sym_while_statement = 142, - sym_do_statement = 143, - sym_try_statement = 144, - sym_with_statement = 145, - sym_break_statement = 146, - sym_continue_statement = 147, - sym_debugger_statement = 148, - sym_return_statement = 149, - sym_throw_statement = 150, - sym_empty_statement = 151, - sym_labeled_statement = 152, - sym_switch_body = 153, - sym_switch_case = 154, - sym_switch_default = 155, - sym_catch_clause = 156, - sym_finally_clause = 157, - sym_parenthesized_expression = 158, - sym__expression = 159, - sym_yield_expression = 160, - sym_object = 161, - sym_assignment_pattern = 162, - sym_array = 163, - sym_jsx_element = 164, - sym_jsx_fragment = 165, - sym_jsx_expression = 166, - sym_jsx_opening_element = 167, - sym_nested_identifier = 168, - sym_jsx_namespace_name = 169, - sym_jsx_closing_element = 170, - sym_jsx_self_closing_element = 171, - sym_jsx_attribute = 172, - sym_class = 173, - sym_class_declaration = 174, - sym_class_heritage = 175, - sym_function = 176, - sym_function_declaration = 177, - sym_generator_function = 178, - sym_generator_function_declaration = 179, - sym_arrow_function = 180, - sym_call_expression = 181, - sym_new_expression = 182, - sym_await_expression = 183, - sym_member_expression = 184, - sym_subscript_expression = 185, - sym_assignment_expression = 186, - sym_augmented_assignment_expression = 187, - sym__initializer = 188, - sym_spread_element = 189, - sym_ternary_expression = 190, - sym_binary_expression = 191, - sym_unary_expression = 192, - sym_update_expression = 193, - sym_sequence_expression = 194, - sym_string = 195, - sym_template_string = 196, - sym_template_substitution = 197, - sym_regex = 198, - sym_meta_property = 199, - sym_arguments = 200, - sym_decorator = 201, - sym_decorator_member_expression = 202, - sym_decorator_call_expression = 203, - sym_class_body = 204, - sym_public_field_definition = 205, - sym_formal_parameters = 206, - sym_rest_parameter = 207, - sym_method_definition = 208, - sym_pair = 209, - sym__property_name = 210, - sym_computed_property_name = 211, - aux_sym_program_repeat1 = 212, - aux_sym_export_statement_repeat1 = 213, - aux_sym_export_clause_repeat1 = 214, - aux_sym_named_imports_repeat1 = 215, - aux_sym_variable_declaration_repeat1 = 216, - aux_sym_switch_body_repeat1 = 217, - aux_sym_object_repeat1 = 218, - aux_sym_array_repeat1 = 219, - aux_sym_jsx_element_repeat1 = 220, - aux_sym_jsx_opening_element_repeat1 = 221, - aux_sym_string_repeat1 = 222, - aux_sym_string_repeat2 = 223, - aux_sym_template_string_repeat1 = 224, - aux_sym_class_body_repeat1 = 225, - aux_sym_formal_parameters_repeat1 = 226, - alias_sym_array_pattern = 227, - alias_sym_export_specifier = 228, - alias_sym_import_specifier = 229, - alias_sym_object_pattern = 230, - alias_sym_property_identifier = 231, - alias_sym_shorthand_property_identifier = 232, - alias_sym_statement_identifier = 233, + anon_sym_QMARK_DOT = 53, + anon_sym_new = 54, + anon_sym_PLUS_EQ = 55, + anon_sym_DASH_EQ = 56, + anon_sym_STAR_EQ = 57, + anon_sym_SLASH_EQ = 58, + anon_sym_PERCENT_EQ = 59, + anon_sym_CARET_EQ = 60, + anon_sym_AMP_EQ = 61, + anon_sym_PIPE_EQ = 62, + anon_sym_GT_GT_EQ = 63, + anon_sym_GT_GT_GT_EQ = 64, + anon_sym_LT_LT_EQ = 65, + anon_sym_STAR_STAR_EQ = 66, + anon_sym_AMP_AMP_EQ = 67, + anon_sym_PIPE_PIPE_EQ = 68, + anon_sym_QMARK_QMARK_EQ = 69, + anon_sym_DOT_DOT_DOT = 70, + anon_sym_QMARK = 71, + anon_sym_AMP_AMP = 72, + anon_sym_PIPE_PIPE = 73, + anon_sym_GT_GT = 74, + anon_sym_GT_GT_GT = 75, + anon_sym_LT_LT = 76, + anon_sym_AMP = 77, + anon_sym_CARET = 78, + anon_sym_PIPE = 79, + anon_sym_PLUS = 80, + anon_sym_DASH = 81, + anon_sym_PERCENT = 82, + anon_sym_STAR_STAR = 83, + anon_sym_LT_EQ = 84, + anon_sym_EQ_EQ = 85, + anon_sym_EQ_EQ_EQ = 86, + anon_sym_BANG_EQ = 87, + anon_sym_BANG_EQ_EQ = 88, + anon_sym_GT_EQ = 89, + anon_sym_QMARK_QMARK = 90, + anon_sym_instanceof = 91, + anon_sym_BANG = 92, + anon_sym_TILDE = 93, + anon_sym_typeof = 94, + anon_sym_void = 95, + anon_sym_delete = 96, + anon_sym_PLUS_PLUS = 97, + anon_sym_DASH_DASH = 98, + anon_sym_DQUOTE = 99, + aux_sym_string_token1 = 100, + anon_sym_SQUOTE = 101, + aux_sym_string_token2 = 102, + sym_escape_sequence = 103, + sym_comment = 104, + anon_sym_BQUOTE = 105, + anon_sym_DOLLAR_LBRACE = 106, + anon_sym_SLASH2 = 107, + sym_regex_pattern = 108, + sym_regex_flags = 109, + sym_number = 110, + anon_sym_target = 111, + sym_this = 112, + sym_super = 113, + sym_true = 114, + sym_false = 115, + sym_null = 116, + sym_undefined = 117, + anon_sym_AT = 118, + anon_sym_static = 119, + anon_sym_get = 120, + anon_sym_set = 121, + sym_preproc = 122, + sym__automatic_semicolon = 123, + sym__template_chars = 124, + sym_program = 125, + sym_export_statement = 126, + sym_export_clause = 127, + sym__import_export_specifier = 128, + sym__declaration = 129, + sym_import = 130, + sym_import_statement = 131, + sym_import_clause = 132, + sym__from_clause = 133, + sym_namespace_import = 134, + sym_named_imports = 135, + sym_expression_statement = 136, + sym_variable_declaration = 137, + sym_lexical_declaration = 138, + sym_variable_declarator = 139, + sym_statement_block = 140, + sym_else_clause = 141, + sym_if_statement = 142, + sym_switch_statement = 143, + sym_for_statement = 144, + sym_for_in_statement = 145, + sym__for_header = 146, + sym_while_statement = 147, + sym_do_statement = 148, + sym_try_statement = 149, + sym_with_statement = 150, + sym_break_statement = 151, + sym_continue_statement = 152, + sym_debugger_statement = 153, + sym_return_statement = 154, + sym_throw_statement = 155, + sym_empty_statement = 156, + sym_labeled_statement = 157, + sym_switch_body = 158, + sym_switch_case = 159, + sym_switch_default = 160, + sym_catch_clause = 161, + sym_finally_clause = 162, + sym_parenthesized_expression = 163, + sym__expression = 164, + sym_yield_expression = 165, + sym_object = 166, + sym_assignment_pattern = 167, + sym_array = 168, + sym_jsx_element = 169, + sym_jsx_fragment = 170, + sym_jsx_expression = 171, + sym_jsx_opening_element = 172, + sym_nested_identifier = 173, + sym_jsx_namespace_name = 174, + sym_jsx_closing_element = 175, + sym_jsx_self_closing_element = 176, + sym_jsx_attribute = 177, + sym_class = 178, + sym_class_declaration = 179, + sym_class_heritage = 180, + sym_function = 181, + sym_function_declaration = 182, + sym_generator_function = 183, + sym_generator_function_declaration = 184, + sym_arrow_function = 185, + sym_call_expression = 186, + sym_new_expression = 187, + sym_await_expression = 188, + sym_member_expression = 189, + sym_subscript_expression = 190, + sym_assignment_expression = 191, + sym__augmented_assignment_lhs = 192, + sym_augmented_assignment_expression = 193, + sym__initializer = 194, + sym_spread_element = 195, + sym_ternary_expression = 196, + sym_binary_expression = 197, + sym_unary_expression = 198, + sym_update_expression = 199, + sym_sequence_expression = 200, + sym_string = 201, + sym_template_string = 202, + sym_template_substitution = 203, + sym_regex = 204, + sym_meta_property = 205, + sym_arguments = 206, + sym_decorator = 207, + sym_decorator_member_expression = 208, + sym_decorator_call_expression = 209, + sym_class_body = 210, + sym_public_field_definition = 211, + sym_formal_parameters = 212, + sym_rest_parameter = 213, + sym_method_definition = 214, + sym_pair = 215, + sym__property_name = 216, + sym_computed_property_name = 217, + aux_sym_program_repeat1 = 218, + aux_sym_export_statement_repeat1 = 219, + aux_sym_export_clause_repeat1 = 220, + aux_sym_named_imports_repeat1 = 221, + aux_sym_variable_declaration_repeat1 = 222, + aux_sym_switch_body_repeat1 = 223, + aux_sym_object_repeat1 = 224, + aux_sym_array_repeat1 = 225, + aux_sym_jsx_element_repeat1 = 226, + aux_sym_jsx_opening_element_repeat1 = 227, + aux_sym_string_repeat1 = 228, + aux_sym_string_repeat2 = 229, + aux_sym_template_string_repeat1 = 230, + aux_sym_class_body_repeat1 = 231, + aux_sym_formal_parameters_repeat1 = 232, + alias_sym_array_pattern = 233, + alias_sym_import_specifier = 234, + alias_sym_object_pattern = 235, + alias_sym_property_identifier = 236, + alias_sym_shorthand_property_identifier = 237, + alias_sym_statement_identifier = 238, }; static const char *ts_symbol_names[] = { @@ -267,8 +272,8 @@ static const char *ts_symbol_names[] = { [anon_sym_var] = "var", [anon_sym_let] = "let", [anon_sym_const] = "const", - [anon_sym_if] = "if", [anon_sym_else] = "else", + [anon_sym_if] = "if", [anon_sym_switch] = "switch", [anon_sym_for] = "for", [anon_sym_LPAREN] = "(", @@ -305,6 +310,7 @@ static const char *ts_symbol_names[] = { [anon_sym_async] = "async", [anon_sym_function] = "function", [anon_sym_EQ_GT] = "=>", + [anon_sym_QMARK_DOT] = "\?.", [anon_sym_new] = "new", [anon_sym_PLUS_EQ] = "+=", [anon_sym_DASH_EQ] = "-=", @@ -318,8 +324,11 @@ static const char *ts_symbol_names[] = { [anon_sym_GT_GT_GT_EQ] = ">>>=", [anon_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_DOT_DOT_DOT] = "...", - [anon_sym_QMARK] = "?", + [anon_sym_QMARK] = "\?", [anon_sym_AMP_AMP] = "&&", [anon_sym_PIPE_PIPE] = "||", [anon_sym_GT_GT] = ">>", @@ -338,7 +347,7 @@ static const char *ts_symbol_names[] = { [anon_sym_BANG_EQ] = "!=", [anon_sym_BANG_EQ_EQ] = "!==", [anon_sym_GT_EQ] = ">=", - [anon_sym_QMARK_QMARK] = "??", + [anon_sym_QMARK_QMARK] = "\?\?", [anon_sym_instanceof] = "instanceof", [anon_sym_BANG] = "!", [anon_sym_TILDE] = "~", @@ -376,7 +385,7 @@ static const char *ts_symbol_names[] = { [sym_program] = "program", [sym_export_statement] = "export_statement", [sym_export_clause] = "export_clause", - [sym__import_export_specifier] = "_import_export_specifier", + [sym__import_export_specifier] = "export_specifier", [sym__declaration] = "_declaration", [sym_import] = "import", [sym_import_statement] = "import_statement", @@ -389,6 +398,7 @@ static const char *ts_symbol_names[] = { [sym_lexical_declaration] = "lexical_declaration", [sym_variable_declarator] = "variable_declarator", [sym_statement_block] = "statement_block", + [sym_else_clause] = "else_clause", [sym_if_statement] = "if_statement", [sym_switch_statement] = "switch_statement", [sym_for_statement] = "for_statement", @@ -439,6 +449,7 @@ static const char *ts_symbol_names[] = { [sym_member_expression] = "member_expression", [sym_subscript_expression] = "subscript_expression", [sym_assignment_expression] = "assignment_expression", + [sym__augmented_assignment_lhs] = "_augmented_assignment_lhs", [sym_augmented_assignment_expression] = "augmented_assignment_expression", [sym__initializer] = "_initializer", [sym_spread_element] = "spread_element", @@ -480,7 +491,6 @@ static const char *ts_symbol_names[] = { [aux_sym_class_body_repeat1] = "class_body_repeat1", [aux_sym_formal_parameters_repeat1] = "formal_parameters_repeat1", [alias_sym_array_pattern] = "array_pattern", - [alias_sym_export_specifier] = "export_specifier", [alias_sym_import_specifier] = "import_specifier", [alias_sym_object_pattern] = "object_pattern", [alias_sym_property_identifier] = "property_identifier", @@ -504,8 +514,8 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_var] = anon_sym_var, [anon_sym_let] = anon_sym_let, [anon_sym_const] = anon_sym_const, - [anon_sym_if] = anon_sym_if, [anon_sym_else] = anon_sym_else, + [anon_sym_if] = anon_sym_if, [anon_sym_switch] = anon_sym_switch, [anon_sym_for] = anon_sym_for, [anon_sym_LPAREN] = anon_sym_LPAREN, @@ -542,6 +552,7 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_async] = anon_sym_async, [anon_sym_function] = anon_sym_function, [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [anon_sym_QMARK_DOT] = anon_sym_QMARK_DOT, [anon_sym_new] = anon_sym_new, [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, @@ -555,6 +566,9 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_GT_GT_GT_EQ] = anon_sym_GT_GT_GT_EQ, [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, + [anon_sym_AMP_AMP_EQ] = anon_sym_AMP_AMP_EQ, + [anon_sym_PIPE_PIPE_EQ] = anon_sym_PIPE_PIPE_EQ, + [anon_sym_QMARK_QMARK_EQ] = anon_sym_QMARK_QMARK_EQ, [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, [anon_sym_QMARK] = anon_sym_QMARK, [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, @@ -626,6 +640,7 @@ static TSSymbol ts_symbol_map[] = { [sym_lexical_declaration] = sym_lexical_declaration, [sym_variable_declarator] = sym_variable_declarator, [sym_statement_block] = sym_statement_block, + [sym_else_clause] = sym_else_clause, [sym_if_statement] = sym_if_statement, [sym_switch_statement] = sym_switch_statement, [sym_for_statement] = sym_for_statement, @@ -676,6 +691,7 @@ static TSSymbol ts_symbol_map[] = { [sym_member_expression] = sym_member_expression, [sym_subscript_expression] = sym_subscript_expression, [sym_assignment_expression] = sym_assignment_expression, + [sym__augmented_assignment_lhs] = sym__augmented_assignment_lhs, [sym_augmented_assignment_expression] = sym_augmented_assignment_expression, [sym__initializer] = sym__initializer, [sym_spread_element] = sym_spread_element, @@ -717,7 +733,6 @@ static TSSymbol ts_symbol_map[] = { [aux_sym_class_body_repeat1] = aux_sym_class_body_repeat1, [aux_sym_formal_parameters_repeat1] = aux_sym_formal_parameters_repeat1, [alias_sym_array_pattern] = alias_sym_array_pattern, - [alias_sym_export_specifier] = alias_sym_export_specifier, [alias_sym_import_specifier] = alias_sym_import_specifier, [alias_sym_object_pattern] = alias_sym_object_pattern, [alias_sym_property_identifier] = alias_sym_property_identifier, @@ -786,11 +801,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_if] = { + [anon_sym_else] = { .visible = true, .named = false, }, - [anon_sym_else] = { + [anon_sym_if] = { .visible = true, .named = false, }, @@ -938,6 +953,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_QMARK_DOT] = { + .visible = true, + .named = false, + }, [anon_sym_new] = { .visible = true, .named = false, @@ -990,6 +1009,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_AMP_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK_QMARK_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_DOT_DOT_DOT] = { .visible = true, .named = false, @@ -1223,12 +1254,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, }, [sym__import_export_specifier] = { - .visible = false, + .visible = true, .named = true, }, [sym__declaration] = { .visible = false, .named = true, + .supertype = true, }, [sym_import] = { .visible = true, @@ -1274,6 +1306,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, [sym_if_statement] = { .visible = true, .named = true, @@ -1365,6 +1401,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { [sym__expression] = { .visible = false, .named = true, + .supertype = true, }, [sym_yield_expression] = { .visible = true, @@ -1474,6 +1511,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__augmented_assignment_lhs] = { + .visible = false, + .named = true, + }, [sym_augmented_assignment_expression] = { .visible = true, .named = true, @@ -1638,10 +1679,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [alias_sym_export_specifier] = { - .visible = true, - .named = true, - }, [alias_sym_import_specifier] = { .visible = true, .named = true, @@ -1739,7 +1776,7 @@ static const char *ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[107] = { +static const TSFieldMapSlice ts_field_map_slices[111] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [5] = {.index = 2, .length = 1}, @@ -1750,16 +1787,16 @@ static const TSFieldMapSlice ts_field_map_slices[107] = { [10] = {.index = 4, .length = 1}, [11] = {.index = 5, .length = 2}, [12] = {.index = 7, .length = 2}, - [14] = {.index = 9, .length = 2}, - [15] = {.index = 11, .length = 2}, - [16] = {.index = 13, .length = 2}, - [18] = {.index = 15, .length = 1}, + [13] = {.index = 9, .length = 2}, + [14] = {.index = 11, .length = 2}, + [15] = {.index = 13, .length = 2}, + [17] = {.index = 15, .length = 1}, + [18] = {.index = 16, .length = 2}, [19] = {.index = 16, .length = 2}, [20] = {.index = 16, .length = 2}, - [21] = {.index = 16, .length = 2}, - [22] = {.index = 18, .length = 2}, - [23] = {.index = 20, .length = 2}, - [24] = {.index = 22, .length = 3}, + [21] = {.index = 18, .length = 2}, + [22] = {.index = 20, .length = 2}, + [23] = {.index = 22, .length = 3}, [27] = {.index = 25, .length = 2}, [28] = {.index = 27, .length = 2}, [29] = {.index = 29, .length = 2}, @@ -1778,68 +1815,72 @@ static const TSFieldMapSlice ts_field_map_slices[107] = { [42] = {.index = 47, .length = 2}, [43] = {.index = 49, .length = 2}, [44] = {.index = 51, .length = 2}, - [45] = {.index = 51, .length = 2}, - [46] = {.index = 43, .length = 2}, + [45] = {.index = 53, .length = 2}, + [46] = {.index = 53, .length = 2}, [47] = {.index = 45, .length = 2}, - [48] = {.index = 47, .length = 2}, - [49] = {.index = 7, .length = 2}, - [50] = {.index = 53, .length = 3}, - [51] = {.index = 43, .length = 2}, + [48] = {.index = 49, .length = 2}, + [49] = {.index = 43, .length = 2}, + [50] = {.index = 47, .length = 2}, + [51] = {.index = 55, .length = 3}, [52] = {.index = 43, .length = 2}, - [53] = {.index = 56, .length = 2}, + [53] = {.index = 43, .length = 2}, [54] = {.index = 58, .length = 2}, [55] = {.index = 60, .length = 2}, - [56] = {.index = 62, .length = 1}, - [57] = {.index = 63, .length = 1}, - [58] = {.index = 64, .length = 2}, + [56] = {.index = 62, .length = 2}, + [57] = {.index = 64, .length = 1}, + [58] = {.index = 65, .length = 1}, [59] = {.index = 43, .length = 2}, [60] = {.index = 66, .length = 2}, [61] = {.index = 68, .length = 3}, - [62] = {.index = 64, .length = 2}, - [63] = {.index = 71, .length = 1}, - [64] = {.index = 72, .length = 3}, - [65] = {.index = 75, .length = 3}, - [66] = {.index = 78, .length = 2}, - [67] = {.index = 80, .length = 2}, - [68] = {.index = 82, .length = 2}, - [69] = {.index = 84, .length = 1}, - [70] = {.index = 85, .length = 2}, - [71] = {.index = 87, .length = 1}, - [72] = {.index = 88, .length = 2}, - [73] = {.index = 90, .length = 2}, - [74] = {.index = 92, .length = 2}, - [75] = {.index = 94, .length = 2}, - [76] = {.index = 92, .length = 2}, - [77] = {.index = 96, .length = 2}, - [78] = {.index = 98, .length = 3}, - [79] = {.index = 101, .length = 2}, - [80] = {.index = 103, .length = 3}, - [81] = {.index = 106, .length = 2}, - [82] = {.index = 108, .length = 2}, - [83] = {.index = 110, .length = 3}, + [62] = {.index = 71, .length = 2}, + [63] = {.index = 73, .length = 1}, + [64] = {.index = 74, .length = 3}, + [65] = {.index = 77, .length = 3}, + [66] = {.index = 80, .length = 3}, + [67] = {.index = 83, .length = 2}, + [68] = {.index = 85, .length = 2}, + [69] = {.index = 87, .length = 2}, + [70] = {.index = 89, .length = 1}, + [71] = {.index = 90, .length = 2}, + [72] = {.index = 92, .length = 1}, + [73] = {.index = 93, .length = 2}, + [74] = {.index = 95, .length = 2}, + [75] = {.index = 97, .length = 2}, + [76] = {.index = 99, .length = 2}, + [77] = {.index = 101, .length = 2}, + [78] = {.index = 99, .length = 2}, + [79] = {.index = 103, .length = 2}, + [80] = {.index = 105, .length = 3}, + [81] = {.index = 97, .length = 2}, + [82] = {.index = 108, .length = 3}, + [83] = {.index = 111, .length = 2}, [84] = {.index = 113, .length = 2}, - [85] = {.index = 115, .length = 2}, - [86] = {.index = 117, .length = 2}, - [87] = {.index = 119, .length = 3}, - [88] = {.index = 122, .length = 3}, - [89] = {.index = 125, .length = 1}, - [90] = {.index = 126, .length = 2}, - [91] = {.index = 128, .length = 3}, - [92] = {.index = 131, .length = 2}, - [93] = {.index = 131, .length = 2}, - [94] = {.index = 133, .length = 3}, - [95] = {.index = 131, .length = 2}, - [96] = {.index = 131, .length = 2}, - [97] = {.index = 136, .length = 3}, - [98] = {.index = 139, .length = 2}, - [99] = {.index = 139, .length = 2}, - [100] = {.index = 139, .length = 2}, - [101] = {.index = 139, .length = 2}, - [102] = {.index = 141, .length = 4}, - [103] = {.index = 145, .length = 2}, - [104] = {.index = 145, .length = 2}, - [105] = {.index = 145, .length = 2}, - [106] = {.index = 147, .length = 4}, + [85] = {.index = 71, .length = 2}, + [86] = {.index = 115, .length = 2}, + [87] = {.index = 117, .length = 2}, + [88] = {.index = 119, .length = 2}, + [89] = {.index = 121, .length = 3}, + [90] = {.index = 124, .length = 2}, + [91] = {.index = 124, .length = 2}, + [92] = {.index = 126, .length = 3}, + [93] = {.index = 129, .length = 1}, + [94] = {.index = 130, .length = 2}, + [95] = {.index = 132, .length = 3}, + [96] = {.index = 135, .length = 2}, + [97] = {.index = 135, .length = 2}, + [98] = {.index = 137, .length = 3}, + [99] = {.index = 135, .length = 2}, + [100] = {.index = 135, .length = 2}, + [101] = {.index = 140, .length = 3}, + [102] = {.index = 143, .length = 2}, + [103] = {.index = 143, .length = 2}, + [104] = {.index = 143, .length = 2}, + [105] = {.index = 143, .length = 2}, + [106] = {.index = 145, .length = 4}, + [107] = {.index = 149, .length = 2}, + [108] = {.index = 149, .length = 2}, + [109] = {.index = 149, .length = 2}, + [110] = {.index = 151, .length = 4}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1857,11 +1898,11 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_argument, 1}, {field_operator, 0}, [7] = - {field_arguments, 1}, - {field_function, 0}, - [9] = {field_argument, 0}, {field_operator, 1}, + [9] = + {field_arguments, 1}, + {field_function, 0}, [11] = {field_close_tag, 1}, {field_open_tag, 0}, @@ -1924,31 +1965,31 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 2}, {field_parameter, 0}, [49] = + {field_arguments, 2}, + {field_function, 0}, + [51] = {field_body, 2}, {field_parameters, 1}, - [51] = + [53] = {field_arguments, 2}, {field_constructor, 1}, - [53] = + [55] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [56] = + [58] = {field_close_tag, 2}, {field_open_tag, 0}, - [58] = + [60] = {field_body, 2}, {field_parameters, 0}, - [60] = + [62] = {field_declaration, 2}, {field_decorator, 0, .inherited = true}, - [62] = + [64] = {field_source, 2, .inherited = true}, - [63] = + [65] = {field_value, 2}, - [64] = - {field_alias, 1, .inherited = true}, - {field_name, 1, .inherited = true}, [66] = {field_key, 0}, {field_value, 2}, @@ -1957,123 +1998,129 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 0}, {field_parameters, 1}, [71] = + {field_alias, 1, .inherited = true}, + {field_name, 1, .inherited = true}, + [73] = {field_value, 1}, - [72] = + [74] = + {field_alternative, 3}, + {field_condition, 1}, + {field_consequence, 2}, + [77] = {field_body, 3}, {field_left, 2, .inherited = true}, {field_right, 2, .inherited = true}, - [75] = + [80] = {field_body, 1}, {field_finalizer, 3}, {field_handler, 2}, - [78] = + [83] = {field_attribute, 2, .inherited = true}, {field_name, 1}, - [80] = + [85] = {field_attribute, 0, .inherited = true}, {field_attribute, 1, .inherited = true}, - [82] = + [87] = {field_flags, 3}, {field_pattern, 1}, - [84] = + [89] = {field_property, 1}, - [85] = + [90] = {field_property, 0}, {field_value, 1, .inherited = true}, - [87] = + [92] = {field_member, 1, .inherited = true}, - [88] = + [93] = {field_member, 0, .inherited = true}, {field_member, 1, .inherited = true}, - [90] = + [95] = {field_body, 3}, {field_name, 1}, - [92] = + [97] = + {field_index, 2}, + {field_object, 0}, + [99] = {field_body, 3}, {field_parameter, 1}, - [94] = + [101] = {field_body, 3}, {field_parameters, 2}, - [96] = + [103] = {field_body, 3}, {field_parameters, 1}, - [98] = + [105] = {field_body, 3}, {field_name, 1}, {field_parameters, 2}, - [101] = - {field_index, 2}, - {field_object, 0}, - [103] = + [108] = {field_body, 3}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [106] = + [111] = {field_body, 3}, {field_decorator, 0, .inherited = true}, - [108] = + [113] = {field_alias, 2}, {field_name, 0}, - [110] = - {field_alternative, 4}, - {field_condition, 1}, - {field_consequence, 2}, - [113] = + [115] = {field_body, 1}, {field_condition, 3}, - [115] = + [117] = {field_property, 1}, {field_value, 2, .inherited = true}, - [117] = + [119] = {field_body, 4}, {field_parameters, 3}, - [119] = + [121] = {field_body, 4}, {field_name, 2}, {field_parameters, 3}, - [122] = + [124] = + {field_index, 3}, + {field_object, 0}, + [126] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [125] = + [129] = {field_name, 2}, - [126] = + [130] = {field_decorator, 0, .inherited = true}, {field_value, 3}, - [128] = + [132] = {field_body, 4}, {field_decorator, 0, .inherited = true}, {field_name, 2}, - [131] = + [135] = {field_left, 1}, {field_right, 3}, - [133] = + [137] = {field_body, 5}, {field_condition, 3}, {field_initializer, 2}, - [136] = + [140] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [139] = + [143] = {field_left, 2}, {field_right, 4}, - [141] = + [145] = {field_body, 6}, {field_condition, 3}, {field_increment, 4}, {field_initializer, 2}, - [145] = + [149] = {field_body, 4}, {field_parameter, 2}, - [147] = + [151] = {field_body, 6}, {field_decorator, 0, .inherited = true}, {field_name, 4}, {field_parameters, 5}, }; -static TSSymbol ts_alias_sequences[107][MAX_ALIAS_SEQUENCE_LENGTH] = { +static TSSymbol ts_alias_sequences[111][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, [1] = { [0] = sym_identifier, @@ -2090,18 +2137,18 @@ static TSSymbol ts_alias_sequences[107][MAX_ALIAS_SEQUENCE_LENGTH] = { [9] = { [1] = sym_identifier, }, - [13] = { - [1] = sym_identifier, - }, - [17] = { + [16] = { [1] = alias_sym_shorthand_property_identifier, }, - [20] = { + [19] = { [0] = alias_sym_object_pattern, }, - [21] = { + [20] = { [0] = alias_sym_array_pattern, }, + [24] = { + [1] = sym_identifier, + }, [25] = { [1] = alias_sym_object_pattern, }, @@ -2124,59 +2171,75 @@ static TSSymbol ts_alias_sequences[107][MAX_ALIAS_SEQUENCE_LENGTH] = { [42] = { [0] = sym_identifier, }, - [44] = { + [43] = { + [0] = sym_identifier, + }, + [45] = { [1] = sym_identifier, }, [47] = { [2] = alias_sym_property_identifier, }, - [49] = { - [0] = sym_identifier, - }, - [51] = { + [52] = { [0] = alias_sym_object_pattern, }, - [52] = { + [53] = { [0] = alias_sym_array_pattern, }, - [58] = { - [1] = alias_sym_export_specifier, - }, [59] = { [0] = alias_sym_shorthand_property_identifier, }, [62] = { [1] = alias_sym_import_specifier, }, - [74] = { + [75] = { + [0] = sym_identifier, + }, + [76] = { [1] = sym_identifier, }, - [92] = { + [90] = { + [0] = sym_identifier, + }, + [96] = { [1] = sym_identifier, }, - [95] = { + [99] = { [1] = alias_sym_object_pattern, }, - [96] = { + [100] = { [1] = alias_sym_array_pattern, }, - [98] = { + [102] = { [2] = sym_identifier, }, - [100] = { + [104] = { [2] = alias_sym_object_pattern, }, - [101] = { + [105] = { [2] = alias_sym_array_pattern, }, - [104] = { + [108] = { [2] = alias_sym_object_pattern, }, - [105] = { + [109] = { [2] = alias_sym_array_pattern, }, }; +static uint16_t ts_non_terminal_alias_map[] = { + sym__import_export_specifier, 2, + sym__import_export_specifier, + alias_sym_import_specifier, + sym_object, 2, + sym_object, + alias_sym_object_pattern, + sym_array, 2, + sym_array, + alias_sym_array_pattern, + 0, +}; + static inline bool sym_identifier_character_set_1(int32_t lookahead) { return lookahead == 0 || @@ -2198,38 +2261,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(62); - if (lookahead == '!') ADVANCE(141); - if (lookahead == '"') ADVANCE(145); + if (lookahead == '!') ADVANCE(149); + if (lookahead == '"') ADVANCE(153); if (lookahead == '#') ADVANCE(1); - if (lookahead == '$') ADVANCE(185); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '\'') ADVANCE(152); + if (lookahead == '$') ADVANCE(193); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(126); + if (lookahead == '\'') ADVANCE(160); if (lookahead == '(') ADVANCE(70); if (lookahead == ')') ADVANCE(71); if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(126); + if (lookahead == '+') ADVANCE(133); if (lookahead == ',') ADVANCE(68); - if (lookahead == '-') ADVANCE(128); + if (lookahead == '-') ADVANCE(135); if (lookahead == '.') ADVANCE(94); - if (lookahead == '/') ADVANCE(170); - if (lookahead == '0') ADVANCE(175); + if (lookahead == '/') ADVANCE(178); + if (lookahead == '0') ADVANCE(183); if (lookahead == ':') ADVANCE(73); if (lookahead == ';') ADVANCE(72); if (lookahead == '<') ADVANCE(80); if (lookahead == '=') ADVANCE(75); if (lookahead == '>') ADVANCE(83); - if (lookahead == '?') ADVANCE(110); - if (lookahead == '@') ADVANCE(187); + if (lookahead == '?') ADVANCE(114); + if (lookahead == '@') ADVANCE(195); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') ADVANCE(27); if (lookahead == ']') ADVANCE(78); - if (lookahead == '^') ADVANCE(122); - if (lookahead == '`') ADVANCE(168); + if (lookahead == '^') ADVANCE(129); + if (lookahead == '`') ADVANCE(176); if (lookahead == '{') ADVANCE(67); - if (lookahead == '|') ADVANCE(123); + if (lookahead == '|') ADVANCE(130); if (lookahead == '}') ADVANCE(69); - if (lookahead == '~') ADVANCE(142); + if (lookahead == '~') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2238,23 +2301,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(59) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); if (lookahead != 0 && - (lookahead < 0 || 31 < lookahead)) ADVANCE(186); + (lookahead < 0 || 31 < lookahead)) ADVANCE(194); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(188); + if (lookahead == '\n') ADVANCE(196); if (lookahead == '!') ADVANCE(63); if (lookahead != 0) ADVANCE(2); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(188); + if (lookahead == '\n') ADVANCE(196); if (lookahead != 0) ADVANCE(2); END_STATE(); case 3: - if (lookahead == '\n') SKIP(12) - if (lookahead == '"') ADVANCE(145); - if (lookahead == '/') ADVANCE(147); + if (lookahead == '\n') SKIP(15) + if (lookahead == '\'') ADVANCE(160); + if (lookahead == '/') ADVANCE(162); if (lookahead == '\\') ADVANCE(4); if (lookahead == '\t' || lookahead == '\r' || @@ -2262,21 +2325,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(150); - if (lookahead != 0) ADVANCE(151); + lookahead == 65279) ADVANCE(165); + if (lookahead != 0) ADVANCE(166); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(146); - if (lookahead == '\r') ADVANCE(160); + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '\r') ADVANCE(168); if (lookahead == 'u') ADVANCE(33); if (lookahead == 'x') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(164); - if (lookahead != 0) ADVANCE(159); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(172); + if (lookahead != 0) ADVANCE(167); END_STATE(); case 5: - if (lookahead == '\n') SKIP(15) - if (lookahead == '\'') ADVANCE(152); - if (lookahead == '/') ADVANCE(154); + if (lookahead == '\n') SKIP(12) + if (lookahead == '"') ADVANCE(153); + if (lookahead == '/') ADVANCE(155); if (lookahead == '\\') ADVANCE(6); if (lookahead == '\t' || lookahead == '\r' || @@ -2284,16 +2347,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(157); - if (lookahead != 0) ADVANCE(158); + lookahead == 65279) ADVANCE(158); + if (lookahead != 0) ADVANCE(159); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(153); - if (lookahead == '\r') ADVANCE(161); + if (lookahead == '\n') ADVANCE(154); + if (lookahead == '\r') ADVANCE(169); if (lookahead == 'u') ADVANCE(33); if (lookahead == 'x') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(164); - if (lookahead != 0) ADVANCE(159); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(172); + if (lookahead != 0) ADVANCE(167); END_STATE(); case 7: if (lookahead == '\n') SKIP(23) @@ -2306,28 +2369,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(171); - if (lookahead != 0) ADVANCE(172); + lookahead == 65279) ADVANCE(179); + if (lookahead != 0) ADVANCE(180); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(140); - if (lookahead == '"') ADVANCE(145); - if (lookahead == '\'') ADVANCE(152); + if (lookahead == '!') ADVANCE(148); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '\'') ADVANCE(160); if (lookahead == '(') ADVANCE(70); - if (lookahead == '+') ADVANCE(125); - if (lookahead == '-') ADVANCE(127); + if (lookahead == '+') ADVANCE(132); + if (lookahead == '-') ADVANCE(134); if (lookahead == '.') ADVANCE(95); if (lookahead == '/') ADVANCE(85); - if (lookahead == '0') ADVANCE(175); + if (lookahead == '0') ADVANCE(183); if (lookahead == ':') ADVANCE(73); if (lookahead == '<') ADVANCE(79); if (lookahead == '>') ADVANCE(82); - if (lookahead == '@') ADVANCE(187); + if (lookahead == '@') ADVANCE(195); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') ADVANCE(28); - if (lookahead == '`') ADVANCE(168); + if (lookahead == '`') ADVANCE(176); if (lookahead == '{') ADVANCE(67); - if (lookahead == '~') ADVANCE(142); + if (lookahead == '~') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2336,43 +2399,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '%' || '?' < lookahead) && lookahead != ']' && lookahead != '^' && lookahead != '|' && - lookahead != '}') ADVANCE(186); + lookahead != '}') ADVANCE(194); END_STATE(); case 9: if (lookahead == '!') ADVANCE(24); - if (lookahead == '"') ADVANCE(145); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '\'') ADVANCE(152); + if (lookahead == '"') ADVANCE(153); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(126); + if (lookahead == '\'') ADVANCE(160); if (lookahead == '(') ADVANCE(70); if (lookahead == ')') ADVANCE(71); if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(126); + if (lookahead == '+') ADVANCE(133); if (lookahead == ',') ADVANCE(68); - if (lookahead == '-') ADVANCE(128); + if (lookahead == '-') ADVANCE(135); if (lookahead == '.') ADVANCE(95); if (lookahead == '/') ADVANCE(86); - if (lookahead == '0') ADVANCE(175); + if (lookahead == '0') ADVANCE(183); if (lookahead == ':') ADVANCE(73); if (lookahead == ';') ADVANCE(72); if (lookahead == '<') ADVANCE(80); if (lookahead == '=') ADVANCE(75); if (lookahead == '>') ADVANCE(83); - if (lookahead == '?') ADVANCE(110); + if (lookahead == '?') ADVANCE(114); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') ADVANCE(28); if (lookahead == ']') ADVANCE(78); - if (lookahead == '^') ADVANCE(122); - if (lookahead == '`') ADVANCE(168); + if (lookahead == '^') ADVANCE(129); + if (lookahead == '`') ADVANCE(176); if (lookahead == '{') ADVANCE(67); - if (lookahead == '|') ADVANCE(123); + if (lookahead == '|') ADVANCE(130); if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || @@ -2382,22 +2445,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(9) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && lookahead != '@' && - lookahead != '~') ADVANCE(186); + lookahead != '~') ADVANCE(194); END_STATE(); case 10: if (lookahead == '!') ADVANCE(24); - if (lookahead == '%') ADVANCE(129); - if (lookahead == '&') ADVANCE(119); + if (lookahead == '%') ADVANCE(136); + if (lookahead == '&') ADVANCE(127); if (lookahead == '(') ADVANCE(70); if (lookahead == ')') ADVANCE(71); if (lookahead == '*') ADVANCE(66); - if (lookahead == '+') ADVANCE(125); + if (lookahead == '+') ADVANCE(132); if (lookahead == ',') ADVANCE(68); - if (lookahead == '-') ADVANCE(127); + if (lookahead == '-') ADVANCE(134); if (lookahead == '.') ADVANCE(93); if (lookahead == '/') ADVANCE(85); if (lookahead == ':') ADVANCE(73); @@ -2405,14 +2468,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(81); if (lookahead == '=') ADVANCE(25); if (lookahead == '>') ADVANCE(84); - if (lookahead == '?') ADVANCE(110); + if (lookahead == '?') ADVANCE(115); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') ADVANCE(28); if (lookahead == ']') ADVANCE(78); - if (lookahead == '^') ADVANCE(121); - if (lookahead == '`') ADVANCE(168); + if (lookahead == '^') ADVANCE(128); + if (lookahead == '`') ADVANCE(176); if (lookahead == '{') ADVANCE(67); - if (lookahead == '|') ADVANCE(124); + if (lookahead == '|') ADVANCE(131); if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || @@ -2422,22 +2485,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(11) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(186); + lookahead != '~') ADVANCE(194); END_STATE(); case 11: if (lookahead == '!') ADVANCE(24); - if (lookahead == '%') ADVANCE(129); - if (lookahead == '&') ADVANCE(119); + if (lookahead == '%') ADVANCE(136); + if (lookahead == '&') ADVANCE(127); if (lookahead == '(') ADVANCE(70); if (lookahead == ')') ADVANCE(71); if (lookahead == '*') ADVANCE(66); - if (lookahead == '+') ADVANCE(125); + if (lookahead == '+') ADVANCE(132); if (lookahead == ',') ADVANCE(68); - if (lookahead == '-') ADVANCE(127); + if (lookahead == '-') ADVANCE(134); if (lookahead == '.') ADVANCE(93); if (lookahead == '/') ADVANCE(85); if (lookahead == ':') ADVANCE(73); @@ -2445,14 +2508,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(81); if (lookahead == '=') ADVANCE(25); if (lookahead == '>') ADVANCE(84); - if (lookahead == '?') ADVANCE(110); + if (lookahead == '?') ADVANCE(115); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') ADVANCE(28); if (lookahead == ']') ADVANCE(78); - if (lookahead == '^') ADVANCE(121); - if (lookahead == '`') ADVANCE(168); + if (lookahead == '^') ADVANCE(128); + if (lookahead == '`') ADVANCE(176); if (lookahead == '{') ADVANCE(67); - if (lookahead == '|') ADVANCE(124); + if (lookahead == '|') ADVANCE(131); if (lookahead == '}') ADVANCE(69); if (lookahead == '\t' || lookahead == '\n' || @@ -2465,10 +2528,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(186); + lookahead != '~') ADVANCE(194); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(145); + if (lookahead == '"') ADVANCE(153); if (lookahead == '/') ADVANCE(16); if (lookahead == '\t' || lookahead == '\n' || @@ -2481,9 +2544,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 13: if (lookahead == '$') ADVANCE(30); - if (lookahead == '/') ADVANCE(170); + if (lookahead == '/') ADVANCE(178); if (lookahead == '\\') ADVANCE(29); - if (lookahead == '`') ADVANCE(168); + if (lookahead == '`') ADVANCE(176); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2496,7 +2559,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 14: if (lookahead == '$') ADVANCE(30); if (lookahead == '/') ADVANCE(16); - if (lookahead == '`') ADVANCE(168); + if (lookahead == '`') ADVANCE(176); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2507,7 +2570,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(14) END_STATE(); case 15: - if (lookahead == '\'') ADVANCE(152); + if (lookahead == '\'') ADVANCE(160); if (lookahead == '/') ADVANCE(16); if (lookahead == '\t' || lookahead == '\n' || @@ -2520,11 +2583,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 16: if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(167); + if (lookahead == '/') ADVANCE(175); END_STATE(); case 17: if (lookahead == '*') ADVANCE(17); - if (lookahead == '/') ADVANCE(165); + if (lookahead == '/') ADVANCE(173); if (lookahead != 0) ADVANCE(18); END_STATE(); case 18: @@ -2533,10 +2596,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 19: if (lookahead == '.') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(109); + if (lookahead == '.') ADVANCE(113); END_STATE(); case 21: if (lookahead == '.') ADVANCE(93); @@ -2557,9 +2620,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); if (lookahead != 0 && - (lookahead < 0 || '~' < lookahead)) ADVANCE(186); + (lookahead < 0 || '~' < lookahead)) ADVANCE(194); END_STATE(); case 22: if (lookahead == '/') ADVANCE(87); @@ -2589,22 +2652,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(23) END_STATE(); case 24: - if (lookahead == '=') ADVANCE(136); + if (lookahead == '=') ADVANCE(143); END_STATE(); case 25: - if (lookahead == '=') ADVANCE(134); + if (lookahead == '=') ADVANCE(141); END_STATE(); case 26: if (lookahead == '\\') ADVANCE(57); - if (lookahead == ']') ADVANCE(172); + if (lookahead == ']') ADVANCE(180); if (lookahead != 0 && lookahead != '\n') ADVANCE(26); END_STATE(); case 27: if (lookahead == 'u') ADVANCE(31); if (lookahead == 'x') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(164); - if (lookahead != 0) ADVANCE(159); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(172); + if (lookahead != 0) ADVANCE(167); END_STATE(); case 28: if (lookahead == 'u') ADVANCE(32); @@ -2612,11 +2675,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 29: if (lookahead == 'u') ADVANCE(33); if (lookahead == 'x') ADVANCE(52); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(164); - if (lookahead != 0) ADVANCE(159); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(172); + if (lookahead != 0) ADVANCE(167); END_STATE(); case 30: - if (lookahead == '{') ADVANCE(169); + if (lookahead == '{') ADVANCE(177); END_STATE(); case 31: if (lookahead == '{') ADVANCE(47); @@ -2637,19 +2700,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(49); END_STATE(); case 34: - if (lookahead == '}') ADVANCE(186); + if (lookahead == '}') ADVANCE(194); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(34); END_STATE(); case 35: - if (lookahead == '}') ADVANCE(159); + if (lookahead == '}') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(35); END_STATE(); case 36: - if (lookahead == '}') ADVANCE(162); + if (lookahead == '}') ADVANCE(170); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); @@ -2657,41 +2720,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 37: if (lookahead == '+' || lookahead == '-') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); END_STATE(); case 38: if (lookahead == '0' || - lookahead == '1') ADVANCE(177); + lookahead == '1') ADVANCE(185); END_STATE(); case 39: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(178); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(186); END_STATE(); case 40: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); END_STATE(); case 41: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); END_STATE(); case 42: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(188); END_STATE(); case 43: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); END_STATE(); case 44: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(186); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(194); END_STATE(); case 45: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(159); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(167); END_STATE(); case 46: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(179); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); END_STATE(); case 47: if (('0' <= lookahead && lookahead <= '9') || @@ -2701,7 +2764,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 48: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(162); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(170); END_STATE(); case 49: if (('0' <= lookahead && lookahead <= '9') || @@ -2749,42 +2812,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 58: if (lookahead != 0 && - lookahead != '\n') ADVANCE(172); + lookahead != '\n') ADVANCE(180); END_STATE(); case 59: if (eof) ADVANCE(62); - if (lookahead == '!') ADVANCE(141); - if (lookahead == '"') ADVANCE(145); + if (lookahead == '!') ADVANCE(149); + if (lookahead == '"') ADVANCE(153); if (lookahead == '#') ADVANCE(1); - if (lookahead == '$') ADVANCE(185); - if (lookahead == '%') ADVANCE(130); - if (lookahead == '&') ADVANCE(120); - if (lookahead == '\'') ADVANCE(152); + if (lookahead == '$') ADVANCE(193); + if (lookahead == '%') ADVANCE(137); + if (lookahead == '&') ADVANCE(126); + if (lookahead == '\'') ADVANCE(160); if (lookahead == '(') ADVANCE(70); if (lookahead == ')') ADVANCE(71); if (lookahead == '*') ADVANCE(65); - if (lookahead == '+') ADVANCE(126); + if (lookahead == '+') ADVANCE(133); if (lookahead == ',') ADVANCE(68); - if (lookahead == '-') ADVANCE(128); + if (lookahead == '-') ADVANCE(135); if (lookahead == '.') ADVANCE(94); if (lookahead == '/') ADVANCE(85); - if (lookahead == '0') ADVANCE(175); + if (lookahead == '0') ADVANCE(183); if (lookahead == ':') ADVANCE(73); if (lookahead == ';') ADVANCE(72); if (lookahead == '<') ADVANCE(80); if (lookahead == '=') ADVANCE(75); if (lookahead == '>') ADVANCE(83); - if (lookahead == '?') ADVANCE(110); - if (lookahead == '@') ADVANCE(187); + if (lookahead == '?') ADVANCE(114); + if (lookahead == '@') ADVANCE(195); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') ADVANCE(28); if (lookahead == ']') ADVANCE(78); - if (lookahead == '^') ADVANCE(122); - if (lookahead == '`') ADVANCE(168); + if (lookahead == '^') ADVANCE(129); + if (lookahead == '`') ADVANCE(176); if (lookahead == '{') ADVANCE(67); - if (lookahead == '|') ADVANCE(123); + if (lookahead == '|') ADVANCE(130); if (lookahead == '}') ADVANCE(69); - if (lookahead == '~') ADVANCE(142); + if (lookahead == '~') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2793,43 +2856,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(59) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); if (lookahead != 0 && - (lookahead < 0 || 31 < lookahead)) ADVANCE(186); + (lookahead < 0 || 31 < lookahead)) ADVANCE(194); END_STATE(); case 60: if (eof) ADVANCE(62); - if (lookahead == '!') ADVANCE(141); - if (lookahead == '"') ADVANCE(145); + if (lookahead == '!') ADVANCE(149); + if (lookahead == '"') ADVANCE(153); if (lookahead == '#') ADVANCE(2); - if (lookahead == '%') ADVANCE(129); - if (lookahead == '&') ADVANCE(119); - if (lookahead == '\'') ADVANCE(152); + if (lookahead == '%') ADVANCE(136); + if (lookahead == '&') ADVANCE(127); + if (lookahead == '\'') ADVANCE(160); if (lookahead == '(') ADVANCE(70); if (lookahead == ')') ADVANCE(71); if (lookahead == '*') ADVANCE(66); - if (lookahead == '+') ADVANCE(125); + if (lookahead == '+') ADVANCE(132); if (lookahead == ',') ADVANCE(68); - if (lookahead == '-') ADVANCE(127); + if (lookahead == '-') ADVANCE(134); if (lookahead == '.') ADVANCE(95); if (lookahead == '/') ADVANCE(85); - if (lookahead == '0') ADVANCE(175); + if (lookahead == '0') ADVANCE(183); if (lookahead == ':') ADVANCE(73); if (lookahead == ';') ADVANCE(72); if (lookahead == '<') ADVANCE(81); if (lookahead == '=') ADVANCE(75); if (lookahead == '>') ADVANCE(84); - if (lookahead == '?') ADVANCE(110); - if (lookahead == '@') ADVANCE(187); + if (lookahead == '?') ADVANCE(115); + if (lookahead == '@') ADVANCE(195); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') ADVANCE(28); if (lookahead == ']') ADVANCE(78); - if (lookahead == '^') ADVANCE(121); - if (lookahead == '`') ADVANCE(168); + if (lookahead == '^') ADVANCE(128); + if (lookahead == '`') ADVANCE(176); if (lookahead == '{') ADVANCE(67); - if (lookahead == '|') ADVANCE(124); + if (lookahead == '|') ADVANCE(131); if (lookahead == '}') ADVANCE(69); - if (lookahead == '~') ADVANCE(142); + if (lookahead == '~') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2838,38 +2901,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(60) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); if (lookahead != 0 && - (lookahead < 0 || 31 < lookahead)) ADVANCE(186); + (lookahead < 0 || 31 < lookahead)) ADVANCE(194); END_STATE(); case 61: if (eof) ADVANCE(62); - if (lookahead == '!') ADVANCE(140); - if (lookahead == '"') ADVANCE(145); + if (lookahead == '!') ADVANCE(148); + if (lookahead == '"') ADVANCE(153); if (lookahead == '#') ADVANCE(1); - if (lookahead == '\'') ADVANCE(152); + if (lookahead == '\'') ADVANCE(160); if (lookahead == '(') ADVANCE(70); if (lookahead == ')') ADVANCE(71); if (lookahead == '*') ADVANCE(64); - if (lookahead == '+') ADVANCE(125); + if (lookahead == '+') ADVANCE(132); if (lookahead == ',') ADVANCE(68); - if (lookahead == '-') ADVANCE(127); + if (lookahead == '-') ADVANCE(134); if (lookahead == '.') ADVANCE(19); if (lookahead == '/') ADVANCE(85); - if (lookahead == '0') ADVANCE(175); + if (lookahead == '0') ADVANCE(183); if (lookahead == ':') ADVANCE(73); if (lookahead == ';') ADVANCE(72); if (lookahead == '<') ADVANCE(79); if (lookahead == '=') ADVANCE(76); if (lookahead == '>') ADVANCE(82); - if (lookahead == '@') ADVANCE(187); + if (lookahead == '@') ADVANCE(195); if (lookahead == '[') ADVANCE(77); if (lookahead == '\\') ADVANCE(28); if (lookahead == ']') ADVANCE(78); - if (lookahead == '`') ADVANCE(168); + if (lookahead == '`') ADVANCE(176); if (lookahead == '{') ADVANCE(67); if (lookahead == '}') ADVANCE(69); - if (lookahead == '~') ADVANCE(142); + if (lookahead == '~') ADVANCE(150); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2878,19 +2941,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 8203 || lookahead == 8288 || lookahead == 65279) SKIP(61) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); if (lookahead != 0 && (lookahead < 0 || 31 < lookahead) && (lookahead < '%' || '?' < lookahead) && lookahead != '^' && - lookahead != '|') ADVANCE(186); + lookahead != '|') ADVANCE(194); END_STATE(); case 62: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 63: ACCEPT_TOKEN(sym_hash_bang_line); - if (lookahead == '\n') ADVANCE(188); + if (lookahead == '\n') ADVANCE(196); if (lookahead != 0) ADVANCE(63); END_STATE(); case 64: @@ -2898,12 +2961,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 65: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(132); - if (lookahead == '=') ADVANCE(99); + if (lookahead == '*') ADVANCE(139); + if (lookahead == '=') ADVANCE(100); END_STATE(); case 66: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(131); + if (lookahead == '*') ADVANCE(138); END_STATE(); case 67: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -2931,7 +2994,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 75: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(134); + if (lookahead == '=') ADVANCE(141); if (lookahead == '>') ADVANCE(96); END_STATE(); case 76: @@ -2949,42 +3012,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 80: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(118); - if (lookahead == '=') ADVANCE(133); + if (lookahead == '<') ADVANCE(125); + if (lookahead == '=') ADVANCE(140); END_STATE(); case 81: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(117); - if (lookahead == '=') ADVANCE(133); + if (lookahead == '<') ADVANCE(124); + if (lookahead == '=') ADVANCE(140); END_STATE(); case 82: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 83: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(113); + if (lookahead == '=') ADVANCE(145); + if (lookahead == '>') ADVANCE(120); END_STATE(); case 84: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(114); + if (lookahead == '=') ADVANCE(145); + if (lookahead == '>') ADVANCE(121); END_STATE(); case 85: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(167); + if (lookahead == '/') ADVANCE(175); END_STATE(); case 86: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(167); - if (lookahead == '=') ADVANCE(100); + if (lookahead == '/') ADVANCE(175); + if (lookahead == '=') ADVANCE(101); END_STATE(); case 87: ACCEPT_TOKEN(sym_jsx_text); if (lookahead == '*') ADVANCE(89); - if (lookahead == '/') ADVANCE(166); + if (lookahead == '/') ADVANCE(174); if (lookahead != 0 && lookahead != '<' && lookahead != '>' && @@ -2994,7 +3057,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 88: ACCEPT_TOKEN(sym_jsx_text); if (lookahead == '*') ADVANCE(88); - if (lookahead == '/') ADVANCE(165); + if (lookahead == '/') ADVANCE(173); if (lookahead == '<' || lookahead == '>' || lookahead == '{' || @@ -3050,344 +3113,374 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 94: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); END_STATE(); case 95: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); END_STATE(); case 96: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 97: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_QMARK_DOT); END_STATE(); case 98: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 101: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 102: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(139); + ACCEPT_TOKEN(anon_sym_AMP_AMP_EQ); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_EQ); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(105); - if (lookahead == '>') ADVANCE(116); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(97); + if (lookahead == '?') ADVANCE(147); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '.') ADVANCE(97); + if (lookahead == '?') ADVANCE(146); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(106); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '=') ADVANCE(110); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(107); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(111); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '=') ADVANCE(111); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(111); - if (lookahead == '=') ADVANCE(103); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(106); + if (lookahead == '>') ADVANCE(123); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '>') ADVANCE(122); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(104); - if (lookahead == '|') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == '=') ADVANCE(107); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(108); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(143); - if (lookahead == '=') ADVANCE(97); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(117); + if (lookahead == '=') ADVANCE(104); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(144); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(116); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(144); - if (lookahead == '=') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(103); END_STATE(); case 130: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(101); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(105); + if (lookahead == '|') ADVANCE(119); END_STATE(); case 131: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(118); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(108); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(151); END_STATE(); case 133: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(151); + if (lookahead == '=') ADVANCE(98); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(135); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(152); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(152); + if (lookahead == '=') ADVANCE(99); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(102); END_STATE(); case 138: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 139: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(109); END_STATE(); case 140: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(142); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(144); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 146: - ACCEPT_TOKEN(aux_sym_string_token1); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); case 147: + ACCEPT_TOKEN(anon_sym_QMARK_QMARK); + if (lookahead == '=') ADVANCE(112); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(143); + END_STATE(); + case 150: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 154: + ACCEPT_TOKEN(aux_sym_string_token1); + END_STATE(); + case 155: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '*') ADVANCE(149); - if (lookahead == '/') ADVANCE(151); + if (lookahead == '*') ADVANCE(157); + if (lookahead == '/') ADVANCE(159); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(151); + lookahead != '\\') ADVANCE(159); END_STATE(); - case 148: + case 156: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '*') ADVANCE(148); - if (lookahead == '/') ADVANCE(151); + if (lookahead == '*') ADVANCE(156); + if (lookahead == '/') ADVANCE(159); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(149); + lookahead != '\\') ADVANCE(157); END_STATE(); - case 149: + case 157: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '*') ADVANCE(148); + if (lookahead == '*') ADVANCE(156); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(149); + lookahead != '\\') ADVANCE(157); END_STATE(); - case 150: + case 158: ACCEPT_TOKEN(aux_sym_string_token1); - if (lookahead == '/') ADVANCE(147); + if (lookahead == '/') ADVANCE(155); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(150); + lookahead == 65279) ADVANCE(158); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(151); + lookahead != '\\') ADVANCE(159); END_STATE(); - case 151: + case 159: ACCEPT_TOKEN(aux_sym_string_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(151); + lookahead != '\\') ADVANCE(159); END_STATE(); - case 152: + case 160: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 153: + case 161: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 154: + case 162: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '/') ADVANCE(158); + if (lookahead == '*') ADVANCE(164); + if (lookahead == '/') ADVANCE(166); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'' && - lookahead != '\\') ADVANCE(158); + lookahead != '\\') ADVANCE(166); END_STATE(); - case 155: + case 163: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(155); - if (lookahead == '/') ADVANCE(158); + if (lookahead == '*') ADVANCE(163); + if (lookahead == '/') ADVANCE(166); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'' && - lookahead != '\\') ADVANCE(156); + lookahead != '\\') ADVANCE(164); END_STATE(); - case 156: + case 164: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(155); + if (lookahead == '*') ADVANCE(163); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'' && - lookahead != '\\') ADVANCE(156); + lookahead != '\\') ADVANCE(164); END_STATE(); - case 157: + case 165: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '/') ADVANCE(154); + if (lookahead == '/') ADVANCE(162); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ' || lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(157); + lookahead == 65279) ADVANCE(165); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'' && - lookahead != '\\') ADVANCE(158); + lookahead != '\\') ADVANCE(166); END_STATE(); - case 158: + case 166: ACCEPT_TOKEN(aux_sym_string_token2); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'' && - lookahead != '\\') ADVANCE(158); + lookahead != '\\') ADVANCE(166); END_STATE(); - case 159: + case 167: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 160: + case 168: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\n') ADVANCE(146); + if (lookahead == '\n') ADVANCE(161); END_STATE(); - case 161: + case 169: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\n') ADVANCE(153); + if (lookahead == '\n') ADVANCE(154); END_STATE(); - case 162: + case 170: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\\') ADVANCE(28); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(186); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(194); END_STATE(); - case 163: + case 171: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(159); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(167); END_STATE(); - case 164: + case 172: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(163); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(171); END_STATE(); - case 165: + case 173: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 166: + case 174: ACCEPT_TOKEN(sym_comment); if (lookahead == '<' || lookahead == '>' || lookahead == '{' || - lookahead == '}') ADVANCE(167); + lookahead == '}') ADVANCE(175); if (lookahead != 0 && - lookahead != '\n') ADVANCE(166); + lookahead != '\n') ADVANCE(174); END_STATE(); - case 167: + case 175: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(167); + lookahead != '\n') ADVANCE(175); END_STATE(); - case 168: + case 176: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 169: + case 177: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 170: + case 178: ACCEPT_TOKEN(anon_sym_SLASH2); if (lookahead == '*') ADVANCE(18); - if (lookahead == '/') ADVANCE(167); + if (lookahead == '/') ADVANCE(175); END_STATE(); - case 171: + case 179: ACCEPT_TOKEN(sym_regex_pattern); if (lookahead == '/') ADVANCE(16); if (lookahead == '[') ADVANCE(26); @@ -3398,22 +3491,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 160 || lookahead == 8203 || lookahead == 8288 || - lookahead == 65279) ADVANCE(171); + lookahead == 65279) ADVANCE(179); if (lookahead != 0 && - lookahead != '\n') ADVANCE(172); + lookahead != '\n') ADVANCE(180); END_STATE(); - case 172: + case 180: ACCEPT_TOKEN(sym_regex_pattern); if (lookahead == '[') ADVANCE(26); if (lookahead == '\\') ADVANCE(58); if (lookahead != 0 && lookahead != '\n' && - lookahead != '/') ADVANCE(172); + lookahead != '/') ADVANCE(180); END_STATE(); - case 173: + case 181: ACCEPT_TOKEN(sym_regex_flags); if (lookahead == '\\') ADVANCE(28); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(173); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(181); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '%' || '/' < lookahead) && @@ -3423,15 +3516,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != 160 && lookahead != 8203 && lookahead != 8288 && - lookahead != 65279) ADVANCE(186); + lookahead != 65279) ADVANCE(194); END_STATE(); - case 174: + case 182: ACCEPT_TOKEN(sym_number); END_STATE(); - case 175: + case 183: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(183); - if (lookahead == '0') ADVANCE(180); + if (lookahead == '.') ADVANCE(191); + if (lookahead == '0') ADVANCE(188); if (lookahead == 'B' || lookahead == 'b') ADVANCE(38); if (lookahead == 'E' || @@ -3441,64 +3534,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'X' || lookahead == 'x') ADVANCE(46); if (lookahead == '_') ADVANCE(42); - if (lookahead == 'n') ADVANCE(174); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (lookahead == 'n') ADVANCE(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(184); END_STATE(); - case 176: + case 184: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(183); + if (lookahead == '.') ADVANCE(191); if (lookahead == 'E' || lookahead == 'e') ADVANCE(37); if (lookahead == '_') ADVANCE(40); - if (lookahead == 'n') ADVANCE(174); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(176); + if (lookahead == 'n') ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); END_STATE(); - case 177: + case 185: ACCEPT_TOKEN(sym_number); if (lookahead == '_') ADVANCE(38); - if (lookahead == 'n') ADVANCE(174); + if (lookahead == 'n') ADVANCE(182); if (lookahead == '0' || - lookahead == '1') ADVANCE(177); + lookahead == '1') ADVANCE(185); END_STATE(); - case 178: + case 186: ACCEPT_TOKEN(sym_number); if (lookahead == '_') ADVANCE(39); - if (lookahead == 'n') ADVANCE(174); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(178); + if (lookahead == 'n') ADVANCE(182); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(186); END_STATE(); - case 179: + case 187: ACCEPT_TOKEN(sym_number); if (lookahead == '_') ADVANCE(46); - if (lookahead == 'n') ADVANCE(174); + if (lookahead == 'n') ADVANCE(182); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(179); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(187); END_STATE(); - case 180: + case 188: ACCEPT_TOKEN(sym_number); if (lookahead == '_') ADVANCE(42); - if (lookahead == 'n') ADVANCE(174); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(180); + if (lookahead == 'n') ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(188); END_STATE(); - case 181: + case 189: ACCEPT_TOKEN(sym_number); if (lookahead == '_') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); END_STATE(); - case 182: + case 190: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || lookahead == 'e') ADVANCE(37); if (lookahead == '_') ADVANCE(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); END_STATE(); - case 183: + case 191: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || lookahead == 'e') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); END_STATE(); - case 184: + case 192: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-') ADVANCE(92); if (lookahead == '\\') ADVANCE(28); @@ -3506,18 +3599,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); if (lookahead != 0 && (lookahead < 0 || '~' < lookahead) && lookahead != 160 && lookahead != 8203 && lookahead != 8288 && - lookahead != 65279) ADVANCE(186); + lookahead != 65279) ADVANCE(194); END_STATE(); - case 185: + case 193: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(28); - if (lookahead == '{') ADVANCE(169); + if (lookahead == '{') ADVANCE(177); if (lookahead != 0 && (lookahead < 0 || '#' < lookahead) && (lookahead < '%' || '/' < lookahead) && @@ -3528,17 +3621,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != 160 && lookahead != 8203 && lookahead != 8288 && - lookahead != 65279) ADVANCE(186); + lookahead != 65279) ADVANCE(194); END_STATE(); - case 186: + case 194: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(28); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(186); + if (!sym_identifier_character_set_1(lookahead)) ADVANCE(194); END_STATE(); - case 187: + case 195: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 188: + case 196: ACCEPT_TOKEN(sym_preproc); END_STATE(); default: @@ -4266,7 +4359,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [77] = {.lex_state = 61}, [78] = {.lex_state = 61}, [79] = {.lex_state = 61}, - [80] = {.lex_state = 61}, + [80] = {.lex_state = 8}, [81] = {.lex_state = 61}, [82] = {.lex_state = 61}, [83] = {.lex_state = 61}, @@ -4274,13 +4367,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [85] = {.lex_state = 61}, [86] = {.lex_state = 61}, [87] = {.lex_state = 61}, - [88] = {.lex_state = 61}, - [89] = {.lex_state = 8}, - [90] = {.lex_state = 61}, + [88] = {.lex_state = 8}, + [89] = {.lex_state = 61}, + [90] = {.lex_state = 8}, [91] = {.lex_state = 61}, [92] = {.lex_state = 61}, [93] = {.lex_state = 61}, - [94] = {.lex_state = 8}, + [94] = {.lex_state = 61}, [95] = {.lex_state = 61}, [96] = {.lex_state = 61}, [97] = {.lex_state = 61}, @@ -4315,7 +4408,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [126] = {.lex_state = 61}, [127] = {.lex_state = 61}, [128] = {.lex_state = 61}, - [129] = {.lex_state = 61}, + [129] = {.lex_state = 9, .external_lex_state = 2}, [130] = {.lex_state = 61}, [131] = {.lex_state = 61}, [132] = {.lex_state = 61}, @@ -4365,52 +4458,52 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [176] = {.lex_state = 61}, [177] = {.lex_state = 61}, [178] = {.lex_state = 9, .external_lex_state = 2}, - [179] = {.lex_state = 9, .external_lex_state = 2}, - [180] = {.lex_state = 61, .external_lex_state = 2}, - [181] = {.lex_state = 61, .external_lex_state = 2}, - [182] = {.lex_state = 9, .external_lex_state = 2}, - [183] = {.lex_state = 9, .external_lex_state = 2}, + [179] = {.lex_state = 61}, + [180] = {.lex_state = 61}, + [181] = {.lex_state = 61}, + [182] = {.lex_state = 61}, + [183] = {.lex_state = 61}, [184] = {.lex_state = 61}, [185] = {.lex_state = 61}, - [186] = {.lex_state = 61}, + [186] = {.lex_state = 9, .external_lex_state = 2}, [187] = {.lex_state = 9, .external_lex_state = 2}, [188] = {.lex_state = 9, .external_lex_state = 2}, - [189] = {.lex_state = 61}, + [189] = {.lex_state = 9, .external_lex_state = 2}, [190] = {.lex_state = 61, .external_lex_state = 2}, [191] = {.lex_state = 61, .external_lex_state = 2}, - [192] = {.lex_state = 61, .external_lex_state = 2}, - [193] = {.lex_state = 61, .external_lex_state = 2}, - [194] = {.lex_state = 61, .external_lex_state = 2}, - [195] = {.lex_state = 61, .external_lex_state = 2}, + [192] = {.lex_state = 9}, + [193] = {.lex_state = 61}, + [194] = {.lex_state = 9}, + [195] = {.lex_state = 61}, [196] = {.lex_state = 61}, - [197] = {.lex_state = 9}, - [198] = {.lex_state = 61, .external_lex_state = 2}, - [199] = {.lex_state = 61, .external_lex_state = 2}, - [200] = {.lex_state = 61}, - [201] = {.lex_state = 61, .external_lex_state = 2}, - [202] = {.lex_state = 61, .external_lex_state = 2}, + [197] = {.lex_state = 9, .external_lex_state = 2}, + [198] = {.lex_state = 61}, + [199] = {.lex_state = 9, .external_lex_state = 2}, + [200] = {.lex_state = 9, .external_lex_state = 2}, + [201] = {.lex_state = 9, .external_lex_state = 2}, + [202] = {.lex_state = 9, .external_lex_state = 2}, [203] = {.lex_state = 61, .external_lex_state = 2}, [204] = {.lex_state = 61, .external_lex_state = 2}, [205] = {.lex_state = 61}, - [206] = {.lex_state = 61}, - [207] = {.lex_state = 61}, - [208] = {.lex_state = 61}, - [209] = {.lex_state = 61, .external_lex_state = 2}, - [210] = {.lex_state = 61, .external_lex_state = 2}, - [211] = {.lex_state = 61}, - [212] = {.lex_state = 61}, - [213] = {.lex_state = 61}, + [206] = {.lex_state = 9}, + [207] = {.lex_state = 61, .external_lex_state = 2}, + [208] = {.lex_state = 61, .external_lex_state = 2}, + [209] = {.lex_state = 61}, + [210] = {.lex_state = 61}, + [211] = {.lex_state = 61, .external_lex_state = 2}, + [212] = {.lex_state = 61, .external_lex_state = 2}, + [213] = {.lex_state = 61, .external_lex_state = 2}, [214] = {.lex_state = 61}, - [215] = {.lex_state = 61}, - [216] = {.lex_state = 61}, + [215] = {.lex_state = 61, .external_lex_state = 2}, + [216] = {.lex_state = 61, .external_lex_state = 2}, [217] = {.lex_state = 61}, - [218] = {.lex_state = 61}, + [218] = {.lex_state = 61, .external_lex_state = 2}, [219] = {.lex_state = 61}, [220] = {.lex_state = 61}, - [221] = {.lex_state = 61}, - [222] = {.lex_state = 61}, - [223] = {.lex_state = 61}, - [224] = {.lex_state = 61}, + [221] = {.lex_state = 61, .external_lex_state = 2}, + [222] = {.lex_state = 61, .external_lex_state = 2}, + [223] = {.lex_state = 61, .external_lex_state = 2}, + [224] = {.lex_state = 61, .external_lex_state = 2}, [225] = {.lex_state = 61}, [226] = {.lex_state = 61}, [227] = {.lex_state = 61}, @@ -4426,7 +4519,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [237] = {.lex_state = 61}, [238] = {.lex_state = 61}, [239] = {.lex_state = 61}, - [240] = {.lex_state = 9}, + [240] = {.lex_state = 61}, [241] = {.lex_state = 61}, [242] = {.lex_state = 61}, [243] = {.lex_state = 61}, @@ -4442,23 +4535,23 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [253] = {.lex_state = 61}, [254] = {.lex_state = 61}, [255] = {.lex_state = 61}, - [256] = {.lex_state = 9, .external_lex_state = 2}, - [257] = {.lex_state = 9, .external_lex_state = 2}, - [258] = {.lex_state = 9, .external_lex_state = 2}, - [259] = {.lex_state = 9, .external_lex_state = 2}, - [260] = {.lex_state = 9, .external_lex_state = 2}, - [261] = {.lex_state = 9}, + [256] = {.lex_state = 61}, + [257] = {.lex_state = 61}, + [258] = {.lex_state = 61}, + [259] = {.lex_state = 61}, + [260] = {.lex_state = 61}, + [261] = {.lex_state = 61}, [262] = {.lex_state = 61}, [263] = {.lex_state = 61}, - [264] = {.lex_state = 9}, - [265] = {.lex_state = 9}, + [264] = {.lex_state = 61}, + [265] = {.lex_state = 61}, [266] = {.lex_state = 61}, [267] = {.lex_state = 61}, [268] = {.lex_state = 61}, [269] = {.lex_state = 61}, - [270] = {.lex_state = 61}, - [271] = {.lex_state = 61}, - [272] = {.lex_state = 61}, + [270] = {.lex_state = 9}, + [271] = {.lex_state = 9}, + [272] = {.lex_state = 9}, [273] = {.lex_state = 9}, [274] = {.lex_state = 9}, [275] = {.lex_state = 9}, @@ -4468,55 +4561,55 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [279] = {.lex_state = 9, .external_lex_state = 2}, [280] = {.lex_state = 9}, [281] = {.lex_state = 9}, - [282] = {.lex_state = 9, .external_lex_state = 2}, + [282] = {.lex_state = 9}, [283] = {.lex_state = 9}, - [284] = {.lex_state = 9}, - [285] = {.lex_state = 9, .external_lex_state = 2}, + [284] = {.lex_state = 9, .external_lex_state = 2}, + [285] = {.lex_state = 9}, [286] = {.lex_state = 9, .external_lex_state = 2}, [287] = {.lex_state = 9, .external_lex_state = 2}, - [288] = {.lex_state = 9, .external_lex_state = 2}, + [288] = {.lex_state = 9}, [289] = {.lex_state = 9, .external_lex_state = 2}, [290] = {.lex_state = 9, .external_lex_state = 2}, - [291] = {.lex_state = 9, .external_lex_state = 2}, + [291] = {.lex_state = 61}, [292] = {.lex_state = 9, .external_lex_state = 2}, [293] = {.lex_state = 9, .external_lex_state = 2}, - [294] = {.lex_state = 9, .external_lex_state = 2}, + [294] = {.lex_state = 61}, [295] = {.lex_state = 9, .external_lex_state = 2}, [296] = {.lex_state = 9, .external_lex_state = 2}, [297] = {.lex_state = 9, .external_lex_state = 2}, [298] = {.lex_state = 9, .external_lex_state = 2}, [299] = {.lex_state = 9, .external_lex_state = 2}, [300] = {.lex_state = 9, .external_lex_state = 2}, - [301] = {.lex_state = 60}, + [301] = {.lex_state = 9, .external_lex_state = 2}, [302] = {.lex_state = 9, .external_lex_state = 2}, - [303] = {.lex_state = 60}, - [304] = {.lex_state = 9}, + [303] = {.lex_state = 9, .external_lex_state = 2}, + [304] = {.lex_state = 61}, [305] = {.lex_state = 9, .external_lex_state = 2}, - [306] = {.lex_state = 9}, - [307] = {.lex_state = 60}, - [308] = {.lex_state = 9}, - [309] = {.lex_state = 9}, - [310] = {.lex_state = 9}, - [311] = {.lex_state = 9}, - [312] = {.lex_state = 9}, - [313] = {.lex_state = 9}, - [314] = {.lex_state = 9}, - [315] = {.lex_state = 60, .external_lex_state = 2}, - [316] = {.lex_state = 60}, - [317] = {.lex_state = 60}, - [318] = {.lex_state = 60}, - [319] = {.lex_state = 60}, - [320] = {.lex_state = 60}, - [321] = {.lex_state = 60}, - [322] = {.lex_state = 60}, - [323] = {.lex_state = 60}, - [324] = {.lex_state = 60}, - [325] = {.lex_state = 60}, - [326] = {.lex_state = 60}, + [306] = {.lex_state = 61}, + [307] = {.lex_state = 9, .external_lex_state = 2}, + [308] = {.lex_state = 61}, + [309] = {.lex_state = 61}, + [310] = {.lex_state = 9, .external_lex_state = 2}, + [311] = {.lex_state = 61}, + [312] = {.lex_state = 61}, + [313] = {.lex_state = 9, .external_lex_state = 2}, + [314] = {.lex_state = 61}, + [315] = {.lex_state = 9, .external_lex_state = 2}, + [316] = {.lex_state = 9}, + [317] = {.lex_state = 9}, + [318] = {.lex_state = 9, .external_lex_state = 2}, + [319] = {.lex_state = 9, .external_lex_state = 2}, + [320] = {.lex_state = 9}, + [321] = {.lex_state = 9}, + [322] = {.lex_state = 9}, + [323] = {.lex_state = 9}, + [324] = {.lex_state = 9}, + [325] = {.lex_state = 9}, + [326] = {.lex_state = 9}, [327] = {.lex_state = 60}, [328] = {.lex_state = 60}, [329] = {.lex_state = 60}, - [330] = {.lex_state = 60}, + [330] = {.lex_state = 60, .external_lex_state = 2}, [331] = {.lex_state = 60}, [332] = {.lex_state = 60}, [333] = {.lex_state = 60}, @@ -4533,7 +4626,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 60}, [345] = {.lex_state = 60}, [346] = {.lex_state = 60}, - [347] = {.lex_state = 60, .external_lex_state = 2}, + [347] = {.lex_state = 60}, [348] = {.lex_state = 60}, [349] = {.lex_state = 60}, [350] = {.lex_state = 60}, @@ -4543,125 +4636,125 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [354] = {.lex_state = 60}, [355] = {.lex_state = 60}, [356] = {.lex_state = 60}, - [357] = {.lex_state = 60, .external_lex_state = 2}, - [358] = {.lex_state = 10}, + [357] = {.lex_state = 60}, + [358] = {.lex_state = 60}, [359] = {.lex_state = 60}, [360] = {.lex_state = 60}, [361] = {.lex_state = 60}, [362] = {.lex_state = 60}, [363] = {.lex_state = 60, .external_lex_state = 2}, [364] = {.lex_state = 60}, - [365] = {.lex_state = 60, .external_lex_state = 2}, - [366] = {.lex_state = 60, .external_lex_state = 2}, + [365] = {.lex_state = 60}, + [366] = {.lex_state = 60}, [367] = {.lex_state = 60}, [368] = {.lex_state = 60, .external_lex_state = 2}, [369] = {.lex_state = 60}, - [370] = {.lex_state = 60}, - [371] = {.lex_state = 60, .external_lex_state = 2}, - [372] = {.lex_state = 60, .external_lex_state = 2}, - [373] = {.lex_state = 60, .external_lex_state = 2}, - [374] = {.lex_state = 60, .external_lex_state = 2}, - [375] = {.lex_state = 60}, - [376] = {.lex_state = 60, .external_lex_state = 2}, - [377] = {.lex_state = 60, .external_lex_state = 2}, - [378] = {.lex_state = 60, .external_lex_state = 2}, + [370] = {.lex_state = 10}, + [371] = {.lex_state = 60}, + [372] = {.lex_state = 60}, + [373] = {.lex_state = 60}, + [374] = {.lex_state = 60}, + [375] = {.lex_state = 60, .external_lex_state = 2}, + [376] = {.lex_state = 60}, + [377] = {.lex_state = 60}, + [378] = {.lex_state = 60}, [379] = {.lex_state = 60}, - [380] = {.lex_state = 60}, + [380] = {.lex_state = 60, .external_lex_state = 2}, [381] = {.lex_state = 60}, [382] = {.lex_state = 60}, - [383] = {.lex_state = 60, .external_lex_state = 2}, - [384] = {.lex_state = 60, .external_lex_state = 2}, - [385] = {.lex_state = 60, .external_lex_state = 2}, + [383] = {.lex_state = 60}, + [384] = {.lex_state = 60}, + [385] = {.lex_state = 60}, [386] = {.lex_state = 60}, [387] = {.lex_state = 60, .external_lex_state = 2}, - [388] = {.lex_state = 60}, - [389] = {.lex_state = 60}, + [388] = {.lex_state = 60, .external_lex_state = 2}, + [389] = {.lex_state = 60, .external_lex_state = 2}, [390] = {.lex_state = 60, .external_lex_state = 2}, - [391] = {.lex_state = 60, .external_lex_state = 2}, + [391] = {.lex_state = 60}, [392] = {.lex_state = 60}, - [393] = {.lex_state = 60, .external_lex_state = 2}, + [393] = {.lex_state = 60}, [394] = {.lex_state = 60, .external_lex_state = 2}, - [395] = {.lex_state = 60, .external_lex_state = 2}, + [395] = {.lex_state = 60}, [396] = {.lex_state = 60}, - [397] = {.lex_state = 60}, - [398] = {.lex_state = 60}, - [399] = {.lex_state = 60}, + [397] = {.lex_state = 60, .external_lex_state = 2}, + [398] = {.lex_state = 60, .external_lex_state = 2}, + [399] = {.lex_state = 60, .external_lex_state = 2}, [400] = {.lex_state = 60}, - [401] = {.lex_state = 60}, + [401] = {.lex_state = 60, .external_lex_state = 2}, [402] = {.lex_state = 60}, [403] = {.lex_state = 60, .external_lex_state = 2}, - [404] = {.lex_state = 60, .external_lex_state = 2}, + [404] = {.lex_state = 60}, [405] = {.lex_state = 60, .external_lex_state = 2}, - [406] = {.lex_state = 60}, + [406] = {.lex_state = 60, .external_lex_state = 2}, [407] = {.lex_state = 60}, [408] = {.lex_state = 60, .external_lex_state = 2}, [409] = {.lex_state = 60, .external_lex_state = 2}, - [410] = {.lex_state = 60, .external_lex_state = 2}, - [411] = {.lex_state = 60, .external_lex_state = 2}, + [410] = {.lex_state = 60}, + [411] = {.lex_state = 60}, [412] = {.lex_state = 60, .external_lex_state = 2}, [413] = {.lex_state = 60, .external_lex_state = 2}, [414] = {.lex_state = 60, .external_lex_state = 2}, [415] = {.lex_state = 60, .external_lex_state = 2}, [416] = {.lex_state = 60, .external_lex_state = 2}, - [417] = {.lex_state = 60}, - [418] = {.lex_state = 60}, + [417] = {.lex_state = 60, .external_lex_state = 2}, + [418] = {.lex_state = 60, .external_lex_state = 2}, [419] = {.lex_state = 60, .external_lex_state = 2}, [420] = {.lex_state = 60, .external_lex_state = 2}, [421] = {.lex_state = 60, .external_lex_state = 2}, - [422] = {.lex_state = 60, .external_lex_state = 2}, - [423] = {.lex_state = 60, .external_lex_state = 2}, - [424] = {.lex_state = 60, .external_lex_state = 2}, - [425] = {.lex_state = 60, .external_lex_state = 2}, + [422] = {.lex_state = 60}, + [423] = {.lex_state = 60}, + [424] = {.lex_state = 60}, + [425] = {.lex_state = 60}, [426] = {.lex_state = 60}, [427] = {.lex_state = 60}, [428] = {.lex_state = 60, .external_lex_state = 2}, [429] = {.lex_state = 60}, - [430] = {.lex_state = 60}, + [430] = {.lex_state = 60, .external_lex_state = 2}, [431] = {.lex_state = 60}, [432] = {.lex_state = 60}, - [433] = {.lex_state = 60, .external_lex_state = 2}, + [433] = {.lex_state = 60}, [434] = {.lex_state = 60}, [435] = {.lex_state = 60}, [436] = {.lex_state = 60}, - [437] = {.lex_state = 60, .external_lex_state = 2}, - [438] = {.lex_state = 60, .external_lex_state = 2}, - [439] = {.lex_state = 60}, + [437] = {.lex_state = 60}, + [438] = {.lex_state = 60}, + [439] = {.lex_state = 60, .external_lex_state = 2}, [440] = {.lex_state = 60}, [441] = {.lex_state = 60}, - [442] = {.lex_state = 60}, - [443] = {.lex_state = 60}, - [444] = {.lex_state = 60}, - [445] = {.lex_state = 60}, - [446] = {.lex_state = 60}, - [447] = {.lex_state = 60}, + [442] = {.lex_state = 60, .external_lex_state = 2}, + [443] = {.lex_state = 60, .external_lex_state = 2}, + [444] = {.lex_state = 60, .external_lex_state = 2}, + [445] = {.lex_state = 60, .external_lex_state = 2}, + [446] = {.lex_state = 60, .external_lex_state = 2}, + [447] = {.lex_state = 60, .external_lex_state = 2}, [448] = {.lex_state = 60}, [449] = {.lex_state = 60, .external_lex_state = 2}, - [450] = {.lex_state = 60}, - [451] = {.lex_state = 60, .external_lex_state = 2}, - [452] = {.lex_state = 60, .external_lex_state = 2}, - [453] = {.lex_state = 60, .external_lex_state = 2}, - [454] = {.lex_state = 60}, + [450] = {.lex_state = 60, .external_lex_state = 2}, + [451] = {.lex_state = 60}, + [452] = {.lex_state = 60}, + [453] = {.lex_state = 60}, + [454] = {.lex_state = 60, .external_lex_state = 2}, [455] = {.lex_state = 60, .external_lex_state = 2}, [456] = {.lex_state = 60, .external_lex_state = 2}, [457] = {.lex_state = 60}, [458] = {.lex_state = 60, .external_lex_state = 2}, [459] = {.lex_state = 60, .external_lex_state = 2}, - [460] = {.lex_state = 60}, - [461] = {.lex_state = 60, .external_lex_state = 2}, + [460] = {.lex_state = 60, .external_lex_state = 2}, + [461] = {.lex_state = 60}, [462] = {.lex_state = 60, .external_lex_state = 2}, [463] = {.lex_state = 60, .external_lex_state = 2}, [464] = {.lex_state = 60, .external_lex_state = 2}, [465] = {.lex_state = 60}, - [466] = {.lex_state = 60, .external_lex_state = 2}, - [467] = {.lex_state = 60, .external_lex_state = 2}, - [468] = {.lex_state = 60, .external_lex_state = 2}, - [469] = {.lex_state = 60}, + [466] = {.lex_state = 60}, + [467] = {.lex_state = 60}, + [468] = {.lex_state = 60}, + [469] = {.lex_state = 60, .external_lex_state = 2}, [470] = {.lex_state = 60, .external_lex_state = 2}, [471] = {.lex_state = 60, .external_lex_state = 2}, [472] = {.lex_state = 60, .external_lex_state = 2}, - [473] = {.lex_state = 60, .external_lex_state = 2}, + [473] = {.lex_state = 60}, [474] = {.lex_state = 60, .external_lex_state = 2}, - [475] = {.lex_state = 10, .external_lex_state = 2}, + [475] = {.lex_state = 60, .external_lex_state = 2}, [476] = {.lex_state = 60, .external_lex_state = 2}, [477] = {.lex_state = 60}, [478] = {.lex_state = 60}, @@ -4672,7 +4765,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [483] = {.lex_state = 60, .external_lex_state = 2}, [484] = {.lex_state = 60, .external_lex_state = 2}, [485] = {.lex_state = 60}, - [486] = {.lex_state = 60}, + [486] = {.lex_state = 60, .external_lex_state = 2}, [487] = {.lex_state = 60}, [488] = {.lex_state = 60, .external_lex_state = 2}, [489] = {.lex_state = 60, .external_lex_state = 2}, @@ -4680,123 +4773,123 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [491] = {.lex_state = 60, .external_lex_state = 2}, [492] = {.lex_state = 60, .external_lex_state = 2}, [493] = {.lex_state = 60, .external_lex_state = 2}, - [494] = {.lex_state = 60}, - [495] = {.lex_state = 60}, - [496] = {.lex_state = 60}, + [494] = {.lex_state = 60, .external_lex_state = 2}, + [495] = {.lex_state = 60, .external_lex_state = 2}, + [496] = {.lex_state = 60, .external_lex_state = 2}, [497] = {.lex_state = 60}, [498] = {.lex_state = 60}, [499] = {.lex_state = 60}, [500] = {.lex_state = 60}, - [501] = {.lex_state = 60, .external_lex_state = 2}, - [502] = {.lex_state = 60}, - [503] = {.lex_state = 60}, - [504] = {.lex_state = 60}, - [505] = {.lex_state = 60}, + [501] = {.lex_state = 10, .external_lex_state = 2}, + [502] = {.lex_state = 60, .external_lex_state = 2}, + [503] = {.lex_state = 60, .external_lex_state = 2}, + [504] = {.lex_state = 60, .external_lex_state = 2}, + [505] = {.lex_state = 60, .external_lex_state = 2}, [506] = {.lex_state = 60, .external_lex_state = 2}, [507] = {.lex_state = 60, .external_lex_state = 2}, [508] = {.lex_state = 60, .external_lex_state = 2}, [509] = {.lex_state = 60}, - [510] = {.lex_state = 60}, + [510] = {.lex_state = 60, .external_lex_state = 2}, [511] = {.lex_state = 60, .external_lex_state = 2}, - [512] = {.lex_state = 60}, - [513] = {.lex_state = 60, .external_lex_state = 2}, + [512] = {.lex_state = 60, .external_lex_state = 2}, + [513] = {.lex_state = 60}, [514] = {.lex_state = 60, .external_lex_state = 2}, [515] = {.lex_state = 60, .external_lex_state = 2}, [516] = {.lex_state = 60, .external_lex_state = 2}, - [517] = {.lex_state = 60, .external_lex_state = 2}, + [517] = {.lex_state = 60}, [518] = {.lex_state = 60, .external_lex_state = 2}, [519] = {.lex_state = 60, .external_lex_state = 2}, - [520] = {.lex_state = 60}, - [521] = {.lex_state = 60, .external_lex_state = 2}, + [520] = {.lex_state = 60, .external_lex_state = 2}, + [521] = {.lex_state = 60}, [522] = {.lex_state = 60, .external_lex_state = 2}, [523] = {.lex_state = 60, .external_lex_state = 2}, - [524] = {.lex_state = 60}, + [524] = {.lex_state = 60, .external_lex_state = 2}, [525] = {.lex_state = 60, .external_lex_state = 2}, - [526] = {.lex_state = 60, .external_lex_state = 2}, + [526] = {.lex_state = 60}, [527] = {.lex_state = 60}, - [528] = {.lex_state = 60}, - [529] = {.lex_state = 60, .external_lex_state = 2}, + [528] = {.lex_state = 60, .external_lex_state = 2}, + [529] = {.lex_state = 60}, [530] = {.lex_state = 60, .external_lex_state = 2}, - [531] = {.lex_state = 60}, - [532] = {.lex_state = 60, .external_lex_state = 2}, - [533] = {.lex_state = 60, .external_lex_state = 2}, - [534] = {.lex_state = 60, .external_lex_state = 2}, + [531] = {.lex_state = 60, .external_lex_state = 2}, + [532] = {.lex_state = 60}, + [533] = {.lex_state = 60}, + [534] = {.lex_state = 60}, [535] = {.lex_state = 60, .external_lex_state = 2}, - [536] = {.lex_state = 60, .external_lex_state = 2}, + [536] = {.lex_state = 60}, [537] = {.lex_state = 60, .external_lex_state = 2}, - [538] = {.lex_state = 60, .external_lex_state = 2}, + [538] = {.lex_state = 60}, [539] = {.lex_state = 60}, - [540] = {.lex_state = 60, .external_lex_state = 2}, + [540] = {.lex_state = 60}, [541] = {.lex_state = 60, .external_lex_state = 2}, - [542] = {.lex_state = 60}, + [542] = {.lex_state = 60, .external_lex_state = 2}, [543] = {.lex_state = 60, .external_lex_state = 2}, - [544] = {.lex_state = 60, .external_lex_state = 2}, - [545] = {.lex_state = 60}, + [544] = {.lex_state = 60}, + [545] = {.lex_state = 60, .external_lex_state = 2}, [546] = {.lex_state = 60, .external_lex_state = 2}, [547] = {.lex_state = 60, .external_lex_state = 2}, - [548] = {.lex_state = 60}, - [549] = {.lex_state = 60, .external_lex_state = 2}, + [548] = {.lex_state = 60, .external_lex_state = 2}, + [549] = {.lex_state = 60}, [550] = {.lex_state = 60, .external_lex_state = 2}, [551] = {.lex_state = 60, .external_lex_state = 2}, - [552] = {.lex_state = 60, .external_lex_state = 2}, + [552] = {.lex_state = 60}, [553] = {.lex_state = 60, .external_lex_state = 2}, [554] = {.lex_state = 60, .external_lex_state = 2}, [555] = {.lex_state = 60, .external_lex_state = 2}, [556] = {.lex_state = 60, .external_lex_state = 2}, - [557] = {.lex_state = 60}, + [557] = {.lex_state = 60, .external_lex_state = 2}, [558] = {.lex_state = 60, .external_lex_state = 2}, - [559] = {.lex_state = 60}, + [559] = {.lex_state = 60, .external_lex_state = 2}, [560] = {.lex_state = 60}, - [561] = {.lex_state = 60, .external_lex_state = 2}, + [561] = {.lex_state = 60}, [562] = {.lex_state = 60, .external_lex_state = 2}, - [563] = {.lex_state = 60, .external_lex_state = 2}, + [563] = {.lex_state = 60}, [564] = {.lex_state = 60}, [565] = {.lex_state = 60}, [566] = {.lex_state = 60}, [567] = {.lex_state = 60}, - [568] = {.lex_state = 60}, + [568] = {.lex_state = 60, .external_lex_state = 2}, [569] = {.lex_state = 60}, [570] = {.lex_state = 60}, [571] = {.lex_state = 60}, [572] = {.lex_state = 60}, - [573] = {.lex_state = 60}, + [573] = {.lex_state = 60, .external_lex_state = 2}, [574] = {.lex_state = 60}, [575] = {.lex_state = 60}, - [576] = {.lex_state = 60}, - [577] = {.lex_state = 61}, - [578] = {.lex_state = 61}, - [579] = {.lex_state = 61}, - [580] = {.lex_state = 61}, - [581] = {.lex_state = 61}, - [582] = {.lex_state = 61}, - [583] = {.lex_state = 61}, - [584] = {.lex_state = 61}, - [585] = {.lex_state = 61}, - [586] = {.lex_state = 61}, - [587] = {.lex_state = 61}, - [588] = {.lex_state = 61}, - [589] = {.lex_state = 61}, - [590] = {.lex_state = 61}, - [591] = {.lex_state = 61}, - [592] = {.lex_state = 61}, - [593] = {.lex_state = 61}, - [594] = {.lex_state = 61}, - [595] = {.lex_state = 61}, - [596] = {.lex_state = 61}, - [597] = {.lex_state = 61}, - [598] = {.lex_state = 61}, - [599] = {.lex_state = 61, .external_lex_state = 2}, - [600] = {.lex_state = 61, .external_lex_state = 2}, - [601] = {.lex_state = 61, .external_lex_state = 2}, + [576] = {.lex_state = 60, .external_lex_state = 2}, + [577] = {.lex_state = 60, .external_lex_state = 2}, + [578] = {.lex_state = 60}, + [579] = {.lex_state = 60, .external_lex_state = 2}, + [580] = {.lex_state = 60, .external_lex_state = 2}, + [581] = {.lex_state = 60, .external_lex_state = 2}, + [582] = {.lex_state = 60, .external_lex_state = 2}, + [583] = {.lex_state = 60}, + [584] = {.lex_state = 60, .external_lex_state = 2}, + [585] = {.lex_state = 60}, + [586] = {.lex_state = 60}, + [587] = {.lex_state = 60}, + [588] = {.lex_state = 60}, + [589] = {.lex_state = 60}, + [590] = {.lex_state = 60}, + [591] = {.lex_state = 60}, + [592] = {.lex_state = 60}, + [593] = {.lex_state = 60}, + [594] = {.lex_state = 60}, + [595] = {.lex_state = 60}, + [596] = {.lex_state = 60}, + [597] = {.lex_state = 60}, + [598] = {.lex_state = 60}, + [599] = {.lex_state = 61}, + [600] = {.lex_state = 61}, + [601] = {.lex_state = 61}, [602] = {.lex_state = 61}, [603] = {.lex_state = 61}, - [604] = {.lex_state = 60}, + [604] = {.lex_state = 61}, [605] = {.lex_state = 61}, - [606] = {.lex_state = 61, .external_lex_state = 2}, - [607] = {.lex_state = 60}, - [608] = {.lex_state = 61, .external_lex_state = 2}, - [609] = {.lex_state = 60}, - [610] = {.lex_state = 60}, + [606] = {.lex_state = 61}, + [607] = {.lex_state = 61}, + [608] = {.lex_state = 61}, + [609] = {.lex_state = 61}, + [610] = {.lex_state = 61}, [611] = {.lex_state = 61}, [612] = {.lex_state = 61}, [613] = {.lex_state = 61}, @@ -4806,20 +4899,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [617] = {.lex_state = 61}, [618] = {.lex_state = 61}, [619] = {.lex_state = 61}, - [620] = {.lex_state = 61}, - [621] = {.lex_state = 61}, + [620] = {.lex_state = 61, .external_lex_state = 2}, + [621] = {.lex_state = 61, .external_lex_state = 2}, [622] = {.lex_state = 61}, - [623] = {.lex_state = 61}, + [623] = {.lex_state = 61, .external_lex_state = 2}, [624] = {.lex_state = 61}, - [625] = {.lex_state = 61}, - [626] = {.lex_state = 61}, + [625] = {.lex_state = 61, .external_lex_state = 2}, + [626] = {.lex_state = 61, .external_lex_state = 2}, [627] = {.lex_state = 61}, - [628] = {.lex_state = 61}, + [628] = {.lex_state = 60}, [629] = {.lex_state = 61}, [630] = {.lex_state = 61}, - [631] = {.lex_state = 61}, - [632] = {.lex_state = 61}, - [633] = {.lex_state = 61}, + [631] = {.lex_state = 9}, + [632] = {.lex_state = 60}, + [633] = {.lex_state = 9}, [634] = {.lex_state = 61}, [635] = {.lex_state = 61}, [636] = {.lex_state = 61}, @@ -4830,249 +4923,249 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [641] = {.lex_state = 61}, [642] = {.lex_state = 61}, [643] = {.lex_state = 61}, - [644] = {.lex_state = 21}, - [645] = {.lex_state = 21}, - [646] = {.lex_state = 21}, - [647] = {.lex_state = 21}, - [648] = {.lex_state = 21}, - [649] = {.lex_state = 21}, - [650] = {.lex_state = 21}, + [644] = {.lex_state = 61}, + [645] = {.lex_state = 61}, + [646] = {.lex_state = 61}, + [647] = {.lex_state = 61}, + [648] = {.lex_state = 61}, + [649] = {.lex_state = 61}, + [650] = {.lex_state = 61}, [651] = {.lex_state = 61}, [652] = {.lex_state = 61}, - [653] = {.lex_state = 21}, - [654] = {.lex_state = 21}, - [655] = {.lex_state = 21}, - [656] = {.lex_state = 21}, - [657] = {.lex_state = 21}, - [658] = {.lex_state = 21}, - [659] = {.lex_state = 22}, - [660] = {.lex_state = 21}, - [661] = {.lex_state = 22}, - [662] = {.lex_state = 22}, - [663] = {.lex_state = 21}, - [664] = {.lex_state = 21}, + [653] = {.lex_state = 61}, + [654] = {.lex_state = 61}, + [655] = {.lex_state = 61}, + [656] = {.lex_state = 61}, + [657] = {.lex_state = 61}, + [658] = {.lex_state = 61}, + [659] = {.lex_state = 61}, + [660] = {.lex_state = 61}, + [661] = {.lex_state = 61}, + [662] = {.lex_state = 61}, + [663] = {.lex_state = 61}, + [664] = {.lex_state = 61}, [665] = {.lex_state = 21}, [666] = {.lex_state = 21}, - [667] = {.lex_state = 22}, - [668] = {.lex_state = 22}, + [667] = {.lex_state = 21}, + [668] = {.lex_state = 21}, [669] = {.lex_state = 22}, - [670] = {.lex_state = 21}, - [671] = {.lex_state = 22}, + [670] = {.lex_state = 22}, + [671] = {.lex_state = 21}, [672] = {.lex_state = 21}, - [673] = {.lex_state = 21}, - [674] = {.lex_state = 22}, - [675] = {.lex_state = 22}, + [673] = {.lex_state = 22}, + [674] = {.lex_state = 21}, + [675] = {.lex_state = 21}, [676] = {.lex_state = 22}, - [677] = {.lex_state = 22}, - [678] = {.lex_state = 22}, - [679] = {.lex_state = 22}, + [677] = {.lex_state = 61}, + [678] = {.lex_state = 61}, + [679] = {.lex_state = 21}, [680] = {.lex_state = 22}, - [681] = {.lex_state = 22}, - [682] = {.lex_state = 21}, - [683] = {.lex_state = 61}, - [684] = {.lex_state = 0, .external_lex_state = 2}, - [685] = {.lex_state = 61}, - [686] = {.lex_state = 61}, - [687] = {.lex_state = 13, .external_lex_state = 3}, - [688] = {.lex_state = 61}, - [689] = {.lex_state = 60}, - [690] = {.lex_state = 13, .external_lex_state = 3}, - [691] = {.lex_state = 13, .external_lex_state = 3}, - [692] = {.lex_state = 61}, - [693] = {.lex_state = 0, .external_lex_state = 2}, + [681] = {.lex_state = 21}, + [682] = {.lex_state = 22}, + [683] = {.lex_state = 21}, + [684] = {.lex_state = 22}, + [685] = {.lex_state = 21}, + [686] = {.lex_state = 22}, + [687] = {.lex_state = 21}, + [688] = {.lex_state = 22}, + [689] = {.lex_state = 21}, + [690] = {.lex_state = 22}, + [691] = {.lex_state = 21}, + [692] = {.lex_state = 22}, + [693] = {.lex_state = 22}, [694] = {.lex_state = 21}, - [695] = {.lex_state = 60}, - [696] = {.lex_state = 21}, - [697] = {.lex_state = 61}, - [698] = {.lex_state = 60}, - [699] = {.lex_state = 13, .external_lex_state = 3}, - [700] = {.lex_state = 0}, - [701] = {.lex_state = 21}, - [702] = {.lex_state = 0}, - [703] = {.lex_state = 13, .external_lex_state = 3}, - [704] = {.lex_state = 61}, + [695] = {.lex_state = 21}, + [696] = {.lex_state = 22}, + [697] = {.lex_state = 21}, + [698] = {.lex_state = 21}, + [699] = {.lex_state = 21}, + [700] = {.lex_state = 21}, + [701] = {.lex_state = 22}, + [702] = {.lex_state = 22}, + [703] = {.lex_state = 22}, + [704] = {.lex_state = 22}, [705] = {.lex_state = 21}, - [706] = {.lex_state = 0, .external_lex_state = 2}, + [706] = {.lex_state = 21}, [707] = {.lex_state = 21}, - [708] = {.lex_state = 21}, - [709] = {.lex_state = 61}, - [710] = {.lex_state = 0, .external_lex_state = 2}, + [708] = {.lex_state = 0, .external_lex_state = 2}, + [709] = {.lex_state = 21}, + [710] = {.lex_state = 61}, [711] = {.lex_state = 21}, - [712] = {.lex_state = 21}, - [713] = {.lex_state = 61}, - [714] = {.lex_state = 61}, - [715] = {.lex_state = 21}, - [716] = {.lex_state = 61}, - [717] = {.lex_state = 61}, + [712] = {.lex_state = 0}, + [713] = {.lex_state = 0}, + [714] = {.lex_state = 13, .external_lex_state = 3}, + [715] = {.lex_state = 61}, + [716] = {.lex_state = 0, .external_lex_state = 2}, + [717] = {.lex_state = 13, .external_lex_state = 3}, [718] = {.lex_state = 21}, [719] = {.lex_state = 21}, [720] = {.lex_state = 21}, - [721] = {.lex_state = 21}, - [722] = {.lex_state = 0}, - [723] = {.lex_state = 61}, - [724] = {.lex_state = 21}, - [725] = {.lex_state = 0, .external_lex_state = 2}, - [726] = {.lex_state = 61}, + [721] = {.lex_state = 13, .external_lex_state = 3}, + [722] = {.lex_state = 21}, + [723] = {.lex_state = 21}, + [724] = {.lex_state = 13, .external_lex_state = 3}, + [725] = {.lex_state = 61}, + [726] = {.lex_state = 21}, [727] = {.lex_state = 21}, [728] = {.lex_state = 21}, - [729] = {.lex_state = 21}, - [730] = {.lex_state = 21}, + [729] = {.lex_state = 61}, + [730] = {.lex_state = 13, .external_lex_state = 3}, [731] = {.lex_state = 21}, [732] = {.lex_state = 21}, - [733] = {.lex_state = 21}, - [734] = {.lex_state = 61}, - [735] = {.lex_state = 21}, + [733] = {.lex_state = 61}, + [734] = {.lex_state = 21}, + [735] = {.lex_state = 61}, [736] = {.lex_state = 61}, [737] = {.lex_state = 21}, [738] = {.lex_state = 21}, - [739] = {.lex_state = 61}, + [739] = {.lex_state = 21}, [740] = {.lex_state = 21}, - [741] = {.lex_state = 61}, - [742] = {.lex_state = 21}, - [743] = {.lex_state = 21}, + [741] = {.lex_state = 21}, + [742] = {.lex_state = 0, .external_lex_state = 2}, + [743] = {.lex_state = 61}, [744] = {.lex_state = 21}, - [745] = {.lex_state = 21}, + [745] = {.lex_state = 61}, [746] = {.lex_state = 21}, - [747] = {.lex_state = 61}, - [748] = {.lex_state = 21}, - [749] = {.lex_state = 61}, - [750] = {.lex_state = 61}, + [747] = {.lex_state = 21}, + [748] = {.lex_state = 61}, + [749] = {.lex_state = 21}, + [750] = {.lex_state = 21}, [751] = {.lex_state = 21}, - [752] = {.lex_state = 61, .external_lex_state = 2}, + [752] = {.lex_state = 61}, [753] = {.lex_state = 61}, - [754] = {.lex_state = 61}, - [755] = {.lex_state = 13, .external_lex_state = 3}, - [756] = {.lex_state = 3}, - [757] = {.lex_state = 5}, - [758] = {.lex_state = 3}, - [759] = {.lex_state = 5}, - [760] = {.lex_state = 61}, - [761] = {.lex_state = 5}, - [762] = {.lex_state = 3}, - [763] = {.lex_state = 0}, - [764] = {.lex_state = 61}, - [765] = {.lex_state = 0}, - [766] = {.lex_state = 61}, - [767] = {.lex_state = 61}, - [768] = {.lex_state = 61}, - [769] = {.lex_state = 0, .external_lex_state = 2}, + [754] = {.lex_state = 21}, + [755] = {.lex_state = 21}, + [756] = {.lex_state = 61}, + [757] = {.lex_state = 61}, + [758] = {.lex_state = 0, .external_lex_state = 2}, + [759] = {.lex_state = 61}, + [760] = {.lex_state = 21}, + [761] = {.lex_state = 61}, + [762] = {.lex_state = 0}, + [763] = {.lex_state = 21}, + [764] = {.lex_state = 0, .external_lex_state = 2}, + [765] = {.lex_state = 61}, + [766] = {.lex_state = 21}, + [767] = {.lex_state = 21}, + [768] = {.lex_state = 21}, + [769] = {.lex_state = 61}, [770] = {.lex_state = 61}, - [771] = {.lex_state = 0}, - [772] = {.lex_state = 61}, - [773] = {.lex_state = 5}, - [774] = {.lex_state = 3}, - [775] = {.lex_state = 3}, - [776] = {.lex_state = 5}, - [777] = {.lex_state = 61}, - [778] = {.lex_state = 5}, - [779] = {.lex_state = 3}, - [780] = {.lex_state = 61}, - [781] = {.lex_state = 61}, - [782] = {.lex_state = 5}, - [783] = {.lex_state = 0, .external_lex_state = 2}, - [784] = {.lex_state = 3}, - [785] = {.lex_state = 0, .external_lex_state = 2}, - [786] = {.lex_state = 0, .external_lex_state = 2}, + [771] = {.lex_state = 3}, + [772] = {.lex_state = 0, .external_lex_state = 2}, + [773] = {.lex_state = 61}, + [774] = {.lex_state = 61}, + [775] = {.lex_state = 0, .external_lex_state = 2}, + [776] = {.lex_state = 61, .external_lex_state = 2}, + [777] = {.lex_state = 0, .external_lex_state = 2}, + [778] = {.lex_state = 61}, + [779] = {.lex_state = 5}, + [780] = {.lex_state = 3}, + [781] = {.lex_state = 0, .external_lex_state = 2}, + [782] = {.lex_state = 61}, + [783] = {.lex_state = 21}, + [784] = {.lex_state = 61}, + [785] = {.lex_state = 61}, + [786] = {.lex_state = 5}, [787] = {.lex_state = 61}, [788] = {.lex_state = 61}, - [789] = {.lex_state = 61}, - [790] = {.lex_state = 0, .external_lex_state = 2}, + [789] = {.lex_state = 0}, + [790] = {.lex_state = 61}, [791] = {.lex_state = 61}, [792] = {.lex_state = 61}, [793] = {.lex_state = 61}, - [794] = {.lex_state = 0, .external_lex_state = 2}, - [795] = {.lex_state = 21}, - [796] = {.lex_state = 0, .external_lex_state = 2}, - [797] = {.lex_state = 21}, - [798] = {.lex_state = 61}, - [799] = {.lex_state = 21}, - [800] = {.lex_state = 0}, - [801] = {.lex_state = 61}, + [794] = {.lex_state = 61}, + [795] = {.lex_state = 5}, + [796] = {.lex_state = 3}, + [797] = {.lex_state = 5}, + [798] = {.lex_state = 3}, + [799] = {.lex_state = 61}, + [800] = {.lex_state = 61}, + [801] = {.lex_state = 3}, [802] = {.lex_state = 61}, - [803] = {.lex_state = 61}, - [804] = {.lex_state = 61}, + [803] = {.lex_state = 5}, + [804] = {.lex_state = 0}, [805] = {.lex_state = 0}, [806] = {.lex_state = 0}, [807] = {.lex_state = 61}, [808] = {.lex_state = 0}, [809] = {.lex_state = 0}, - [810] = {.lex_state = 0}, + [810] = {.lex_state = 61}, [811] = {.lex_state = 61}, - [812] = {.lex_state = 0}, - [813] = {.lex_state = 0}, - [814] = {.lex_state = 0}, - [815] = {.lex_state = 0}, - [816] = {.lex_state = 0}, - [817] = {.lex_state = 0}, - [818] = {.lex_state = 0}, - [819] = {.lex_state = 61}, - [820] = {.lex_state = 61}, - [821] = {.lex_state = 0}, - [822] = {.lex_state = 0}, - [823] = {.lex_state = 61}, - [824] = {.lex_state = 0}, + [812] = {.lex_state = 3}, + [813] = {.lex_state = 61}, + [814] = {.lex_state = 21}, + [815] = {.lex_state = 61}, + [816] = {.lex_state = 61}, + [817] = {.lex_state = 13, .external_lex_state = 3}, + [818] = {.lex_state = 21}, + [819] = {.lex_state = 0, .external_lex_state = 2}, + [820] = {.lex_state = 3}, + [821] = {.lex_state = 21}, + [822] = {.lex_state = 0, .external_lex_state = 2}, + [823] = {.lex_state = 5}, + [824] = {.lex_state = 61}, [825] = {.lex_state = 0}, - [826] = {.lex_state = 0}, + [826] = {.lex_state = 61}, [827] = {.lex_state = 61}, - [828] = {.lex_state = 0}, - [829] = {.lex_state = 0}, - [830] = {.lex_state = 61}, - [831] = {.lex_state = 0}, - [832] = {.lex_state = 61, .external_lex_state = 2}, - [833] = {.lex_state = 61}, - [834] = {.lex_state = 22}, + [828] = {.lex_state = 61}, + [829] = {.lex_state = 61}, + [830] = {.lex_state = 5}, + [831] = {.lex_state = 61}, + [832] = {.lex_state = 61}, + [833] = {.lex_state = 0, .external_lex_state = 2}, + [834] = {.lex_state = 61, .external_lex_state = 2}, [835] = {.lex_state = 0}, - [836] = {.lex_state = 61}, - [837] = {.lex_state = 0}, + [836] = {.lex_state = 0}, + [837] = {.lex_state = 61}, [838] = {.lex_state = 0}, - [839] = {.lex_state = 0, .external_lex_state = 2}, - [840] = {.lex_state = 61, .external_lex_state = 2}, - [841] = {.lex_state = 61, .external_lex_state = 2}, - [842] = {.lex_state = 61, .external_lex_state = 2}, - [843] = {.lex_state = 61}, - [844] = {.lex_state = 8}, - [845] = {.lex_state = 61}, - [846] = {.lex_state = 8}, - [847] = {.lex_state = 61, .external_lex_state = 2}, - [848] = {.lex_state = 8}, - [849] = {.lex_state = 0, .external_lex_state = 2}, - [850] = {.lex_state = 22}, - [851] = {.lex_state = 61}, + [839] = {.lex_state = 0}, + [840] = {.lex_state = 0}, + [841] = {.lex_state = 61}, + [842] = {.lex_state = 0}, + [843] = {.lex_state = 0}, + [844] = {.lex_state = 61}, + [845] = {.lex_state = 0}, + [846] = {.lex_state = 22}, + [847] = {.lex_state = 0}, + [848] = {.lex_state = 0, .external_lex_state = 2}, + [849] = {.lex_state = 0}, + [850] = {.lex_state = 61}, + [851] = {.lex_state = 0}, [852] = {.lex_state = 0}, - [853] = {.lex_state = 8}, - [854] = {.lex_state = 0}, - [855] = {.lex_state = 0}, - [856] = {.lex_state = 61}, + [853] = {.lex_state = 61}, + [854] = {.lex_state = 61, .external_lex_state = 2}, + [855] = {.lex_state = 22}, + [856] = {.lex_state = 8}, [857] = {.lex_state = 61}, - [858] = {.lex_state = 61, .external_lex_state = 2}, - [859] = {.lex_state = 0}, - [860] = {.lex_state = 0}, - [861] = {.lex_state = 0}, + [858] = {.lex_state = 61}, + [859] = {.lex_state = 61}, + [860] = {.lex_state = 61}, + [861] = {.lex_state = 61}, [862] = {.lex_state = 0}, - [863] = {.lex_state = 0}, - [864] = {.lex_state = 0}, - [865] = {.lex_state = 0}, + [863] = {.lex_state = 61, .external_lex_state = 2}, + [864] = {.lex_state = 61, .external_lex_state = 2}, + [865] = {.lex_state = 61, .external_lex_state = 2}, [866] = {.lex_state = 0}, - [867] = {.lex_state = 0, .external_lex_state = 2}, - [868] = {.lex_state = 0, .external_lex_state = 2}, - [869] = {.lex_state = 0}, - [870] = {.lex_state = 0}, - [871] = {.lex_state = 0}, - [872] = {.lex_state = 22}, - [873] = {.lex_state = 0}, - [874] = {.lex_state = 22}, - [875] = {.lex_state = 22}, - [876] = {.lex_state = 61}, - [877] = {.lex_state = 22}, - [878] = {.lex_state = 22}, + [867] = {.lex_state = 61}, + [868] = {.lex_state = 0}, + [869] = {.lex_state = 61}, + [870] = {.lex_state = 8}, + [871] = {.lex_state = 61}, + [872] = {.lex_state = 0}, + [873] = {.lex_state = 8}, + [874] = {.lex_state = 61, .external_lex_state = 2}, + [875] = {.lex_state = 61}, + [876] = {.lex_state = 0, .external_lex_state = 2}, + [877] = {.lex_state = 0, .external_lex_state = 2}, + [878] = {.lex_state = 0, .external_lex_state = 2}, [879] = {.lex_state = 0}, - [880] = {.lex_state = 22}, + [880] = {.lex_state = 0}, [881] = {.lex_state = 0}, - [882] = {.lex_state = 61, .external_lex_state = 2}, + [882] = {.lex_state = 0}, [883] = {.lex_state = 61}, - [884] = {.lex_state = 0}, - [885] = {.lex_state = 0}, - [886] = {.lex_state = 22}, + [884] = {.lex_state = 61}, + [885] = {.lex_state = 8}, + [886] = {.lex_state = 0}, [887] = {.lex_state = 61, .external_lex_state = 2}, [888] = {.lex_state = 0}, [889] = {.lex_state = 0}, @@ -5080,56 +5173,56 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [891] = {.lex_state = 0}, [892] = {.lex_state = 0}, [893] = {.lex_state = 0}, - [894] = {.lex_state = 0}, - [895] = {.lex_state = 0, .external_lex_state = 2}, + [894] = {.lex_state = 22}, + [895] = {.lex_state = 0}, [896] = {.lex_state = 0}, [897] = {.lex_state = 0}, [898] = {.lex_state = 0}, - [899] = {.lex_state = 61}, + [899] = {.lex_state = 0}, [900] = {.lex_state = 0}, - [901] = {.lex_state = 61}, + [901] = {.lex_state = 22}, [902] = {.lex_state = 0}, [903] = {.lex_state = 0}, - [904] = {.lex_state = 61}, - [905] = {.lex_state = 61}, + [904] = {.lex_state = 0}, + [905] = {.lex_state = 0}, [906] = {.lex_state = 0}, - [907] = {.lex_state = 0}, - [908] = {.lex_state = 0, .external_lex_state = 2}, - [909] = {.lex_state = 0}, + [907] = {.lex_state = 22}, + [908] = {.lex_state = 0}, + [909] = {.lex_state = 22}, [910] = {.lex_state = 0}, - [911] = {.lex_state = 0}, - [912] = {.lex_state = 0, .external_lex_state = 2}, - [913] = {.lex_state = 0}, - [914] = {.lex_state = 61}, - [915] = {.lex_state = 0}, + [911] = {.lex_state = 22}, + [912] = {.lex_state = 22}, + [913] = {.lex_state = 22}, + [914] = {.lex_state = 22}, + [915] = {.lex_state = 61}, [916] = {.lex_state = 0}, - [917] = {.lex_state = 0}, + [917] = {.lex_state = 22}, [918] = {.lex_state = 0}, - [919] = {.lex_state = 0, .external_lex_state = 2}, + [919] = {.lex_state = 0}, [920] = {.lex_state = 0}, - [921] = {.lex_state = 0, .external_lex_state = 2}, + [921] = {.lex_state = 0}, [922] = {.lex_state = 0}, [923] = {.lex_state = 0}, - [924] = {.lex_state = 0}, + [924] = {.lex_state = 61}, [925] = {.lex_state = 0}, - [926] = {.lex_state = 0}, - [927] = {.lex_state = 0}, - [928] = {.lex_state = 0}, - [929] = {.lex_state = 61}, - [930] = {.lex_state = 0, .external_lex_state = 2}, + [926] = {.lex_state = 61}, + [927] = {.lex_state = 61}, + [928] = {.lex_state = 0, .external_lex_state = 2}, + [929] = {.lex_state = 0}, + [930] = {.lex_state = 0}, [931] = {.lex_state = 0}, [932] = {.lex_state = 0}, - [933] = {.lex_state = 0}, + [933] = {.lex_state = 0, .external_lex_state = 2}, [934] = {.lex_state = 0}, - [935] = {.lex_state = 0, .external_lex_state = 2}, + [935] = {.lex_state = 61}, [936] = {.lex_state = 61}, [937] = {.lex_state = 0}, [938] = {.lex_state = 0}, [939] = {.lex_state = 0}, - [940] = {.lex_state = 0, .external_lex_state = 2}, - [941] = {.lex_state = 0, .external_lex_state = 2}, + [940] = {.lex_state = 0}, + [941] = {.lex_state = 0}, [942] = {.lex_state = 0}, - [943] = {.lex_state = 0, .external_lex_state = 2}, + [943] = {.lex_state = 0}, [944] = {.lex_state = 0}, [945] = {.lex_state = 0}, [946] = {.lex_state = 0}, @@ -5139,40 +5232,40 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [950] = {.lex_state = 0}, [951] = {.lex_state = 0}, [952] = {.lex_state = 0}, - [953] = {.lex_state = 0}, - [954] = {.lex_state = 0, .external_lex_state = 2}, + [953] = {.lex_state = 61}, + [954] = {.lex_state = 0}, [955] = {.lex_state = 0}, - [956] = {.lex_state = 0}, + [956] = {.lex_state = 0, .external_lex_state = 2}, [957] = {.lex_state = 0}, [958] = {.lex_state = 0}, [959] = {.lex_state = 0}, - [960] = {.lex_state = 0, .external_lex_state = 2}, + [960] = {.lex_state = 0}, [961] = {.lex_state = 0}, [962] = {.lex_state = 0}, - [963] = {.lex_state = 0, .external_lex_state = 2}, + [963] = {.lex_state = 61}, [964] = {.lex_state = 0}, - [965] = {.lex_state = 0}, + [965] = {.lex_state = 0, .external_lex_state = 2}, [966] = {.lex_state = 0}, [967] = {.lex_state = 0}, - [968] = {.lex_state = 0}, + [968] = {.lex_state = 0, .external_lex_state = 2}, [969] = {.lex_state = 0}, - [970] = {.lex_state = 0}, + [970] = {.lex_state = 0, .external_lex_state = 2}, [971] = {.lex_state = 0}, [972] = {.lex_state = 0}, [973] = {.lex_state = 0}, - [974] = {.lex_state = 0}, - [975] = {.lex_state = 0, .external_lex_state = 2}, - [976] = {.lex_state = 0}, + [974] = {.lex_state = 61}, + [975] = {.lex_state = 61}, + [976] = {.lex_state = 61}, [977] = {.lex_state = 0}, [978] = {.lex_state = 0}, - [979] = {.lex_state = 21}, + [979] = {.lex_state = 0}, [980] = {.lex_state = 0}, [981] = {.lex_state = 0}, - [982] = {.lex_state = 0}, - [983] = {.lex_state = 0}, + [982] = {.lex_state = 0, .external_lex_state = 2}, + [983] = {.lex_state = 61}, [984] = {.lex_state = 0}, [985] = {.lex_state = 0}, - [986] = {.lex_state = 0}, + [986] = {.lex_state = 21}, [987] = {.lex_state = 0}, [988] = {.lex_state = 61}, [989] = {.lex_state = 0}, @@ -5181,13 +5274,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [992] = {.lex_state = 0}, [993] = {.lex_state = 0}, [994] = {.lex_state = 0}, - [995] = {.lex_state = 61}, + [995] = {.lex_state = 0}, [996] = {.lex_state = 0}, - [997] = {.lex_state = 8}, + [997] = {.lex_state = 0}, [998] = {.lex_state = 0}, [999] = {.lex_state = 0}, [1000] = {.lex_state = 0}, - [1001] = {.lex_state = 61}, + [1001] = {.lex_state = 0}, [1002] = {.lex_state = 0}, [1003] = {.lex_state = 0}, [1004] = {.lex_state = 0}, @@ -5203,125 +5296,161 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1014] = {.lex_state = 0}, [1015] = {.lex_state = 0}, [1016] = {.lex_state = 0}, - [1017] = {.lex_state = 61}, + [1017] = {.lex_state = 0}, [1018] = {.lex_state = 0}, [1019] = {.lex_state = 8}, [1020] = {.lex_state = 0}, [1021] = {.lex_state = 0}, [1022] = {.lex_state = 61}, - [1023] = {.lex_state = 8}, - [1024] = {.lex_state = 0}, - [1025] = {.lex_state = 61}, - [1026] = {.lex_state = 8}, + [1023] = {.lex_state = 0, .external_lex_state = 2}, + [1024] = {.lex_state = 8}, + [1025] = {.lex_state = 0}, + [1026] = {.lex_state = 0}, [1027] = {.lex_state = 0}, [1028] = {.lex_state = 0}, [1029] = {.lex_state = 0}, [1030] = {.lex_state = 0}, [1031] = {.lex_state = 0}, [1032] = {.lex_state = 0}, - [1033] = {.lex_state = 0, .external_lex_state = 2}, - [1034] = {.lex_state = 0}, - [1035] = {.lex_state = 61}, + [1033] = {.lex_state = 0}, + [1034] = {.lex_state = 0, .external_lex_state = 2}, + [1035] = {.lex_state = 0}, [1036] = {.lex_state = 0}, - [1037] = {.lex_state = 0}, - [1038] = {.lex_state = 0}, + [1037] = {.lex_state = 0, .external_lex_state = 2}, + [1038] = {.lex_state = 0, .external_lex_state = 2}, [1039] = {.lex_state = 0}, [1040] = {.lex_state = 0}, [1041] = {.lex_state = 0}, [1042] = {.lex_state = 0}, - [1043] = {.lex_state = 0}, + [1043] = {.lex_state = 0, .external_lex_state = 2}, [1044] = {.lex_state = 0}, [1045] = {.lex_state = 0}, - [1046] = {.lex_state = 7}, - [1047] = {.lex_state = 61}, - [1048] = {.lex_state = 61}, - [1049] = {.lex_state = 7}, - [1050] = {.lex_state = 61}, - [1051] = {.lex_state = 61}, + [1046] = {.lex_state = 0}, + [1047] = {.lex_state = 0}, + [1048] = {.lex_state = 0}, + [1049] = {.lex_state = 0}, + [1050] = {.lex_state = 0, .external_lex_state = 2}, + [1051] = {.lex_state = 0}, [1052] = {.lex_state = 0}, [1053] = {.lex_state = 0}, - [1054] = {.lex_state = 61}, + [1054] = {.lex_state = 0}, [1055] = {.lex_state = 61}, [1056] = {.lex_state = 0}, - [1057] = {.lex_state = 61}, - [1058] = {.lex_state = 61}, + [1057] = {.lex_state = 8}, + [1058] = {.lex_state = 0}, [1059] = {.lex_state = 0}, [1060] = {.lex_state = 0}, - [1061] = {.lex_state = 61}, - [1062] = {.lex_state = 61}, - [1063] = {.lex_state = 61}, - [1064] = {.lex_state = 61}, + [1061] = {.lex_state = 0, .external_lex_state = 2}, + [1062] = {.lex_state = 0, .external_lex_state = 2}, + [1063] = {.lex_state = 0}, + [1064] = {.lex_state = 0}, [1065] = {.lex_state = 0}, - [1066] = {.lex_state = 61}, - [1067] = {.lex_state = 0}, + [1066] = {.lex_state = 0}, + [1067] = {.lex_state = 61}, [1068] = {.lex_state = 0}, - [1069] = {.lex_state = 61}, - [1070] = {.lex_state = 61}, + [1069] = {.lex_state = 8}, + [1070] = {.lex_state = 0}, [1071] = {.lex_state = 0}, - [1072] = {.lex_state = 61}, - [1073] = {.lex_state = 61}, - [1074] = {.lex_state = 61}, + [1072] = {.lex_state = 0}, + [1073] = {.lex_state = 0}, + [1074] = {.lex_state = 0}, [1075] = {.lex_state = 61}, [1076] = {.lex_state = 61}, - [1077] = {.lex_state = 61}, - [1078] = {.lex_state = 0}, + [1077] = {.lex_state = 13}, + [1078] = {.lex_state = 7}, [1079] = {.lex_state = 61}, - [1080] = {.lex_state = 13}, - [1081] = {.lex_state = 0}, - [1082] = {.lex_state = 0}, + [1080] = {.lex_state = 61}, + [1081] = {.lex_state = 61}, + [1082] = {.lex_state = 7}, [1083] = {.lex_state = 61}, - [1084] = {.lex_state = 61}, + [1084] = {.lex_state = 0}, [1085] = {.lex_state = 61}, - [1086] = {.lex_state = 0}, - [1087] = {.lex_state = 61}, - [1088] = {.lex_state = 61}, + [1086] = {.lex_state = 61}, + [1087] = {.lex_state = 0}, + [1088] = {.lex_state = 0}, [1089] = {.lex_state = 61}, - [1090] = {.lex_state = 0}, + [1090] = {.lex_state = 61}, [1091] = {.lex_state = 0}, [1092] = {.lex_state = 61}, [1093] = {.lex_state = 0}, [1094] = {.lex_state = 61}, - [1095] = {.lex_state = 0}, + [1095] = {.lex_state = 61}, [1096] = {.lex_state = 0}, [1097] = {.lex_state = 61}, - [1098] = {.lex_state = 61}, - [1099] = {.lex_state = 0}, + [1098] = {.lex_state = 0}, + [1099] = {.lex_state = 61}, [1100] = {.lex_state = 0}, [1101] = {.lex_state = 0}, - [1102] = {.lex_state = 61}, + [1102] = {.lex_state = 0}, [1103] = {.lex_state = 0}, - [1104] = {.lex_state = 0}, + [1104] = {.lex_state = 61}, [1105] = {.lex_state = 0}, - [1106] = {.lex_state = 0}, - [1107] = {.lex_state = 0}, + [1106] = {.lex_state = 61}, + [1107] = {.lex_state = 61}, [1108] = {.lex_state = 61}, - [1109] = {.lex_state = 13}, + [1109] = {.lex_state = 0}, [1110] = {.lex_state = 0}, [1111] = {.lex_state = 0}, [1112] = {.lex_state = 0}, [1113] = {.lex_state = 61}, - [1114] = {.lex_state = 0}, - [1115] = {.lex_state = 61}, - [1116] = {.lex_state = 61}, + [1114] = {.lex_state = 61}, + [1115] = {.lex_state = 0}, + [1116] = {.lex_state = 0}, [1117] = {.lex_state = 0}, - [1118] = {.lex_state = 61}, - [1119] = {.lex_state = 61}, - [1120] = {.lex_state = 61}, + [1118] = {.lex_state = 0}, + [1119] = {.lex_state = 0}, + [1120] = {.lex_state = 0}, [1121] = {.lex_state = 0}, - [1122] = {.lex_state = 0}, + [1122] = {.lex_state = 61}, [1123] = {.lex_state = 61}, [1124] = {.lex_state = 61}, [1125] = {.lex_state = 61}, - [1126] = {.lex_state = 0}, + [1126] = {.lex_state = 61}, [1127] = {.lex_state = 0}, - [1128] = {.lex_state = 61}, - [1129] = {.lex_state = 0}, - [1130] = {.lex_state = 0}, + [1128] = {.lex_state = 0}, + [1129] = {.lex_state = 61}, + [1130] = {.lex_state = 61}, [1131] = {.lex_state = 61}, [1132] = {.lex_state = 61}, [1133] = {.lex_state = 61}, [1134] = {.lex_state = 61}, [1135] = {.lex_state = 61}, + [1136] = {.lex_state = 0}, + [1137] = {.lex_state = 61}, + [1138] = {.lex_state = 61}, + [1139] = {.lex_state = 61}, + [1140] = {.lex_state = 61}, + [1141] = {.lex_state = 0}, + [1142] = {.lex_state = 0}, + [1143] = {.lex_state = 0}, + [1144] = {.lex_state = 61}, + [1145] = {.lex_state = 0}, + [1146] = {.lex_state = 61}, + [1147] = {.lex_state = 0}, + [1148] = {.lex_state = 61}, + [1149] = {.lex_state = 0}, + [1150] = {.lex_state = 61}, + [1151] = {.lex_state = 61}, + [1152] = {.lex_state = 0}, + [1153] = {.lex_state = 13}, + [1154] = {.lex_state = 61}, + [1155] = {.lex_state = 0}, + [1156] = {.lex_state = 0}, + [1157] = {.lex_state = 0}, + [1158] = {.lex_state = 0}, + [1159] = {.lex_state = 0}, + [1160] = {.lex_state = 0}, + [1161] = {.lex_state = 61}, + [1162] = {.lex_state = 0}, + [1163] = {.lex_state = 61}, + [1164] = {.lex_state = 0}, + [1165] = {.lex_state = 61}, + [1166] = {.lex_state = 61}, + [1167] = {.lex_state = 0}, + [1168] = {.lex_state = 0}, + [1169] = {.lex_state = 61}, + [1170] = {.lex_state = 61}, + [1171] = {.lex_state = 61}, }; enum { @@ -5364,8 +5493,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_var] = ACTIONS(1), [anon_sym_let] = ACTIONS(1), [anon_sym_const] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), [anon_sym_switch] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), @@ -5400,6 +5529,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), [anon_sym_EQ_GT] = ACTIONS(1), + [anon_sym_QMARK_DOT] = ACTIONS(1), [anon_sym_new] = ACTIONS(1), [anon_sym_PLUS_EQ] = ACTIONS(1), [anon_sym_DASH_EQ] = ACTIONS(1), @@ -5412,6 +5542,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT_GT_EQ] = ACTIONS(1), [anon_sym_LT_LT_EQ] = ACTIONS(1), [anon_sym_STAR_STAR_EQ] = ACTIONS(1), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1), [anon_sym_DOT_DOT_DOT] = ACTIONS(1), [anon_sym_QMARK] = ACTIONS(1), [anon_sym_AMP_AMP] = ACTIONS(1), @@ -5465,66 +5598,67 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__template_chars] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(1130), - [sym_export_statement] = STATE(22), - [sym__declaration] = STATE(22), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(22), - [sym_lexical_declaration] = STATE(22), - [sym_statement_block] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_switch_statement] = STATE(22), - [sym_for_statement] = STATE(22), - [sym_for_in_statement] = STATE(22), - [sym_while_statement] = STATE(22), - [sym_do_statement] = STATE(22), - [sym_try_statement] = STATE(22), - [sym_with_statement] = STATE(22), - [sym_break_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_debugger_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_throw_statement] = STATE(22), - [sym_empty_statement] = STATE(22), - [sym_labeled_statement] = STATE(22), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(22), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(22), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(22), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(747), + [sym_program] = STATE(1168), + [sym_export_statement] = STATE(16), + [sym__declaration] = STATE(16), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_for_in_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_try_statement] = STATE(16), + [sym_with_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_debugger_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_throw_statement] = STATE(16), + [sym_empty_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(761), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -5572,90 +5706,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(89), }, [2] = { - [sym_export_statement] = STATE(12), - [sym__declaration] = STATE(12), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(12), - [sym_lexical_declaration] = STATE(12), - [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(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(532), - [sym_assignment_pattern] = STATE(809), - [sym_array] = STATE(529), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(12), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(12), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(12), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_spread_element] = STATE(809), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(534), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [sym_method_definition] = STATE(809), - [sym_pair] = STATE(809), - [sym__property_name] = STATE(890), - [sym_computed_property_name] = STATE(890), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(594), - [aux_sym_object_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(93), + [sym_export_statement] = STATE(11), + [sym__declaration] = STATE(11), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [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(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(531), + [sym_assignment_pattern] = STATE(916), + [sym_array] = STATE(528), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_spread_element] = STATE(916), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(541), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [sym_method_definition] = STATE(916), + [sym_pair] = STATE(916), + [sym__property_name] = STATE(918), + [sym_computed_property_name] = STATE(918), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(617), + [aux_sym_object_repeat1] = STATE(906), + [sym_identifier] = ACTIONS(91), [anon_sym_export] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(97), - [anon_sym_RBRACE] = ACTIONS(99), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(97), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -5676,14 +5811,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(99), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(101), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -5697,91 +5832,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(107), + [sym_number] = ACTIONS(105), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(109), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [sym_preproc] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(107), + [anon_sym_get] = ACTIONS(109), + [anon_sym_set] = ACTIONS(109), + [sym_preproc] = ACTIONS(111), }, [3] = { - [sym_export_statement] = STATE(14), - [sym__declaration] = STATE(14), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(14), - [sym_lexical_declaration] = STATE(14), - [sym_statement_block] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_for_in_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_try_statement] = STATE(14), - [sym_with_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_debugger_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_throw_statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(532), - [sym_assignment_pattern] = STATE(809), - [sym_array] = STATE(529), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(14), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(14), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(14), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_spread_element] = STATE(809), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(534), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [sym_method_definition] = STATE(809), - [sym_pair] = STATE(809), - [sym__property_name] = STATE(890), - [sym_computed_property_name] = STATE(890), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(594), - [aux_sym_object_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(93), + [sym_export_statement] = STATE(18), + [sym__declaration] = STATE(18), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [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(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(531), + [sym_assignment_pattern] = STATE(835), + [sym_array] = STATE(528), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_spread_element] = STATE(835), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(541), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [sym_method_definition] = STATE(835), + [sym_pair] = STATE(835), + [sym__property_name] = STATE(918), + [sym_computed_property_name] = STATE(918), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(617), + [aux_sym_object_repeat1] = STATE(904), + [sym_identifier] = ACTIONS(113), [anon_sym_export] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(97), + [anon_sym_COMMA] = ACTIONS(95), [anon_sym_RBRACE] = ACTIONS(115), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), @@ -5803,14 +5939,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(99), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(117), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -5824,92 +5960,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(107), + [sym_number] = ACTIONS(105), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(109), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [sym_preproc] = ACTIONS(117), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(119), + [anon_sym_get] = ACTIONS(121), + [anon_sym_set] = ACTIONS(121), + [sym_preproc] = ACTIONS(123), }, [4] = { - [sym_export_statement] = STATE(19), - [sym__declaration] = STATE(19), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(19), - [sym_lexical_declaration] = STATE(19), - [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(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(532), - [sym_assignment_pattern] = STATE(884), - [sym_array] = STATE(529), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(19), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(19), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(19), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_spread_element] = STATE(884), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(534), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [sym_method_definition] = STATE(884), - [sym_pair] = STATE(884), - [sym__property_name] = STATE(890), - [sym_computed_property_name] = STATE(890), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(594), - [aux_sym_object_repeat1] = STATE(889), - [sym_identifier] = ACTIONS(119), + [sym_export_statement] = STATE(13), + [sym__declaration] = STATE(13), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [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(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(531), + [sym_assignment_pattern] = STATE(916), + [sym_array] = STATE(528), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_spread_element] = STATE(916), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(541), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [sym_method_definition] = STATE(916), + [sym_pair] = STATE(916), + [sym__property_name] = STATE(918), + [sym_computed_property_name] = STATE(918), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(617), + [aux_sym_object_repeat1] = STATE(906), + [sym_identifier] = ACTIONS(91), [anon_sym_export] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(97), - [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -5930,14 +6067,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(99), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(123), + [anon_sym_async] = ACTIONS(101), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -5951,92 +6088,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(107), + [sym_number] = ACTIONS(105), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(125), - [anon_sym_get] = ACTIONS(127), - [anon_sym_set] = ACTIONS(127), - [sym_preproc] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(107), + [anon_sym_get] = ACTIONS(109), + [anon_sym_set] = ACTIONS(109), + [sym_preproc] = ACTIONS(127), }, [5] = { - [sym_export_statement] = STATE(12), - [sym__declaration] = STATE(12), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(12), - [sym_lexical_declaration] = STATE(12), - [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(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(532), - [sym_assignment_pattern] = STATE(809), - [sym_array] = STATE(529), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(12), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(12), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(12), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_spread_element] = STATE(809), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(534), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [sym_method_definition] = STATE(809), - [sym_pair] = STATE(809), - [sym__property_name] = STATE(890), - [sym_computed_property_name] = STATE(890), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(594), - [aux_sym_object_repeat1] = STATE(885), - [sym_identifier] = ACTIONS(93), + [sym_export_statement] = STATE(13), + [sym__declaration] = STATE(13), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [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(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(531), + [sym_assignment_pattern] = STATE(916), + [sym_array] = STATE(528), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_spread_element] = STATE(916), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(541), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [sym_method_definition] = STATE(916), + [sym_pair] = STATE(916), + [sym__property_name] = STATE(918), + [sym_computed_property_name] = STATE(918), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(617), + [aux_sym_object_repeat1] = STATE(906), + [sym_identifier] = ACTIONS(91), [anon_sym_export] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(95), + [anon_sym_STAR] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_COMMA] = ACTIONS(97), - [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(95), + [anon_sym_RBRACE] = ACTIONS(129), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6057,14 +6195,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), [anon_sym_yield] = ACTIONS(51), - [anon_sym_LBRACK] = ACTIONS(101), + [anon_sym_LBRACK] = ACTIONS(99), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(103), + [anon_sym_async] = ACTIONS(101), [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), [anon_sym_BANG] = ACTIONS(69), @@ -6078,27 +6216,27 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(107), + [sym_number] = ACTIONS(105), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(109), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [sym_preproc] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(107), + [anon_sym_get] = ACTIONS(109), + [anon_sym_set] = ACTIONS(109), + [sym_preproc] = ACTIONS(127), }, [6] = { [sym_export_statement] = STATE(6), [sym__declaration] = STATE(6), - [sym_import] = STATE(481), + [sym_import] = STATE(581), [sym_import_statement] = STATE(6), [sym_expression_statement] = STATE(6), - [sym_variable_declaration] = STATE(6), - [sym_lexical_declaration] = STATE(6), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), [sym_statement_block] = STATE(6), [sym_if_statement] = STATE(6), [sym_switch_statement] = STATE(6), @@ -6115,110 +6253,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(6), [sym_empty_statement] = STATE(6), [sym_labeled_statement] = STATE(6), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(6), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(6), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(6), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), [aux_sym_program_repeat1] = STATE(6), - [aux_sym_export_statement_repeat1] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(135), - [anon_sym_export] = ACTIONS(138), - [anon_sym_default] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_import] = ACTIONS(146), - [anon_sym_var] = ACTIONS(149), - [anon_sym_let] = ACTIONS(152), - [anon_sym_const] = ACTIONS(152), - [anon_sym_if] = ACTIONS(155), - [anon_sym_switch] = ACTIONS(158), - [anon_sym_for] = ACTIONS(161), - [anon_sym_LPAREN] = ACTIONS(164), - [anon_sym_await] = ACTIONS(167), - [anon_sym_while] = ACTIONS(170), - [anon_sym_do] = ACTIONS(173), - [anon_sym_try] = ACTIONS(176), - [anon_sym_with] = ACTIONS(179), - [anon_sym_break] = ACTIONS(182), - [anon_sym_continue] = ACTIONS(185), - [anon_sym_debugger] = ACTIONS(188), - [anon_sym_return] = ACTIONS(191), - [anon_sym_throw] = ACTIONS(194), - [anon_sym_SEMI] = ACTIONS(197), - [anon_sym_case] = ACTIONS(141), - [anon_sym_yield] = ACTIONS(200), - [anon_sym_LBRACK] = ACTIONS(203), - [anon_sym_LT] = ACTIONS(206), - [anon_sym_SLASH] = ACTIONS(209), - [anon_sym_class] = ACTIONS(212), - [anon_sym_async] = ACTIONS(215), - [anon_sym_function] = ACTIONS(218), - [anon_sym_new] = ACTIONS(221), - [anon_sym_PLUS] = ACTIONS(224), - [anon_sym_DASH] = ACTIONS(224), - [anon_sym_BANG] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(227), - [anon_sym_typeof] = ACTIONS(230), - [anon_sym_void] = ACTIONS(230), - [anon_sym_delete] = ACTIONS(230), - [anon_sym_PLUS_PLUS] = ACTIONS(233), - [anon_sym_DASH_DASH] = ACTIONS(233), - [anon_sym_DQUOTE] = ACTIONS(236), - [anon_sym_SQUOTE] = ACTIONS(239), + [aux_sym_export_statement_repeat1] = STATE(761), + [ts_builtin_sym_end] = ACTIONS(131), + [sym_identifier] = ACTIONS(133), + [anon_sym_export] = ACTIONS(136), + [anon_sym_default] = ACTIONS(139), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_import] = ACTIONS(144), + [anon_sym_var] = ACTIONS(147), + [anon_sym_let] = ACTIONS(150), + [anon_sym_const] = ACTIONS(150), + [anon_sym_if] = ACTIONS(153), + [anon_sym_switch] = ACTIONS(156), + [anon_sym_for] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_await] = ACTIONS(165), + [anon_sym_while] = ACTIONS(168), + [anon_sym_do] = ACTIONS(171), + [anon_sym_try] = ACTIONS(174), + [anon_sym_with] = ACTIONS(177), + [anon_sym_break] = ACTIONS(180), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(186), + [anon_sym_return] = ACTIONS(189), + [anon_sym_throw] = ACTIONS(192), + [anon_sym_SEMI] = ACTIONS(195), + [anon_sym_case] = ACTIONS(139), + [anon_sym_yield] = ACTIONS(198), + [anon_sym_LBRACK] = ACTIONS(201), + [anon_sym_LT] = ACTIONS(204), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_class] = ACTIONS(210), + [anon_sym_async] = ACTIONS(213), + [anon_sym_function] = ACTIONS(216), + [anon_sym_new] = ACTIONS(219), + [anon_sym_PLUS] = ACTIONS(222), + [anon_sym_DASH] = ACTIONS(222), + [anon_sym_BANG] = ACTIONS(225), + [anon_sym_TILDE] = ACTIONS(225), + [anon_sym_typeof] = ACTIONS(228), + [anon_sym_void] = ACTIONS(228), + [anon_sym_delete] = ACTIONS(228), + [anon_sym_PLUS_PLUS] = ACTIONS(231), + [anon_sym_DASH_DASH] = ACTIONS(231), + [anon_sym_DQUOTE] = ACTIONS(234), + [anon_sym_SQUOTE] = ACTIONS(237), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(242), - [sym_number] = ACTIONS(245), - [sym_this] = ACTIONS(248), - [sym_super] = ACTIONS(251), - [sym_true] = ACTIONS(248), - [sym_false] = ACTIONS(248), - [sym_null] = ACTIONS(248), - [sym_undefined] = ACTIONS(248), - [anon_sym_AT] = ACTIONS(254), - [anon_sym_static] = ACTIONS(257), - [anon_sym_get] = ACTIONS(257), - [anon_sym_set] = ACTIONS(257), - [sym_preproc] = ACTIONS(260), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_number] = ACTIONS(243), + [sym_this] = ACTIONS(246), + [sym_super] = ACTIONS(246), + [sym_true] = ACTIONS(246), + [sym_false] = ACTIONS(246), + [sym_null] = ACTIONS(246), + [sym_undefined] = ACTIONS(246), + [anon_sym_AT] = ACTIONS(249), + [anon_sym_static] = ACTIONS(252), + [anon_sym_get] = ACTIONS(252), + [anon_sym_set] = ACTIONS(252), + [sym_preproc] = ACTIONS(255), }, [7] = { [sym_export_statement] = STATE(6), [sym__declaration] = STATE(6), - [sym_import] = STATE(481), + [sym_import] = STATE(581), [sym_import_statement] = STATE(6), [sym_expression_statement] = STATE(6), - [sym_variable_declaration] = STATE(6), - [sym_lexical_declaration] = STATE(6), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), [sym_statement_block] = STATE(6), [sym_if_statement] = STATE(6), [sym_switch_statement] = STATE(6), @@ -6235,47 +6374,48 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(6), [sym_empty_statement] = STATE(6), [sym_labeled_statement] = STATE(6), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(6), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(6), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(6), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), [aux_sym_program_repeat1] = STATE(6), - [aux_sym_export_statement_repeat1] = STATE(747), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(263), + [anon_sym_default] = ACTIONS(258), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(260), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6295,7 +6435,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(263), + [anon_sym_case] = ACTIONS(258), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -6319,82 +6459,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(262), }, [8] = { - [sym_export_statement] = STATE(7), - [sym__declaration] = STATE(7), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(7), - [sym_expression_statement] = STATE(7), - [sym_variable_declaration] = STATE(7), - [sym_lexical_declaration] = STATE(7), - [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(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(7), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(7), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(7), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(7), - [aux_sym_export_statement_repeat1] = STATE(747), + [sym_export_statement] = STATE(6), + [sym__declaration] = STATE(6), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_switch_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_for_in_statement] = STATE(6), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_try_statement] = STATE(6), + [sym_with_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_debugger_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_throw_statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_labeled_statement] = STATE(6), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(269), + [anon_sym_default] = ACTIONS(264), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(271), + [anon_sym_RBRACE] = ACTIONS(266), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6414,7 +6555,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(269), + [anon_sym_case] = ACTIONS(264), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -6438,82 +6579,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(273), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(262), }, [9] = { - [sym_export_statement] = STATE(6), - [sym__declaration] = STATE(6), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_variable_declaration] = STATE(6), - [sym_lexical_declaration] = STATE(6), - [sym_statement_block] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_for_in_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_try_statement] = STATE(6), - [sym_with_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_debugger_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_throw_statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_labeled_statement] = STATE(6), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(6), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(6), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(6), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_export_statement_repeat1] = STATE(747), + [sym_export_statement] = STATE(8), + [sym__declaration] = STATE(8), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(8), + [sym_expression_statement] = STATE(8), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_switch_statement] = STATE(8), + [sym_for_statement] = STATE(8), + [sym_for_in_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_statement] = STATE(8), + [sym_try_statement] = STATE(8), + [sym_with_statement] = STATE(8), + [sym_break_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_debugger_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_throw_statement] = STATE(8), + [sym_empty_statement] = STATE(8), + [sym_labeled_statement] = STATE(8), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(8), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(275), + [anon_sym_default] = ACTIONS(268), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(270), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6533,7 +6675,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(275), + [anon_sym_case] = ACTIONS(268), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -6557,82 +6699,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(272), }, [10] = { - [sym_export_statement] = STATE(9), - [sym__declaration] = STATE(9), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(9), - [sym_expression_statement] = STATE(9), - [sym_variable_declaration] = STATE(9), - [sym_lexical_declaration] = STATE(9), - [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(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(9), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(9), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(9), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(9), - [aux_sym_export_statement_repeat1] = STATE(747), + [sym_export_statement] = STATE(7), + [sym__declaration] = STATE(7), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(7), + [sym_expression_statement] = STATE(7), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [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(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(279), + [anon_sym_default] = ACTIONS(274), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(276), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6652,7 +6795,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(45), [anon_sym_throw] = ACTIONS(47), [anon_sym_SEMI] = ACTIONS(49), - [anon_sym_case] = ACTIONS(279), + [anon_sym_case] = ACTIONS(274), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), @@ -6676,25 +6819,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(283), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(278), }, [11] = { [sym_export_statement] = STATE(6), [sym__declaration] = STATE(6), - [sym_import] = STATE(481), + [sym_import] = STATE(581), [sym_import_statement] = STATE(6), [sym_expression_statement] = STATE(6), - [sym_variable_declaration] = STATE(6), - [sym_lexical_declaration] = STATE(6), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), [sym_statement_block] = STATE(6), [sym_if_statement] = STATE(6), [sym_switch_statement] = STATE(6), @@ -6711,46 +6854,47 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(6), [sym_empty_statement] = STATE(6), [sym_labeled_statement] = STATE(6), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(6), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(6), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(6), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), [aux_sym_program_repeat1] = STATE(6), - [aux_sym_export_statement_repeat1] = STATE(747), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(280), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6793,81 +6937,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(262), }, [12] = { - [sym_export_statement] = STATE(6), - [sym__declaration] = STATE(6), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_variable_declaration] = STATE(6), - [sym_lexical_declaration] = STATE(6), - [sym_statement_block] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_for_in_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_try_statement] = STATE(6), - [sym_with_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_debugger_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_throw_statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_labeled_statement] = STATE(6), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(6), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(6), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(6), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_export_statement_repeat1] = STATE(747), + [sym_export_statement] = STATE(13), + [sym__declaration] = STATE(13), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [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(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(282), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -6910,142 +7055,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(127), }, [13] = { - [sym_export_statement] = STATE(23), - [sym__declaration] = STATE(23), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(23), - [sym_lexical_declaration] = STATE(23), - [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(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(23), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(23), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(23), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(289), - [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_LT] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [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(85), - [sym_true] = ACTIONS(83), - [sym_false] = ACTIONS(83), - [sym_null] = ACTIONS(83), - [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(291), - }, - [14] = { [sym_export_statement] = STATE(6), [sym__declaration] = STATE(6), - [sym_import] = STATE(481), + [sym_import] = STATE(581), [sym_import_statement] = STATE(6), [sym_expression_statement] = STATE(6), - [sym_variable_declaration] = STATE(6), - [sym_lexical_declaration] = STATE(6), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), [sym_statement_block] = STATE(6), [sym_if_statement] = STATE(6), [sym_switch_statement] = STATE(6), @@ -7062,46 +7090,47 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(6), [sym_empty_statement] = STATE(6), [sym_labeled_statement] = STATE(6), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(6), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(6), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(6), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), [aux_sym_program_repeat1] = STATE(6), - [aux_sym_export_statement_repeat1] = STATE(747), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(284), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7144,81 +7173,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(262), }, - [15] = { - [sym_export_statement] = STATE(19), - [sym__declaration] = STATE(19), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(19), - [sym_lexical_declaration] = STATE(19), - [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(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(19), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(19), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(19), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(747), + [14] = { + [sym_export_statement] = STATE(17), + [sym__declaration] = STATE(17), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_for_in_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_try_statement] = STATE(17), + [sym_with_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_debugger_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_throw_statement] = STATE(17), + [sym_empty_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(761), + [ts_builtin_sym_end] = ACTIONS(286), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(295), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7261,81 +7291,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(129), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(288), }, - [16] = { - [sym_export_statement] = STATE(11), - [sym__declaration] = STATE(11), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(11), - [sym_lexical_declaration] = STATE(11), - [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(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(11), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(11), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(11), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(747), + [15] = { + [sym_export_statement] = STATE(6), + [sym__declaration] = STATE(6), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_switch_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_for_in_statement] = STATE(6), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_try_statement] = STATE(6), + [sym_with_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_debugger_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_throw_statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_labeled_statement] = STATE(6), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(290), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7378,25 +7409,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(299), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(262), }, - [17] = { + [16] = { [sym_export_statement] = STATE(6), [sym__declaration] = STATE(6), - [sym_import] = STATE(481), + [sym_import] = STATE(581), [sym_import_statement] = STATE(6), [sym_expression_statement] = STATE(6), - [sym_variable_declaration] = STATE(6), - [sym_lexical_declaration] = STATE(6), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), [sym_statement_block] = STATE(6), [sym_if_statement] = STATE(6), [sym_switch_statement] = STATE(6), @@ -7413,46 +7444,47 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(6), [sym_empty_statement] = STATE(6), [sym_labeled_statement] = STATE(6), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(6), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(6), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(6), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), [aux_sym_program_repeat1] = STATE(6), - [aux_sym_export_statement_repeat1] = STATE(747), + [aux_sym_export_statement_repeat1] = STATE(761), + [ts_builtin_sym_end] = ACTIONS(286), [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), @@ -7495,81 +7527,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(262), }, - [18] = { - [sym_export_statement] = STATE(17), - [sym__declaration] = STATE(17), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(17), - [sym_lexical_declaration] = STATE(17), - [sym_statement_block] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_for_in_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_try_statement] = STATE(17), - [sym_with_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_debugger_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym_empty_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(17), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(17), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(17), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(747), + [17] = { + [sym_export_statement] = STATE(6), + [sym__declaration] = STATE(6), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(6), + [sym_expression_statement] = STATE(6), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(6), + [sym_if_statement] = STATE(6), + [sym_switch_statement] = STATE(6), + [sym_for_statement] = STATE(6), + [sym_for_in_statement] = STATE(6), + [sym_while_statement] = STATE(6), + [sym_do_statement] = STATE(6), + [sym_try_statement] = STATE(6), + [sym_with_statement] = STATE(6), + [sym_break_statement] = STATE(6), + [sym_continue_statement] = STATE(6), + [sym_debugger_statement] = STATE(6), + [sym_return_statement] = STATE(6), + [sym_throw_statement] = STATE(6), + [sym_empty_statement] = STATE(6), + [sym_labeled_statement] = STATE(6), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(6), + [aux_sym_export_statement_repeat1] = STATE(761), + [ts_builtin_sym_end] = ACTIONS(292), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7612,25 +7645,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(305), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(262), }, - [19] = { + [18] = { [sym_export_statement] = STATE(6), [sym__declaration] = STATE(6), - [sym_import] = STATE(481), + [sym_import] = STATE(581), [sym_import_statement] = STATE(6), [sym_expression_statement] = STATE(6), - [sym_variable_declaration] = STATE(6), - [sym_lexical_declaration] = STATE(6), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), [sym_statement_block] = STATE(6), [sym_if_statement] = STATE(6), [sym_switch_statement] = STATE(6), @@ -7647,46 +7680,47 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(6), [sym_empty_statement] = STATE(6), [sym_labeled_statement] = STATE(6), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(6), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(6), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(6), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), [aux_sym_program_repeat1] = STATE(6), - [aux_sym_export_statement_repeat1] = STATE(747), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(294), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7729,81 +7763,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(262), }, - [20] = { - [sym_export_statement] = STATE(12), - [sym__declaration] = STATE(12), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(12), - [sym_lexical_declaration] = STATE(12), - [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(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(12), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(12), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(12), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(747), + [19] = { + [sym_export_statement] = STATE(18), + [sym__declaration] = STATE(18), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [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(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(296), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7846,81 +7881,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(113), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(123), }, - [21] = { - [sym_export_statement] = STATE(14), - [sym__declaration] = STATE(14), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(14), - [sym_lexical_declaration] = STATE(14), - [sym_statement_block] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_for_in_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_try_statement] = STATE(14), - [sym_with_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_debugger_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_throw_statement] = STATE(14), - [sym_empty_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(14), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(14), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(14), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(747), + [20] = { + [sym_export_statement] = STATE(11), + [sym__declaration] = STATE(11), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [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(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), - [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(298), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -7963,25 +7999,25 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(117), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(111), }, - [22] = { + [21] = { [sym_export_statement] = STATE(6), [sym__declaration] = STATE(6), - [sym_import] = STATE(481), + [sym_import] = STATE(581), [sym_import_statement] = STATE(6), [sym_expression_statement] = STATE(6), - [sym_variable_declaration] = STATE(6), - [sym_lexical_declaration] = STATE(6), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), [sym_statement_block] = STATE(6), [sym_if_statement] = STATE(6), [sym_switch_statement] = STATE(6), @@ -7998,46 +8034,47 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(6), [sym_empty_statement] = STATE(6), [sym_labeled_statement] = STATE(6), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(6), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(6), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(6), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), [aux_sym_program_repeat1] = STATE(6), - [aux_sym_export_statement_repeat1] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(289), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(300), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8080,81 +8117,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(262), }, - [23] = { - [sym_export_statement] = STATE(6), - [sym__declaration] = STATE(6), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(6), - [sym_expression_statement] = STATE(6), - [sym_variable_declaration] = STATE(6), - [sym_lexical_declaration] = STATE(6), - [sym_statement_block] = STATE(6), - [sym_if_statement] = STATE(6), - [sym_switch_statement] = STATE(6), - [sym_for_statement] = STATE(6), - [sym_for_in_statement] = STATE(6), - [sym_while_statement] = STATE(6), - [sym_do_statement] = STATE(6), - [sym_try_statement] = STATE(6), - [sym_with_statement] = STATE(6), - [sym_break_statement] = STATE(6), - [sym_continue_statement] = STATE(6), - [sym_debugger_statement] = STATE(6), - [sym_return_statement] = STATE(6), - [sym_throw_statement] = STATE(6), - [sym_empty_statement] = STATE(6), - [sym_labeled_statement] = STATE(6), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(6), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(6), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(6), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_program_repeat1] = STATE(6), - [aux_sym_export_statement_repeat1] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(311), + [22] = { + [sym_export_statement] = STATE(21), + [sym__declaration] = STATE(21), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_for_in_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_try_statement] = STATE(21), + [sym_with_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_debugger_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_throw_statement] = STATE(21), + [sym_empty_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(302), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), @@ -8197,92 +8235,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(304), }, - [24] = { - [sym_export_statement] = STATE(1001), - [sym__declaration] = STATE(1001), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(1001), - [sym_expression_statement] = STATE(1001), - [sym_variable_declaration] = STATE(1001), - [sym_lexical_declaration] = STATE(1001), - [sym_statement_block] = STATE(1001), - [sym_if_statement] = STATE(1001), - [sym_switch_statement] = STATE(1001), - [sym_for_statement] = STATE(1001), - [sym_for_in_statement] = STATE(1001), - [sym_while_statement] = STATE(1001), - [sym_do_statement] = STATE(1001), - [sym_try_statement] = STATE(1001), - [sym_with_statement] = STATE(1001), - [sym_break_statement] = STATE(1001), - [sym_continue_statement] = STATE(1001), - [sym_debugger_statement] = STATE(1001), - [sym_return_statement] = STATE(1001), - [sym_throw_statement] = STATE(1001), - [sym_empty_statement] = STATE(1001), - [sym_labeled_statement] = STATE(1001), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(1001), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(1001), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(1001), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(726), - [sym_identifier] = ACTIONS(313), - [anon_sym_export] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(317), + [23] = { + [sym_export_statement] = STATE(15), + [sym__declaration] = STATE(15), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [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(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(761), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_LBRACE] = ACTIONS(13), + [anon_sym_RBRACE] = ACTIONS(298), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(319), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(321), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(323), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(325), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -8293,9 +8334,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(327), - [anon_sym_async] = ACTIONS(329), - [anon_sym_function] = ACTIONS(331), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -8312,92 +8353,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(333), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [sym_preproc] = ACTIONS(335), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(306), }, - [25] = { - [sym_export_statement] = STATE(213), - [sym__declaration] = STATE(213), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(213), - [sym_expression_statement] = STATE(213), - [sym_variable_declaration] = STATE(213), - [sym_lexical_declaration] = STATE(213), - [sym_statement_block] = STATE(213), - [sym_if_statement] = STATE(213), - [sym_switch_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_for_in_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_do_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_break_statement] = STATE(213), - [sym_continue_statement] = STATE(213), - [sym_debugger_statement] = STATE(213), - [sym_return_statement] = STATE(213), - [sym_throw_statement] = STATE(213), - [sym_empty_statement] = STATE(213), - [sym_labeled_statement] = STATE(213), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(213), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(213), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(213), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(726), - [sym_identifier] = ACTIONS(313), - [anon_sym_export] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(317), + [24] = { + [sym_export_statement] = STATE(242), + [sym__declaration] = STATE(242), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_for_in_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_with_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_debugger_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_empty_statement] = STATE(242), + [sym_labeled_statement] = STATE(242), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(308), + [anon_sym_export] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(319), + [anon_sym_if] = ACTIONS(314), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(321), + [anon_sym_for] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(323), + [anon_sym_while] = ACTIONS(318), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(325), + [anon_sym_with] = ACTIONS(320), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -8408,9 +8450,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(327), - [anon_sym_async] = ACTIONS(329), - [anon_sym_function] = ACTIONS(331), + [anon_sym_class] = ACTIONS(322), + [anon_sym_async] = ACTIONS(324), + [anon_sym_function] = ACTIONS(326), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -8427,92 +8469,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(333), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [sym_preproc] = ACTIONS(337), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(328), + [anon_sym_get] = ACTIONS(328), + [anon_sym_set] = ACTIONS(328), + [sym_preproc] = ACTIONS(330), }, - [26] = { - [sym_export_statement] = STATE(212), - [sym__declaration] = STATE(212), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(212), - [sym_expression_statement] = STATE(212), - [sym_variable_declaration] = STATE(212), - [sym_lexical_declaration] = STATE(212), - [sym_statement_block] = STATE(212), - [sym_if_statement] = STATE(212), - [sym_switch_statement] = STATE(212), - [sym_for_statement] = STATE(212), - [sym_for_in_statement] = STATE(212), - [sym_while_statement] = STATE(212), - [sym_do_statement] = STATE(212), - [sym_try_statement] = STATE(212), - [sym_with_statement] = STATE(212), - [sym_break_statement] = STATE(212), - [sym_continue_statement] = STATE(212), - [sym_debugger_statement] = STATE(212), - [sym_return_statement] = STATE(212), - [sym_throw_statement] = STATE(212), - [sym_empty_statement] = STATE(212), - [sym_labeled_statement] = STATE(212), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(212), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(212), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(212), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [25] = { + [sym_export_statement] = STATE(263), + [sym__declaration] = STATE(263), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(263), + [sym_expression_statement] = STATE(263), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(263), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(263), + [sym_for_statement] = STATE(263), + [sym_for_in_statement] = STATE(263), + [sym_while_statement] = STATE(263), + [sym_do_statement] = STATE(263), + [sym_try_statement] = STATE(263), + [sym_with_statement] = STATE(263), + [sym_break_statement] = STATE(263), + [sym_continue_statement] = STATE(263), + [sym_debugger_statement] = STATE(263), + [sym_return_statement] = STATE(263), + [sym_throw_statement] = STATE(263), + [sym_empty_statement] = STATE(263), + [sym_labeled_statement] = STATE(263), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(308), + [anon_sym_export] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(312), [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_if] = ACTIONS(314), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_while] = ACTIONS(318), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(320), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -8523,9 +8566,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(322), + [anon_sym_async] = ACTIONS(324), + [anon_sym_function] = ACTIONS(326), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -8542,92 +8585,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(328), + [anon_sym_get] = ACTIONS(328), + [anon_sym_set] = ACTIONS(328), + [sym_preproc] = ACTIONS(332), }, - [27] = { - [sym_export_statement] = STATE(238), - [sym__declaration] = STATE(238), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(238), - [sym_expression_statement] = STATE(238), - [sym_variable_declaration] = STATE(238), - [sym_lexical_declaration] = STATE(238), - [sym_statement_block] = STATE(238), - [sym_if_statement] = STATE(238), - [sym_switch_statement] = STATE(238), - [sym_for_statement] = STATE(238), - [sym_for_in_statement] = STATE(238), - [sym_while_statement] = STATE(238), - [sym_do_statement] = STATE(238), - [sym_try_statement] = STATE(238), - [sym_with_statement] = STATE(238), - [sym_break_statement] = STATE(238), - [sym_continue_statement] = STATE(238), - [sym_debugger_statement] = STATE(238), - [sym_return_statement] = STATE(238), - [sym_throw_statement] = STATE(238), - [sym_empty_statement] = STATE(238), - [sym_labeled_statement] = STATE(238), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(238), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(238), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(238), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [26] = { + [sym_export_statement] = STATE(228), + [sym__declaration] = STATE(228), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_for_in_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_try_statement] = STATE(228), + [sym_with_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_debugger_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_throw_statement] = STATE(228), + [sym_empty_statement] = STATE(228), + [sym_labeled_statement] = STATE(228), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(308), + [anon_sym_export] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(312), [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_if] = ACTIONS(314), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_while] = ACTIONS(318), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(320), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -8638,9 +8682,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(322), + [anon_sym_async] = ACTIONS(324), + [anon_sym_function] = ACTIONS(326), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -8657,76 +8701,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(341), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(328), + [anon_sym_get] = ACTIONS(328), + [anon_sym_set] = ACTIONS(328), + [sym_preproc] = ACTIONS(334), }, - [28] = { - [sym_export_statement] = STATE(226), - [sym__declaration] = STATE(226), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(226), - [sym_expression_statement] = STATE(226), - [sym_variable_declaration] = STATE(226), - [sym_lexical_declaration] = STATE(226), - [sym_statement_block] = STATE(226), - [sym_if_statement] = STATE(226), - [sym_switch_statement] = STATE(226), - [sym_for_statement] = STATE(226), - [sym_for_in_statement] = STATE(226), - [sym_while_statement] = STATE(226), - [sym_do_statement] = STATE(226), - [sym_try_statement] = STATE(226), - [sym_with_statement] = STATE(226), - [sym_break_statement] = STATE(226), - [sym_continue_statement] = STATE(226), - [sym_debugger_statement] = STATE(226), - [sym_return_statement] = STATE(226), - [sym_throw_statement] = STATE(226), - [sym_empty_statement] = STATE(226), - [sym_labeled_statement] = STATE(226), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(226), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(226), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(226), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(747), + [27] = { + [sym_export_statement] = STATE(242), + [sym__declaration] = STATE(242), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_for_in_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_with_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_debugger_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_empty_statement] = STATE(242), + [sym_labeled_statement] = STATE(242), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -8772,92 +8817,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(330), }, - [29] = { - [sym_export_statement] = STATE(213), - [sym__declaration] = STATE(213), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(213), - [sym_expression_statement] = STATE(213), - [sym_variable_declaration] = STATE(213), - [sym_lexical_declaration] = STATE(213), - [sym_statement_block] = STATE(213), - [sym_if_statement] = STATE(213), - [sym_switch_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_for_in_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_do_statement] = STATE(213), - [sym_try_statement] = STATE(213), - [sym_with_statement] = STATE(213), - [sym_break_statement] = STATE(213), - [sym_continue_statement] = STATE(213), - [sym_debugger_statement] = STATE(213), - [sym_return_statement] = STATE(213), - [sym_throw_statement] = STATE(213), - [sym_empty_statement] = STATE(213), - [sym_labeled_statement] = STATE(213), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(213), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(213), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(213), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [28] = { + [sym_export_statement] = STATE(244), + [sym__declaration] = STATE(244), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(244), + [sym_expression_statement] = STATE(244), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(244), + [sym_if_statement] = STATE(244), + [sym_switch_statement] = STATE(244), + [sym_for_statement] = STATE(244), + [sym_for_in_statement] = STATE(244), + [sym_while_statement] = STATE(244), + [sym_do_statement] = STATE(244), + [sym_try_statement] = STATE(244), + [sym_with_statement] = STATE(244), + [sym_break_statement] = STATE(244), + [sym_continue_statement] = STATE(244), + [sym_debugger_statement] = STATE(244), + [sym_return_statement] = STATE(244), + [sym_throw_statement] = STATE(244), + [sym_empty_statement] = STATE(244), + [sym_labeled_statement] = STATE(244), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(308), + [anon_sym_export] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(312), [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_if] = ACTIONS(314), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_while] = ACTIONS(318), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(320), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -8868,9 +8914,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(322), + [anon_sym_async] = ACTIONS(324), + [anon_sym_function] = ACTIONS(326), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -8887,92 +8933,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(337), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(328), + [anon_sym_get] = ACTIONS(328), + [anon_sym_set] = ACTIONS(328), + [sym_preproc] = ACTIONS(336), }, - [30] = { - [sym_export_statement] = STATE(1102), - [sym__declaration] = STATE(1102), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(1102), - [sym_expression_statement] = STATE(1102), - [sym_variable_declaration] = STATE(1102), - [sym_lexical_declaration] = STATE(1102), - [sym_statement_block] = STATE(1102), - [sym_if_statement] = STATE(1102), - [sym_switch_statement] = STATE(1102), - [sym_for_statement] = STATE(1102), - [sym_for_in_statement] = STATE(1102), - [sym_while_statement] = STATE(1102), - [sym_do_statement] = STATE(1102), - [sym_try_statement] = STATE(1102), - [sym_with_statement] = STATE(1102), - [sym_break_statement] = STATE(1102), - [sym_continue_statement] = STATE(1102), - [sym_debugger_statement] = STATE(1102), - [sym_return_statement] = STATE(1102), - [sym_throw_statement] = STATE(1102), - [sym_empty_statement] = STATE(1102), - [sym_labeled_statement] = STATE(1102), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(1102), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(1102), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(1102), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(726), - [sym_identifier] = ACTIONS(313), - [anon_sym_export] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(317), + [29] = { + [sym_export_statement] = STATE(228), + [sym__declaration] = STATE(228), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(228), + [sym_expression_statement] = STATE(228), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(228), + [sym_if_statement] = STATE(228), + [sym_switch_statement] = STATE(228), + [sym_for_statement] = STATE(228), + [sym_for_in_statement] = STATE(228), + [sym_while_statement] = STATE(228), + [sym_do_statement] = STATE(228), + [sym_try_statement] = STATE(228), + [sym_with_statement] = STATE(228), + [sym_break_statement] = STATE(228), + [sym_continue_statement] = STATE(228), + [sym_debugger_statement] = STATE(228), + [sym_return_statement] = STATE(228), + [sym_throw_statement] = STATE(228), + [sym_empty_statement] = STATE(228), + [sym_labeled_statement] = STATE(228), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(761), + [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(319), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(321), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(323), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(325), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -8983,9 +9030,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(327), - [anon_sym_async] = ACTIONS(329), - [anon_sym_function] = ACTIONS(331), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9002,76 +9049,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(333), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [sym_preproc] = ACTIONS(345), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(334), }, - [31] = { - [sym_export_statement] = STATE(231), - [sym__declaration] = STATE(231), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(231), - [sym_expression_statement] = STATE(231), - [sym_variable_declaration] = STATE(231), - [sym_lexical_declaration] = STATE(231), - [sym_statement_block] = STATE(231), - [sym_if_statement] = STATE(231), - [sym_switch_statement] = STATE(231), - [sym_for_statement] = STATE(231), - [sym_for_in_statement] = STATE(231), - [sym_while_statement] = STATE(231), - [sym_do_statement] = STATE(231), - [sym_try_statement] = STATE(231), - [sym_with_statement] = STATE(231), - [sym_break_statement] = STATE(231), - [sym_continue_statement] = STATE(231), - [sym_debugger_statement] = STATE(231), - [sym_return_statement] = STATE(231), - [sym_throw_statement] = STATE(231), - [sym_empty_statement] = STATE(231), - [sym_labeled_statement] = STATE(231), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(231), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(231), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(231), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(747), + [30] = { + [sym_export_statement] = STATE(244), + [sym__declaration] = STATE(244), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(244), + [sym_expression_statement] = STATE(244), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(244), + [sym_if_statement] = STATE(244), + [sym_switch_statement] = STATE(244), + [sym_for_statement] = STATE(244), + [sym_for_in_statement] = STATE(244), + [sym_while_statement] = STATE(244), + [sym_do_statement] = STATE(244), + [sym_try_statement] = STATE(244), + [sym_with_statement] = STATE(244), + [sym_break_statement] = STATE(244), + [sym_continue_statement] = STATE(244), + [sym_debugger_statement] = STATE(244), + [sym_return_statement] = STATE(244), + [sym_throw_statement] = STATE(244), + [sym_empty_statement] = STATE(244), + [sym_labeled_statement] = STATE(244), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -9117,92 +9165,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(347), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(336), }, - [32] = { - [sym_export_statement] = STATE(242), - [sym__declaration] = STATE(242), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_variable_declaration] = STATE(242), - [sym_lexical_declaration] = STATE(242), - [sym_statement_block] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_for_in_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_try_statement] = STATE(242), - [sym_with_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_debugger_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_throw_statement] = STATE(242), - [sym_empty_statement] = STATE(242), - [sym_labeled_statement] = STATE(242), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(242), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(242), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(242), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(726), - [sym_identifier] = ACTIONS(313), - [anon_sym_export] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(317), + [31] = { + [sym_export_statement] = STATE(255), + [sym__declaration] = STATE(255), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(255), + [sym_expression_statement] = STATE(255), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(255), + [sym_if_statement] = STATE(255), + [sym_switch_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_for_in_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_do_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_break_statement] = STATE(255), + [sym_continue_statement] = STATE(255), + [sym_debugger_statement] = STATE(255), + [sym_return_statement] = STATE(255), + [sym_throw_statement] = STATE(255), + [sym_empty_statement] = STATE(255), + [sym_labeled_statement] = STATE(255), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(308), + [anon_sym_export] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(319), + [anon_sym_if] = ACTIONS(314), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(321), + [anon_sym_for] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(323), + [anon_sym_while] = ACTIONS(318), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(325), + [anon_sym_with] = ACTIONS(320), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9213,9 +9262,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(327), - [anon_sym_async] = ACTIONS(329), - [anon_sym_function] = ACTIONS(331), + [anon_sym_class] = ACTIONS(322), + [anon_sym_async] = ACTIONS(324), + [anon_sym_function] = ACTIONS(326), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9232,92 +9281,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(333), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [sym_preproc] = ACTIONS(349), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(328), + [anon_sym_get] = ACTIONS(328), + [anon_sym_set] = ACTIONS(328), + [sym_preproc] = ACTIONS(338), }, - [33] = { - [sym_export_statement] = STATE(212), - [sym__declaration] = STATE(212), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(212), - [sym_expression_statement] = STATE(212), - [sym_variable_declaration] = STATE(212), - [sym_lexical_declaration] = STATE(212), - [sym_statement_block] = STATE(212), - [sym_if_statement] = STATE(212), - [sym_switch_statement] = STATE(212), - [sym_for_statement] = STATE(212), - [sym_for_in_statement] = STATE(212), - [sym_while_statement] = STATE(212), - [sym_do_statement] = STATE(212), - [sym_try_statement] = STATE(212), - [sym_with_statement] = STATE(212), - [sym_break_statement] = STATE(212), - [sym_continue_statement] = STATE(212), - [sym_debugger_statement] = STATE(212), - [sym_return_statement] = STATE(212), - [sym_throw_statement] = STATE(212), - [sym_empty_statement] = STATE(212), - [sym_labeled_statement] = STATE(212), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(212), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(212), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(212), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(726), - [sym_identifier] = ACTIONS(313), - [anon_sym_export] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(317), + [32] = { + [sym_export_statement] = STATE(255), + [sym__declaration] = STATE(255), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(255), + [sym_expression_statement] = STATE(255), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(255), + [sym_if_statement] = STATE(255), + [sym_switch_statement] = STATE(255), + [sym_for_statement] = STATE(255), + [sym_for_in_statement] = STATE(255), + [sym_while_statement] = STATE(255), + [sym_do_statement] = STATE(255), + [sym_try_statement] = STATE(255), + [sym_with_statement] = STATE(255), + [sym_break_statement] = STATE(255), + [sym_continue_statement] = STATE(255), + [sym_debugger_statement] = STATE(255), + [sym_return_statement] = STATE(255), + [sym_throw_statement] = STATE(255), + [sym_empty_statement] = STATE(255), + [sym_labeled_statement] = STATE(255), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(761), + [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(319), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(321), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(323), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(325), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9328,9 +9378,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(327), - [anon_sym_async] = ACTIONS(329), - [anon_sym_function] = ACTIONS(331), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9347,76 +9397,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(333), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [sym_preproc] = ACTIONS(339), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(338), }, - [34] = { - [sym_export_statement] = STATE(242), - [sym__declaration] = STATE(242), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_variable_declaration] = STATE(242), - [sym_lexical_declaration] = STATE(242), - [sym_statement_block] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_for_in_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_try_statement] = STATE(242), - [sym_with_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_debugger_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_throw_statement] = STATE(242), - [sym_empty_statement] = STATE(242), - [sym_labeled_statement] = STATE(242), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(242), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(242), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(242), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(747), + [33] = { + [sym_export_statement] = STATE(214), + [sym__declaration] = STATE(214), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(214), + [sym_expression_statement] = STATE(214), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(214), + [sym_if_statement] = STATE(214), + [sym_switch_statement] = STATE(214), + [sym_for_statement] = STATE(214), + [sym_for_in_statement] = STATE(214), + [sym_while_statement] = STATE(214), + [sym_do_statement] = STATE(214), + [sym_try_statement] = STATE(214), + [sym_with_statement] = STATE(214), + [sym_break_statement] = STATE(214), + [sym_continue_statement] = STATE(214), + [sym_debugger_statement] = STATE(214), + [sym_return_statement] = STATE(214), + [sym_throw_statement] = STATE(214), + [sym_empty_statement] = STATE(214), + [sym_labeled_statement] = STATE(214), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -9462,92 +9513,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(349), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(340), }, - [35] = { - [sym_export_statement] = STATE(231), - [sym__declaration] = STATE(231), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(231), - [sym_expression_statement] = STATE(231), - [sym_variable_declaration] = STATE(231), - [sym_lexical_declaration] = STATE(231), - [sym_statement_block] = STATE(231), - [sym_if_statement] = STATE(231), - [sym_switch_statement] = STATE(231), - [sym_for_statement] = STATE(231), - [sym_for_in_statement] = STATE(231), - [sym_while_statement] = STATE(231), - [sym_do_statement] = STATE(231), - [sym_try_statement] = STATE(231), - [sym_with_statement] = STATE(231), - [sym_break_statement] = STATE(231), - [sym_continue_statement] = STATE(231), - [sym_debugger_statement] = STATE(231), - [sym_return_statement] = STATE(231), - [sym_throw_statement] = STATE(231), - [sym_empty_statement] = STATE(231), - [sym_labeled_statement] = STATE(231), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(231), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(231), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(231), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(726), - [sym_identifier] = ACTIONS(313), - [anon_sym_export] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(317), + [34] = { + [sym_export_statement] = STATE(249), + [sym__declaration] = STATE(249), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_for_in_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_try_statement] = STATE(249), + [sym_with_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_debugger_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_throw_statement] = STATE(249), + [sym_empty_statement] = STATE(249), + [sym_labeled_statement] = STATE(249), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(308), + [anon_sym_export] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(319), + [anon_sym_if] = ACTIONS(314), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(321), + [anon_sym_for] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(323), + [anon_sym_while] = ACTIONS(318), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(325), + [anon_sym_with] = ACTIONS(320), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9558,9 +9610,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(327), - [anon_sym_async] = ACTIONS(329), - [anon_sym_function] = ACTIONS(331), + [anon_sym_class] = ACTIONS(322), + [anon_sym_async] = ACTIONS(324), + [anon_sym_function] = ACTIONS(326), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9577,92 +9629,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(333), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [sym_preproc] = ACTIONS(347), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(328), + [anon_sym_get] = ACTIONS(328), + [anon_sym_set] = ACTIONS(328), + [sym_preproc] = ACTIONS(342), }, - [36] = { - [sym_export_statement] = STATE(253), - [sym__declaration] = STATE(253), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(253), - [sym_expression_statement] = STATE(253), - [sym_variable_declaration] = STATE(253), - [sym_lexical_declaration] = STATE(253), - [sym_statement_block] = STATE(253), - [sym_if_statement] = STATE(253), - [sym_switch_statement] = STATE(253), - [sym_for_statement] = STATE(253), - [sym_for_in_statement] = STATE(253), - [sym_while_statement] = STATE(253), - [sym_do_statement] = STATE(253), - [sym_try_statement] = STATE(253), - [sym_with_statement] = STATE(253), - [sym_break_statement] = STATE(253), - [sym_continue_statement] = STATE(253), - [sym_debugger_statement] = STATE(253), - [sym_return_statement] = STATE(253), - [sym_throw_statement] = STATE(253), - [sym_empty_statement] = STATE(253), - [sym_labeled_statement] = STATE(253), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(253), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(253), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(253), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [35] = { + [sym_export_statement] = STATE(1108), + [sym__declaration] = STATE(1108), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(1108), + [sym_expression_statement] = STATE(1108), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(1108), + [sym_if_statement] = STATE(1108), + [sym_switch_statement] = STATE(1108), + [sym_for_statement] = STATE(1108), + [sym_for_in_statement] = STATE(1108), + [sym_while_statement] = STATE(1108), + [sym_do_statement] = STATE(1108), + [sym_try_statement] = STATE(1108), + [sym_with_statement] = STATE(1108), + [sym_break_statement] = STATE(1108), + [sym_continue_statement] = STATE(1108), + [sym_debugger_statement] = STATE(1108), + [sym_return_statement] = STATE(1108), + [sym_throw_statement] = STATE(1108), + [sym_empty_statement] = STATE(1108), + [sym_labeled_statement] = STATE(1108), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(308), + [anon_sym_export] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(312), [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_if] = ACTIONS(314), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_while] = ACTIONS(318), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(320), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9673,9 +9726,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(322), + [anon_sym_async] = ACTIONS(324), + [anon_sym_function] = ACTIONS(326), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9692,76 +9745,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(351), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(328), + [anon_sym_get] = ACTIONS(328), + [anon_sym_set] = ACTIONS(328), + [sym_preproc] = ACTIONS(344), }, - [37] = { - [sym_export_statement] = STATE(246), - [sym__declaration] = STATE(246), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym_variable_declaration] = STATE(246), - [sym_lexical_declaration] = STATE(246), - [sym_statement_block] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_for_in_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_with_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_debugger_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_empty_statement] = STATE(246), - [sym_labeled_statement] = STATE(246), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(246), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(246), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(246), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(747), + [36] = { + [sym_export_statement] = STATE(225), + [sym__declaration] = STATE(225), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(225), + [sym_expression_statement] = STATE(225), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(225), + [sym_if_statement] = STATE(225), + [sym_switch_statement] = STATE(225), + [sym_for_statement] = STATE(225), + [sym_for_in_statement] = STATE(225), + [sym_while_statement] = STATE(225), + [sym_do_statement] = STATE(225), + [sym_try_statement] = STATE(225), + [sym_with_statement] = STATE(225), + [sym_break_statement] = STATE(225), + [sym_continue_statement] = STATE(225), + [sym_debugger_statement] = STATE(225), + [sym_return_statement] = STATE(225), + [sym_throw_statement] = STATE(225), + [sym_empty_statement] = STATE(225), + [sym_labeled_statement] = STATE(225), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(761), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_LBRACE] = ACTIONS(13), @@ -9807,92 +9861,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(346), }, - [38] = { - [sym_export_statement] = STATE(226), - [sym__declaration] = STATE(226), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(226), - [sym_expression_statement] = STATE(226), - [sym_variable_declaration] = STATE(226), - [sym_lexical_declaration] = STATE(226), - [sym_statement_block] = STATE(226), - [sym_if_statement] = STATE(226), - [sym_switch_statement] = STATE(226), - [sym_for_statement] = STATE(226), - [sym_for_in_statement] = STATE(226), - [sym_while_statement] = STATE(226), - [sym_do_statement] = STATE(226), - [sym_try_statement] = STATE(226), - [sym_with_statement] = STATE(226), - [sym_break_statement] = STATE(226), - [sym_continue_statement] = STATE(226), - [sym_debugger_statement] = STATE(226), - [sym_return_statement] = STATE(226), - [sym_throw_statement] = STATE(226), - [sym_empty_statement] = STATE(226), - [sym_labeled_statement] = STATE(226), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(226), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(226), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(226), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(726), - [sym_identifier] = ACTIONS(313), - [anon_sym_export] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(317), + [37] = { + [sym_export_statement] = STATE(263), + [sym__declaration] = STATE(263), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(263), + [sym_expression_statement] = STATE(263), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(263), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(263), + [sym_for_statement] = STATE(263), + [sym_for_in_statement] = STATE(263), + [sym_while_statement] = STATE(263), + [sym_do_statement] = STATE(263), + [sym_try_statement] = STATE(263), + [sym_with_statement] = STATE(263), + [sym_break_statement] = STATE(263), + [sym_continue_statement] = STATE(263), + [sym_debugger_statement] = STATE(263), + [sym_return_statement] = STATE(263), + [sym_throw_statement] = STATE(263), + [sym_empty_statement] = STATE(263), + [sym_labeled_statement] = STATE(263), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(761), + [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(319), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(321), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(323), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(325), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -9903,9 +9958,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(327), - [anon_sym_async] = ACTIONS(329), - [anon_sym_function] = ACTIONS(331), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -9922,92 +9977,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(333), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [sym_preproc] = ACTIONS(343), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(332), }, - [39] = { - [sym_export_statement] = STATE(248), - [sym__declaration] = STATE(248), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(248), - [sym_expression_statement] = STATE(248), - [sym_variable_declaration] = STATE(248), - [sym_lexical_declaration] = STATE(248), - [sym_statement_block] = STATE(248), - [sym_if_statement] = STATE(248), - [sym_switch_statement] = STATE(248), - [sym_for_statement] = STATE(248), - [sym_for_in_statement] = STATE(248), - [sym_while_statement] = STATE(248), - [sym_do_statement] = STATE(248), - [sym_try_statement] = STATE(248), - [sym_with_statement] = STATE(248), - [sym_break_statement] = STATE(248), - [sym_continue_statement] = STATE(248), - [sym_debugger_statement] = STATE(248), - [sym_return_statement] = STATE(248), - [sym_throw_statement] = STATE(248), - [sym_empty_statement] = STATE(248), - [sym_labeled_statement] = STATE(248), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(248), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(248), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(248), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(747), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_LBRACE] = ACTIONS(13), + [38] = { + [sym_export_statement] = STATE(861), + [sym__declaration] = STATE(861), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(861), + [sym_expression_statement] = STATE(861), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(861), + [sym_if_statement] = STATE(861), + [sym_switch_statement] = STATE(861), + [sym_for_statement] = STATE(861), + [sym_for_in_statement] = STATE(861), + [sym_while_statement] = STATE(861), + [sym_do_statement] = STATE(861), + [sym_try_statement] = STATE(861), + [sym_with_statement] = STATE(861), + [sym_break_statement] = STATE(861), + [sym_continue_statement] = STATE(861), + [sym_debugger_statement] = STATE(861), + [sym_return_statement] = STATE(861), + [sym_throw_statement] = STATE(861), + [sym_empty_statement] = STATE(861), + [sym_labeled_statement] = STATE(861), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(308), + [anon_sym_export] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(312), [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_if] = ACTIONS(314), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(25), + [anon_sym_for] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(31), + [anon_sym_while] = ACTIONS(318), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(37), + [anon_sym_with] = ACTIONS(320), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10018,9 +10074,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_function] = ACTIONS(63), + [anon_sym_class] = ACTIONS(322), + [anon_sym_async] = ACTIONS(324), + [anon_sym_function] = ACTIONS(326), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10037,92 +10093,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(89), - [anon_sym_get] = ACTIONS(89), - [anon_sym_set] = ACTIONS(89), - [sym_preproc] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(328), + [anon_sym_get] = ACTIONS(328), + [anon_sym_set] = ACTIONS(328), + [sym_preproc] = ACTIONS(348), }, - [40] = { - [sym_export_statement] = STATE(238), - [sym__declaration] = STATE(238), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(238), - [sym_expression_statement] = STATE(238), - [sym_variable_declaration] = STATE(238), - [sym_lexical_declaration] = STATE(238), - [sym_statement_block] = STATE(238), - [sym_if_statement] = STATE(238), - [sym_switch_statement] = STATE(238), - [sym_for_statement] = STATE(238), - [sym_for_in_statement] = STATE(238), - [sym_while_statement] = STATE(238), - [sym_do_statement] = STATE(238), - [sym_try_statement] = STATE(238), - [sym_with_statement] = STATE(238), - [sym_break_statement] = STATE(238), - [sym_continue_statement] = STATE(238), - [sym_debugger_statement] = STATE(238), - [sym_return_statement] = STATE(238), - [sym_throw_statement] = STATE(238), - [sym_empty_statement] = STATE(238), - [sym_labeled_statement] = STATE(238), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(238), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(238), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(238), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(726), - [sym_identifier] = ACTIONS(313), - [anon_sym_export] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(317), + [39] = { + [sym_export_statement] = STATE(225), + [sym__declaration] = STATE(225), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(225), + [sym_expression_statement] = STATE(225), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(225), + [sym_if_statement] = STATE(225), + [sym_switch_statement] = STATE(225), + [sym_for_statement] = STATE(225), + [sym_for_in_statement] = STATE(225), + [sym_while_statement] = STATE(225), + [sym_do_statement] = STATE(225), + [sym_try_statement] = STATE(225), + [sym_with_statement] = STATE(225), + [sym_break_statement] = STATE(225), + [sym_continue_statement] = STATE(225), + [sym_debugger_statement] = STATE(225), + [sym_return_statement] = STATE(225), + [sym_throw_statement] = STATE(225), + [sym_empty_statement] = STATE(225), + [sym_labeled_statement] = STATE(225), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(308), + [anon_sym_export] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(319), + [anon_sym_if] = ACTIONS(314), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(321), + [anon_sym_for] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(323), + [anon_sym_while] = ACTIONS(318), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(325), + [anon_sym_with] = ACTIONS(320), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10133,9 +10190,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(327), - [anon_sym_async] = ACTIONS(329), - [anon_sym_function] = ACTIONS(331), + [anon_sym_class] = ACTIONS(322), + [anon_sym_async] = ACTIONS(324), + [anon_sym_function] = ACTIONS(326), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10152,92 +10209,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(333), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [sym_preproc] = ACTIONS(341), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(328), + [anon_sym_get] = ACTIONS(328), + [anon_sym_set] = ACTIONS(328), + [sym_preproc] = ACTIONS(346), }, - [41] = { - [sym_export_statement] = STATE(246), - [sym__declaration] = STATE(246), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(246), - [sym_expression_statement] = STATE(246), - [sym_variable_declaration] = STATE(246), - [sym_lexical_declaration] = STATE(246), - [sym_statement_block] = STATE(246), - [sym_if_statement] = STATE(246), - [sym_switch_statement] = STATE(246), - [sym_for_statement] = STATE(246), - [sym_for_in_statement] = STATE(246), - [sym_while_statement] = STATE(246), - [sym_do_statement] = STATE(246), - [sym_try_statement] = STATE(246), - [sym_with_statement] = STATE(246), - [sym_break_statement] = STATE(246), - [sym_continue_statement] = STATE(246), - [sym_debugger_statement] = STATE(246), - [sym_return_statement] = STATE(246), - [sym_throw_statement] = STATE(246), - [sym_empty_statement] = STATE(246), - [sym_labeled_statement] = STATE(246), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(246), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(246), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(246), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(726), - [sym_identifier] = ACTIONS(313), - [anon_sym_export] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(317), + [40] = { + [sym_export_statement] = STATE(249), + [sym__declaration] = STATE(249), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(249), + [sym_expression_statement] = STATE(249), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(249), + [sym_if_statement] = STATE(249), + [sym_switch_statement] = STATE(249), + [sym_for_statement] = STATE(249), + [sym_for_in_statement] = STATE(249), + [sym_while_statement] = STATE(249), + [sym_do_statement] = STATE(249), + [sym_try_statement] = STATE(249), + [sym_with_statement] = STATE(249), + [sym_break_statement] = STATE(249), + [sym_continue_statement] = STATE(249), + [sym_debugger_statement] = STATE(249), + [sym_return_statement] = STATE(249), + [sym_throw_statement] = STATE(249), + [sym_empty_statement] = STATE(249), + [sym_labeled_statement] = STATE(249), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(761), + [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(319), + [anon_sym_if] = ACTIONS(21), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(321), + [anon_sym_for] = ACTIONS(25), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(323), + [anon_sym_while] = ACTIONS(31), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(325), + [anon_sym_with] = ACTIONS(37), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10248,9 +10306,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(327), - [anon_sym_async] = ACTIONS(329), - [anon_sym_function] = ACTIONS(331), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10267,92 +10325,209 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(333), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [sym_preproc] = ACTIONS(353), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(342), }, - [42] = { - [sym_export_statement] = STATE(248), - [sym__declaration] = STATE(248), - [sym_import] = STATE(481), - [sym_import_statement] = STATE(248), - [sym_expression_statement] = STATE(248), - [sym_variable_declaration] = STATE(248), - [sym_lexical_declaration] = STATE(248), - [sym_statement_block] = STATE(248), - [sym_if_statement] = STATE(248), - [sym_switch_statement] = STATE(248), - [sym_for_statement] = STATE(248), - [sym_for_in_statement] = STATE(248), - [sym_while_statement] = STATE(248), - [sym_do_statement] = STATE(248), - [sym_try_statement] = STATE(248), - [sym_with_statement] = STATE(248), - [sym_break_statement] = STATE(248), - [sym_continue_statement] = STATE(248), - [sym_debugger_statement] = STATE(248), - [sym_return_statement] = STATE(248), - [sym_throw_statement] = STATE(248), - [sym_empty_statement] = STATE(248), - [sym_labeled_statement] = STATE(248), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_class_declaration] = STATE(248), - [sym_function] = STATE(403), - [sym_function_declaration] = STATE(248), - [sym_generator_function] = STATE(481), - [sym_generator_function_declaration] = STATE(248), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(726), - [sym_identifier] = ACTIONS(313), - [anon_sym_export] = ACTIONS(315), - [anon_sym_LBRACE] = ACTIONS(317), + [41] = { + [sym_export_statement] = STATE(239), + [sym__declaration] = STATE(239), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(239), + [sym_expression_statement] = STATE(239), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_switch_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_for_in_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_do_statement] = STATE(239), + [sym_try_statement] = STATE(239), + [sym_with_statement] = STATE(239), + [sym_break_statement] = STATE(239), + [sym_continue_statement] = STATE(239), + [sym_debugger_statement] = STATE(239), + [sym_return_statement] = STATE(239), + [sym_throw_statement] = STATE(239), + [sym_empty_statement] = STATE(239), + [sym_labeled_statement] = STATE(239), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(761), + [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_LT] = ACTIONS(55), + [anon_sym_SLASH] = ACTIONS(57), + [anon_sym_class] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_function] = ACTIONS(63), + [anon_sym_new] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(67), + [anon_sym_DASH] = ACTIONS(67), + [anon_sym_BANG] = ACTIONS(69), + [anon_sym_TILDE] = ACTIONS(69), + [anon_sym_typeof] = ACTIONS(71), + [anon_sym_void] = ACTIONS(71), + [anon_sym_delete] = ACTIONS(71), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(87), + [anon_sym_get] = ACTIONS(87), + [anon_sym_set] = ACTIONS(87), + [sym_preproc] = ACTIONS(350), + }, + [42] = { + [sym_export_statement] = STATE(239), + [sym__declaration] = STATE(239), + [sym_import] = STATE(581), + [sym_import_statement] = STATE(239), + [sym_expression_statement] = STATE(239), + [sym_variable_declaration] = STATE(230), + [sym_lexical_declaration] = STATE(230), + [sym_statement_block] = STATE(239), + [sym_if_statement] = STATE(239), + [sym_switch_statement] = STATE(239), + [sym_for_statement] = STATE(239), + [sym_for_in_statement] = STATE(239), + [sym_while_statement] = STATE(239), + [sym_do_statement] = STATE(239), + [sym_try_statement] = STATE(239), + [sym_with_statement] = STATE(239), + [sym_break_statement] = STATE(239), + [sym_continue_statement] = STATE(239), + [sym_debugger_statement] = STATE(239), + [sym_return_statement] = STATE(239), + [sym_throw_statement] = STATE(239), + [sym_empty_statement] = STATE(239), + [sym_labeled_statement] = STATE(239), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_class_declaration] = STATE(230), + [sym_function] = STATE(581), + [sym_function_declaration] = STATE(230), + [sym_generator_function] = STATE(581), + [sym_generator_function_declaration] = STATE(230), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(308), + [anon_sym_export] = ACTIONS(310), + [anon_sym_LBRACE] = ACTIONS(312), [anon_sym_import] = ACTIONS(15), [anon_sym_var] = ACTIONS(17), [anon_sym_let] = ACTIONS(19), [anon_sym_const] = ACTIONS(19), - [anon_sym_if] = ACTIONS(319), + [anon_sym_if] = ACTIONS(314), [anon_sym_switch] = ACTIONS(23), - [anon_sym_for] = ACTIONS(321), + [anon_sym_for] = ACTIONS(316), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_while] = ACTIONS(323), + [anon_sym_while] = ACTIONS(318), [anon_sym_do] = ACTIONS(33), [anon_sym_try] = ACTIONS(35), - [anon_sym_with] = ACTIONS(325), + [anon_sym_with] = ACTIONS(320), [anon_sym_break] = ACTIONS(39), [anon_sym_continue] = ACTIONS(41), [anon_sym_debugger] = ACTIONS(43), @@ -10363,9 +10538,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(327), - [anon_sym_async] = ACTIONS(329), - [anon_sym_function] = ACTIONS(331), + [anon_sym_class] = ACTIONS(322), + [anon_sym_async] = ACTIONS(324), + [anon_sym_function] = ACTIONS(326), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -10382,191 +10557,195 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(333), - [anon_sym_get] = ACTIONS(333), - [anon_sym_set] = ACTIONS(333), - [sym_preproc] = ACTIONS(355), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(328), + [anon_sym_get] = ACTIONS(328), + [anon_sym_set] = ACTIONS(328), + [sym_preproc] = ACTIONS(350), }, [43] = { - [sym_import] = STATE(322), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(322), - [sym_yield_expression] = STATE(322), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(322), - [sym_jsx_fragment] = STATE(322), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(322), - [sym_class] = STATE(322), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(322), - [sym_arrow_function] = STATE(322), - [sym_call_expression] = STATE(322), - [sym_new_expression] = STATE(322), - [sym_await_expression] = STATE(322), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(322), - [sym_augmented_assignment_expression] = STATE(322), - [sym_ternary_expression] = STATE(322), - [sym_binary_expression] = STATE(322), - [sym_unary_expression] = STATE(322), - [sym_update_expression] = STATE(322), - [sym_string] = STATE(322), - [sym_template_string] = STATE(322), - [sym_regex] = STATE(322), - [sym_meta_property] = STATE(322), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_STAR] = ACTIONS(359), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_COMMA] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(363), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(363), - [anon_sym_await] = ACTIONS(369), - [anon_sym_in] = ACTIONS(371), - [anon_sym_COLON] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_RBRACK] = ACTIONS(363), - [anon_sym_LT] = ACTIONS(377), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(371), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_GT_GT_GT] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(363), - [anon_sym_STAR_STAR] = ACTIONS(363), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ] = ACTIONS(371), - [anon_sym_EQ_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(371), - [anon_sym_BANG_EQ_EQ] = ACTIONS(363), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_QMARK_QMARK] = ACTIONS(363), - [anon_sym_instanceof] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(391), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(336), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(358), + [anon_sym_RBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(358), + [anon_sym_await] = ACTIONS(364), + [anon_sym_in] = ACTIONS(366), + [anon_sym_COLON] = ACTIONS(358), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_RBRACK] = ACTIONS(358), + [anon_sym_LT] = ACTIONS(372), + [anon_sym_GT] = ACTIONS(366), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_DOT] = ACTIONS(366), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_QMARK_DOT] = ACTIONS(358), + [anon_sym_new] = ACTIONS(382), + [anon_sym_QMARK] = ACTIONS(366), + [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_PIPE] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_GT_GT_GT] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_AMP] = ACTIONS(366), + [anon_sym_CARET] = ACTIONS(358), + [anon_sym_PIPE] = ACTIONS(366), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_PERCENT] = ACTIONS(358), + [anon_sym_STAR_STAR] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(358), + [anon_sym_EQ_EQ] = ACTIONS(366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(358), + [anon_sym_BANG_EQ] = ACTIONS(366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(358), + [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_QMARK_QMARK] = ACTIONS(358), + [anon_sym_instanceof] = ACTIONS(366), + [anon_sym_BANG] = ACTIONS(386), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(405), - [sym_this] = ACTIONS(407), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [sym_null] = ACTIONS(407), - [sym_undefined] = ACTIONS(407), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [44] = { - [sym_import] = STATE(384), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(384), - [sym_yield_expression] = STATE(384), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(384), - [sym_jsx_fragment] = STATE(384), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(384), - [sym_class] = STATE(384), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(384), - [sym_arrow_function] = STATE(384), - [sym_call_expression] = STATE(384), - [sym_new_expression] = STATE(384), - [sym_await_expression] = STATE(384), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(384), - [sym_augmented_assignment_expression] = STATE(384), - [sym_ternary_expression] = STATE(384), - [sym_binary_expression] = STATE(384), - [sym_unary_expression] = STATE(384), - [sym_update_expression] = STATE(384), - [sym_string] = STATE(384), - [sym_template_string] = STATE(384), - [sym_regex] = STATE(384), - [sym_meta_property] = STATE(384), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_STAR] = ACTIONS(415), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_COMMA] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(363), - [anon_sym_import] = ACTIONS(419), + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(449), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_STAR] = ACTIONS(408), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_COMMA] = ACTIONS(358), + [anon_sym_RBRACE] = ACTIONS(358), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_in] = ACTIONS(371), - [anon_sym_SEMI] = ACTIONS(363), + [anon_sym_in] = ACTIONS(366), + [anon_sym_SEMI] = ACTIONS(358), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(421), - [anon_sym_GT] = ACTIONS(371), + [anon_sym_LT] = ACTIONS(414), + [anon_sym_GT] = ACTIONS(366), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_DOT] = ACTIONS(366), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), + [anon_sym_QMARK_DOT] = ACTIONS(358), [anon_sym_new] = ACTIONS(65), - [anon_sym_QMARK] = ACTIONS(371), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_GT_GT_GT] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(363), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(363), - [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(366), + [anon_sym_AMP_AMP] = ACTIONS(358), + [anon_sym_PIPE_PIPE] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(366), + [anon_sym_GT_GT_GT] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_AMP] = ACTIONS(366), + [anon_sym_CARET] = ACTIONS(358), + [anon_sym_PIPE] = ACTIONS(366), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), - [anon_sym_PERCENT] = ACTIONS(363), - [anon_sym_STAR_STAR] = ACTIONS(363), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_EQ_EQ] = ACTIONS(371), - [anon_sym_EQ_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(371), - [anon_sym_BANG_EQ_EQ] = ACTIONS(363), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_QMARK_QMARK] = ACTIONS(363), - [anon_sym_instanceof] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(429), + [anon_sym_PERCENT] = ACTIONS(358), + [anon_sym_STAR_STAR] = ACTIONS(358), + [anon_sym_LT_EQ] = ACTIONS(358), + [anon_sym_EQ_EQ] = ACTIONS(366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(358), + [anon_sym_BANG_EQ] = ACTIONS(366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(358), + [anon_sym_GT_EQ] = ACTIONS(358), + [anon_sym_QMARK_QMARK] = ACTIONS(358), + [anon_sym_instanceof] = ACTIONS(366), + [anon_sym_BANG] = ACTIONS(422), [anon_sym_TILDE] = ACTIONS(69), [anon_sym_typeof] = ACTIONS(71), [anon_sym_void] = ACTIONS(71), @@ -10577,1369 +10756,1385 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(431), - [sym_this] = ACTIONS(433), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(433), - [sym_false] = ACTIONS(433), - [sym_null] = ACTIONS(433), - [sym_undefined] = ACTIONS(433), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - [sym__automatic_semicolon] = ACTIONS(363), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + [sym__automatic_semicolon] = ACTIONS(358), }, [45] = { - [ts_builtin_sym_end] = ACTIONS(437), - [sym_identifier] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_STAR] = ACTIONS(441), - [anon_sym_default] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_import] = ACTIONS(439), - [anon_sym_var] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_const] = ACTIONS(439), - [anon_sym_if] = ACTIONS(439), - [anon_sym_else] = ACTIONS(439), - [anon_sym_switch] = ACTIONS(439), - [anon_sym_for] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_await] = ACTIONS(439), - [anon_sym_in] = ACTIONS(441), - [anon_sym_while] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_try] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_break] = ACTIONS(439), - [anon_sym_continue] = ACTIONS(439), - [anon_sym_debugger] = ACTIONS(439), - [anon_sym_return] = ACTIONS(439), - [anon_sym_throw] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_case] = ACTIONS(439), - [anon_sym_yield] = ACTIONS(439), - [anon_sym_EQ] = ACTIONS(441), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(441), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(441), - [anon_sym_class] = ACTIONS(439), - [anon_sym_async] = ACTIONS(439), - [anon_sym_function] = ACTIONS(439), - [anon_sym_new] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(441), - [anon_sym_AMP_AMP] = ACTIONS(443), - [anon_sym_PIPE_PIPE] = ACTIONS(443), - [anon_sym_GT_GT] = ACTIONS(441), - [anon_sym_GT_GT_GT] = ACTIONS(443), - [anon_sym_LT_LT] = ACTIONS(443), - [anon_sym_AMP] = ACTIONS(441), - [anon_sym_CARET] = ACTIONS(443), - [anon_sym_PIPE] = ACTIONS(441), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(443), - [anon_sym_STAR_STAR] = ACTIONS(443), - [anon_sym_LT_EQ] = ACTIONS(443), - [anon_sym_EQ_EQ] = ACTIONS(441), - [anon_sym_EQ_EQ_EQ] = ACTIONS(443), - [anon_sym_BANG_EQ] = ACTIONS(441), - [anon_sym_BANG_EQ_EQ] = ACTIONS(443), - [anon_sym_GT_EQ] = ACTIONS(443), - [anon_sym_QMARK_QMARK] = ACTIONS(443), - [anon_sym_instanceof] = ACTIONS(441), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(437), - [anon_sym_DASH_DASH] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_SQUOTE] = ACTIONS(437), + [ts_builtin_sym_end] = ACTIONS(426), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(428), + [anon_sym_STAR] = ACTIONS(430), + [anon_sym_default] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(426), + [anon_sym_COMMA] = ACTIONS(432), + [anon_sym_RBRACE] = ACTIONS(426), + [anon_sym_import] = ACTIONS(428), + [anon_sym_var] = ACTIONS(428), + [anon_sym_let] = ACTIONS(428), + [anon_sym_const] = ACTIONS(428), + [anon_sym_else] = ACTIONS(428), + [anon_sym_if] = ACTIONS(428), + [anon_sym_switch] = ACTIONS(428), + [anon_sym_for] = ACTIONS(428), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_await] = ACTIONS(428), + [anon_sym_in] = ACTIONS(430), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(428), + [anon_sym_try] = ACTIONS(428), + [anon_sym_with] = ACTIONS(428), + [anon_sym_break] = ACTIONS(428), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_debugger] = ACTIONS(428), + [anon_sym_return] = ACTIONS(428), + [anon_sym_throw] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_case] = ACTIONS(428), + [anon_sym_yield] = ACTIONS(428), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_LBRACK] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_SLASH] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(430), + [anon_sym_class] = ACTIONS(428), + [anon_sym_async] = ACTIONS(428), + [anon_sym_function] = ACTIONS(428), + [anon_sym_QMARK_DOT] = ACTIONS(432), + [anon_sym_new] = ACTIONS(428), + [anon_sym_QMARK] = ACTIONS(430), + [anon_sym_AMP_AMP] = ACTIONS(432), + [anon_sym_PIPE_PIPE] = ACTIONS(432), + [anon_sym_GT_GT] = ACTIONS(430), + [anon_sym_GT_GT_GT] = ACTIONS(432), + [anon_sym_LT_LT] = ACTIONS(432), + [anon_sym_AMP] = ACTIONS(430), + [anon_sym_CARET] = ACTIONS(432), + [anon_sym_PIPE] = ACTIONS(430), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_PERCENT] = ACTIONS(432), + [anon_sym_STAR_STAR] = ACTIONS(432), + [anon_sym_LT_EQ] = ACTIONS(432), + [anon_sym_EQ_EQ] = ACTIONS(430), + [anon_sym_EQ_EQ_EQ] = ACTIONS(432), + [anon_sym_BANG_EQ] = ACTIONS(430), + [anon_sym_BANG_EQ_EQ] = ACTIONS(432), + [anon_sym_GT_EQ] = ACTIONS(432), + [anon_sym_QMARK_QMARK] = ACTIONS(432), + [anon_sym_instanceof] = ACTIONS(430), + [anon_sym_BANG] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(426), + [anon_sym_typeof] = ACTIONS(428), + [anon_sym_void] = ACTIONS(428), + [anon_sym_delete] = ACTIONS(428), + [anon_sym_PLUS_PLUS] = ACTIONS(426), + [anon_sym_DASH_DASH] = ACTIONS(426), + [anon_sym_DQUOTE] = ACTIONS(426), + [anon_sym_SQUOTE] = ACTIONS(426), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(437), - [sym_number] = ACTIONS(437), - [sym_this] = ACTIONS(439), - [sym_super] = ACTIONS(439), - [sym_true] = ACTIONS(439), - [sym_false] = ACTIONS(439), - [sym_null] = ACTIONS(439), - [sym_undefined] = ACTIONS(439), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_get] = ACTIONS(439), - [anon_sym_set] = ACTIONS(439), - [sym_preproc] = ACTIONS(437), - [sym__automatic_semicolon] = ACTIONS(445), + [anon_sym_BQUOTE] = ACTIONS(426), + [sym_number] = ACTIONS(426), + [sym_this] = ACTIONS(428), + [sym_super] = ACTIONS(428), + [sym_true] = ACTIONS(428), + [sym_false] = ACTIONS(428), + [sym_null] = ACTIONS(428), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_static] = ACTIONS(428), + [anon_sym_get] = ACTIONS(428), + [anon_sym_set] = ACTIONS(428), + [sym_preproc] = ACTIONS(426), + [sym__automatic_semicolon] = ACTIONS(434), }, [46] = { - [ts_builtin_sym_end] = ACTIONS(447), - [sym_identifier] = ACTIONS(449), - [anon_sym_export] = ACTIONS(449), - [anon_sym_STAR] = ACTIONS(451), - [anon_sym_default] = ACTIONS(449), - [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_COMMA] = ACTIONS(453), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_import] = ACTIONS(449), - [anon_sym_var] = ACTIONS(449), - [anon_sym_let] = ACTIONS(449), - [anon_sym_const] = ACTIONS(449), - [anon_sym_if] = ACTIONS(449), - [anon_sym_else] = ACTIONS(449), - [anon_sym_switch] = ACTIONS(449), - [anon_sym_for] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_await] = ACTIONS(449), - [anon_sym_in] = ACTIONS(451), - [anon_sym_while] = ACTIONS(449), - [anon_sym_do] = ACTIONS(449), - [anon_sym_try] = ACTIONS(449), - [anon_sym_with] = ACTIONS(449), - [anon_sym_break] = ACTIONS(449), - [anon_sym_continue] = ACTIONS(449), - [anon_sym_debugger] = ACTIONS(449), - [anon_sym_return] = ACTIONS(449), - [anon_sym_throw] = ACTIONS(449), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_case] = ACTIONS(449), - [anon_sym_yield] = ACTIONS(449), - [anon_sym_LBRACK] = ACTIONS(447), - [anon_sym_LT] = ACTIONS(449), - [anon_sym_GT] = ACTIONS(451), - [anon_sym_SLASH] = ACTIONS(449), - [anon_sym_DOT] = ACTIONS(451), - [anon_sym_class] = ACTIONS(449), - [anon_sym_async] = ACTIONS(449), - [anon_sym_function] = ACTIONS(449), - [anon_sym_new] = ACTIONS(449), - [anon_sym_QMARK] = ACTIONS(451), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [anon_sym_GT_GT] = ACTIONS(451), - [anon_sym_GT_GT_GT] = ACTIONS(453), - [anon_sym_LT_LT] = ACTIONS(453), - [anon_sym_AMP] = ACTIONS(451), - [anon_sym_CARET] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(451), - [anon_sym_PLUS] = ACTIONS(449), - [anon_sym_DASH] = ACTIONS(449), - [anon_sym_PERCENT] = ACTIONS(453), - [anon_sym_STAR_STAR] = ACTIONS(453), - [anon_sym_LT_EQ] = ACTIONS(453), - [anon_sym_EQ_EQ] = ACTIONS(451), - [anon_sym_EQ_EQ_EQ] = ACTIONS(453), - [anon_sym_BANG_EQ] = ACTIONS(451), - [anon_sym_BANG_EQ_EQ] = ACTIONS(453), - [anon_sym_GT_EQ] = ACTIONS(453), - [anon_sym_QMARK_QMARK] = ACTIONS(453), - [anon_sym_instanceof] = ACTIONS(451), - [anon_sym_BANG] = ACTIONS(449), - [anon_sym_TILDE] = ACTIONS(447), - [anon_sym_typeof] = ACTIONS(449), - [anon_sym_void] = ACTIONS(449), - [anon_sym_delete] = ACTIONS(449), - [anon_sym_PLUS_PLUS] = ACTIONS(447), - [anon_sym_DASH_DASH] = ACTIONS(447), - [anon_sym_DQUOTE] = ACTIONS(447), - [anon_sym_SQUOTE] = ACTIONS(447), + [ts_builtin_sym_end] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_STAR] = ACTIONS(438), + [anon_sym_default] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(436), + [anon_sym_RBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(438), + [anon_sym_var] = ACTIONS(438), + [anon_sym_let] = ACTIONS(438), + [anon_sym_const] = ACTIONS(438), + [anon_sym_else] = ACTIONS(438), + [anon_sym_if] = ACTIONS(438), + [anon_sym_switch] = ACTIONS(438), + [anon_sym_for] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_await] = ACTIONS(438), + [anon_sym_in] = ACTIONS(438), + [anon_sym_while] = ACTIONS(438), + [anon_sym_do] = ACTIONS(438), + [anon_sym_try] = ACTIONS(438), + [anon_sym_with] = ACTIONS(438), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_debugger] = ACTIONS(438), + [anon_sym_return] = ACTIONS(438), + [anon_sym_throw] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_GT] = ACTIONS(438), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_DOT] = ACTIONS(438), + [anon_sym_class] = ACTIONS(438), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(438), + [anon_sym_QMARK_DOT] = ACTIONS(436), + [anon_sym_new] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_AMP_AMP] = ACTIONS(436), + [anon_sym_PIPE_PIPE] = ACTIONS(436), + [anon_sym_GT_GT] = ACTIONS(438), + [anon_sym_GT_GT_GT] = ACTIONS(436), + [anon_sym_LT_LT] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(438), + [anon_sym_CARET] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_PERCENT] = ACTIONS(436), + [anon_sym_STAR_STAR] = ACTIONS(436), + [anon_sym_LT_EQ] = ACTIONS(436), + [anon_sym_EQ_EQ] = ACTIONS(438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(436), + [anon_sym_BANG_EQ] = ACTIONS(438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(436), + [anon_sym_GT_EQ] = ACTIONS(436), + [anon_sym_QMARK_QMARK] = ACTIONS(436), + [anon_sym_instanceof] = ACTIONS(438), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_typeof] = ACTIONS(438), + [anon_sym_void] = ACTIONS(438), + [anon_sym_delete] = ACTIONS(438), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(436), + [anon_sym_SQUOTE] = ACTIONS(436), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(447), - [sym_number] = ACTIONS(447), - [sym_this] = ACTIONS(449), - [sym_super] = ACTIONS(449), - [sym_true] = ACTIONS(449), - [sym_false] = ACTIONS(449), - [sym_null] = ACTIONS(449), - [sym_undefined] = ACTIONS(449), - [anon_sym_AT] = ACTIONS(447), - [anon_sym_static] = ACTIONS(449), - [anon_sym_get] = ACTIONS(449), - [anon_sym_set] = ACTIONS(449), - [sym_preproc] = ACTIONS(447), - [sym__automatic_semicolon] = ACTIONS(455), + [anon_sym_BQUOTE] = ACTIONS(436), + [sym_number] = ACTIONS(436), + [sym_this] = ACTIONS(438), + [sym_super] = ACTIONS(438), + [sym_true] = ACTIONS(438), + [sym_false] = ACTIONS(438), + [sym_null] = ACTIONS(438), + [sym_undefined] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_static] = ACTIONS(438), + [anon_sym_get] = ACTIONS(438), + [anon_sym_set] = ACTIONS(438), + [sym_preproc] = ACTIONS(436), + [sym__automatic_semicolon] = ACTIONS(440), }, [47] = { - [ts_builtin_sym_end] = ACTIONS(457), - [sym_identifier] = ACTIONS(459), - [anon_sym_export] = ACTIONS(459), - [anon_sym_STAR] = ACTIONS(461), - [anon_sym_default] = ACTIONS(459), - [anon_sym_LBRACE] = ACTIONS(457), - [anon_sym_COMMA] = ACTIONS(463), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_import] = ACTIONS(459), - [anon_sym_var] = ACTIONS(459), - [anon_sym_let] = ACTIONS(459), - [anon_sym_const] = ACTIONS(459), - [anon_sym_if] = ACTIONS(459), - [anon_sym_else] = ACTIONS(459), - [anon_sym_switch] = ACTIONS(459), - [anon_sym_for] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(457), - [anon_sym_await] = ACTIONS(459), - [anon_sym_in] = ACTIONS(461), - [anon_sym_while] = ACTIONS(459), - [anon_sym_do] = ACTIONS(459), - [anon_sym_try] = ACTIONS(459), - [anon_sym_with] = ACTIONS(459), - [anon_sym_break] = ACTIONS(459), - [anon_sym_continue] = ACTIONS(459), - [anon_sym_debugger] = ACTIONS(459), - [anon_sym_return] = ACTIONS(459), - [anon_sym_throw] = ACTIONS(459), - [anon_sym_SEMI] = ACTIONS(457), - [anon_sym_case] = ACTIONS(459), - [anon_sym_yield] = ACTIONS(459), - [anon_sym_LBRACK] = ACTIONS(457), - [anon_sym_LT] = ACTIONS(459), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_SLASH] = ACTIONS(459), - [anon_sym_DOT] = ACTIONS(461), - [anon_sym_class] = ACTIONS(459), - [anon_sym_async] = ACTIONS(459), - [anon_sym_function] = ACTIONS(459), - [anon_sym_new] = ACTIONS(459), - [anon_sym_QMARK] = ACTIONS(461), - [anon_sym_AMP_AMP] = ACTIONS(463), - [anon_sym_PIPE_PIPE] = ACTIONS(463), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_GT_GT_GT] = ACTIONS(463), - [anon_sym_LT_LT] = ACTIONS(463), - [anon_sym_AMP] = ACTIONS(461), - [anon_sym_CARET] = ACTIONS(463), - [anon_sym_PIPE] = ACTIONS(461), - [anon_sym_PLUS] = ACTIONS(459), - [anon_sym_DASH] = ACTIONS(459), - [anon_sym_PERCENT] = ACTIONS(463), - [anon_sym_STAR_STAR] = ACTIONS(463), - [anon_sym_LT_EQ] = ACTIONS(463), - [anon_sym_EQ_EQ] = ACTIONS(461), - [anon_sym_EQ_EQ_EQ] = ACTIONS(463), - [anon_sym_BANG_EQ] = ACTIONS(461), - [anon_sym_BANG_EQ_EQ] = ACTIONS(463), - [anon_sym_GT_EQ] = ACTIONS(463), - [anon_sym_QMARK_QMARK] = ACTIONS(463), - [anon_sym_instanceof] = ACTIONS(461), - [anon_sym_BANG] = ACTIONS(459), - [anon_sym_TILDE] = ACTIONS(457), - [anon_sym_typeof] = ACTIONS(459), - [anon_sym_void] = ACTIONS(459), - [anon_sym_delete] = ACTIONS(459), - [anon_sym_PLUS_PLUS] = ACTIONS(457), - [anon_sym_DASH_DASH] = ACTIONS(457), - [anon_sym_DQUOTE] = ACTIONS(457), - [anon_sym_SQUOTE] = ACTIONS(457), + [ts_builtin_sym_end] = ACTIONS(442), + [sym_identifier] = ACTIONS(444), + [anon_sym_export] = ACTIONS(444), + [anon_sym_STAR] = ACTIONS(446), + [anon_sym_default] = ACTIONS(444), + [anon_sym_LBRACE] = ACTIONS(442), + [anon_sym_COMMA] = ACTIONS(448), + [anon_sym_RBRACE] = ACTIONS(442), + [anon_sym_import] = ACTIONS(444), + [anon_sym_var] = ACTIONS(444), + [anon_sym_let] = ACTIONS(444), + [anon_sym_const] = ACTIONS(444), + [anon_sym_else] = ACTIONS(444), + [anon_sym_if] = ACTIONS(444), + [anon_sym_switch] = ACTIONS(444), + [anon_sym_for] = ACTIONS(444), + [anon_sym_LPAREN] = ACTIONS(442), + [anon_sym_await] = ACTIONS(444), + [anon_sym_in] = ACTIONS(446), + [anon_sym_while] = ACTIONS(444), + [anon_sym_do] = ACTIONS(444), + [anon_sym_try] = ACTIONS(444), + [anon_sym_with] = ACTIONS(444), + [anon_sym_break] = ACTIONS(444), + [anon_sym_continue] = ACTIONS(444), + [anon_sym_debugger] = ACTIONS(444), + [anon_sym_return] = ACTIONS(444), + [anon_sym_throw] = ACTIONS(444), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_case] = ACTIONS(444), + [anon_sym_yield] = ACTIONS(444), + [anon_sym_LBRACK] = ACTIONS(442), + [anon_sym_LT] = ACTIONS(444), + [anon_sym_GT] = ACTIONS(446), + [anon_sym_SLASH] = ACTIONS(444), + [anon_sym_DOT] = ACTIONS(446), + [anon_sym_class] = ACTIONS(444), + [anon_sym_async] = ACTIONS(444), + [anon_sym_function] = ACTIONS(444), + [anon_sym_QMARK_DOT] = ACTIONS(448), + [anon_sym_new] = ACTIONS(444), + [anon_sym_QMARK] = ACTIONS(446), + [anon_sym_AMP_AMP] = ACTIONS(448), + [anon_sym_PIPE_PIPE] = ACTIONS(448), + [anon_sym_GT_GT] = ACTIONS(446), + [anon_sym_GT_GT_GT] = ACTIONS(448), + [anon_sym_LT_LT] = ACTIONS(448), + [anon_sym_AMP] = ACTIONS(446), + [anon_sym_CARET] = ACTIONS(448), + [anon_sym_PIPE] = ACTIONS(446), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_PERCENT] = ACTIONS(448), + [anon_sym_STAR_STAR] = ACTIONS(448), + [anon_sym_LT_EQ] = ACTIONS(448), + [anon_sym_EQ_EQ] = ACTIONS(446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(448), + [anon_sym_BANG_EQ] = ACTIONS(446), + [anon_sym_BANG_EQ_EQ] = ACTIONS(448), + [anon_sym_GT_EQ] = ACTIONS(448), + [anon_sym_QMARK_QMARK] = ACTIONS(448), + [anon_sym_instanceof] = ACTIONS(446), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_TILDE] = ACTIONS(442), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(442), + [anon_sym_DASH_DASH] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_SQUOTE] = ACTIONS(442), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(457), - [sym_number] = ACTIONS(457), - [sym_this] = ACTIONS(459), - [sym_super] = ACTIONS(459), - [sym_true] = ACTIONS(459), - [sym_false] = ACTIONS(459), - [sym_null] = ACTIONS(459), - [sym_undefined] = ACTIONS(459), - [anon_sym_AT] = ACTIONS(457), - [anon_sym_static] = ACTIONS(459), - [anon_sym_get] = ACTIONS(459), - [anon_sym_set] = ACTIONS(459), - [sym_preproc] = ACTIONS(457), - [sym__automatic_semicolon] = ACTIONS(465), + [anon_sym_BQUOTE] = ACTIONS(442), + [sym_number] = ACTIONS(442), + [sym_this] = ACTIONS(444), + [sym_super] = ACTIONS(444), + [sym_true] = ACTIONS(444), + [sym_false] = ACTIONS(444), + [sym_null] = ACTIONS(444), + [sym_undefined] = ACTIONS(444), + [anon_sym_AT] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_get] = ACTIONS(444), + [anon_sym_set] = ACTIONS(444), + [sym_preproc] = ACTIONS(442), + [sym__automatic_semicolon] = ACTIONS(450), }, [48] = { - [ts_builtin_sym_end] = ACTIONS(467), - [sym_identifier] = ACTIONS(469), - [anon_sym_export] = ACTIONS(469), - [anon_sym_STAR] = ACTIONS(471), - [anon_sym_default] = ACTIONS(469), - [anon_sym_LBRACE] = ACTIONS(467), - [anon_sym_COMMA] = ACTIONS(473), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_import] = ACTIONS(469), - [anon_sym_var] = ACTIONS(469), - [anon_sym_let] = ACTIONS(469), - [anon_sym_const] = ACTIONS(469), - [anon_sym_if] = ACTIONS(469), - [anon_sym_else] = ACTIONS(469), - [anon_sym_switch] = ACTIONS(469), - [anon_sym_for] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(467), - [anon_sym_await] = ACTIONS(469), - [anon_sym_in] = ACTIONS(471), - [anon_sym_while] = ACTIONS(469), - [anon_sym_do] = ACTIONS(469), - [anon_sym_try] = ACTIONS(469), - [anon_sym_with] = ACTIONS(469), - [anon_sym_break] = ACTIONS(469), - [anon_sym_continue] = ACTIONS(469), - [anon_sym_debugger] = ACTIONS(469), - [anon_sym_return] = ACTIONS(469), - [anon_sym_throw] = ACTIONS(469), - [anon_sym_SEMI] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [anon_sym_yield] = ACTIONS(469), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LT] = ACTIONS(469), - [anon_sym_GT] = ACTIONS(471), - [anon_sym_SLASH] = ACTIONS(469), - [anon_sym_DOT] = ACTIONS(471), - [anon_sym_class] = ACTIONS(469), - [anon_sym_async] = ACTIONS(469), - [anon_sym_function] = ACTIONS(469), - [anon_sym_new] = ACTIONS(469), - [anon_sym_QMARK] = ACTIONS(471), - [anon_sym_AMP_AMP] = ACTIONS(473), - [anon_sym_PIPE_PIPE] = ACTIONS(473), - [anon_sym_GT_GT] = ACTIONS(471), - [anon_sym_GT_GT_GT] = ACTIONS(473), - [anon_sym_LT_LT] = ACTIONS(473), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_CARET] = ACTIONS(473), - [anon_sym_PIPE] = ACTIONS(471), - [anon_sym_PLUS] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(469), - [anon_sym_PERCENT] = ACTIONS(473), - [anon_sym_STAR_STAR] = ACTIONS(473), - [anon_sym_LT_EQ] = ACTIONS(473), - [anon_sym_EQ_EQ] = ACTIONS(471), - [anon_sym_EQ_EQ_EQ] = ACTIONS(473), - [anon_sym_BANG_EQ] = ACTIONS(471), - [anon_sym_BANG_EQ_EQ] = ACTIONS(473), - [anon_sym_GT_EQ] = ACTIONS(473), - [anon_sym_QMARK_QMARK] = ACTIONS(473), - [anon_sym_instanceof] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(469), - [anon_sym_TILDE] = ACTIONS(467), - [anon_sym_typeof] = ACTIONS(469), - [anon_sym_void] = ACTIONS(469), - [anon_sym_delete] = ACTIONS(469), - [anon_sym_PLUS_PLUS] = ACTIONS(467), - [anon_sym_DASH_DASH] = ACTIONS(467), - [anon_sym_DQUOTE] = ACTIONS(467), - [anon_sym_SQUOTE] = ACTIONS(467), + [ts_builtin_sym_end] = ACTIONS(452), + [sym_identifier] = ACTIONS(454), + [anon_sym_export] = ACTIONS(454), + [anon_sym_STAR] = ACTIONS(454), + [anon_sym_default] = ACTIONS(454), + [anon_sym_LBRACE] = ACTIONS(452), + [anon_sym_COMMA] = ACTIONS(452), + [anon_sym_RBRACE] = ACTIONS(452), + [anon_sym_import] = ACTIONS(454), + [anon_sym_var] = ACTIONS(454), + [anon_sym_let] = ACTIONS(454), + [anon_sym_const] = ACTIONS(454), + [anon_sym_else] = ACTIONS(454), + [anon_sym_if] = ACTIONS(454), + [anon_sym_switch] = ACTIONS(454), + [anon_sym_for] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(452), + [anon_sym_await] = ACTIONS(454), + [anon_sym_in] = ACTIONS(454), + [anon_sym_while] = ACTIONS(454), + [anon_sym_do] = ACTIONS(454), + [anon_sym_try] = ACTIONS(454), + [anon_sym_with] = ACTIONS(454), + [anon_sym_break] = ACTIONS(454), + [anon_sym_continue] = ACTIONS(454), + [anon_sym_debugger] = ACTIONS(454), + [anon_sym_return] = ACTIONS(454), + [anon_sym_throw] = ACTIONS(454), + [anon_sym_SEMI] = ACTIONS(452), + [anon_sym_case] = ACTIONS(454), + [anon_sym_yield] = ACTIONS(454), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LT] = ACTIONS(454), + [anon_sym_GT] = ACTIONS(454), + [anon_sym_SLASH] = ACTIONS(454), + [anon_sym_DOT] = ACTIONS(454), + [anon_sym_class] = ACTIONS(454), + [anon_sym_async] = ACTIONS(454), + [anon_sym_function] = ACTIONS(454), + [anon_sym_QMARK_DOT] = ACTIONS(452), + [anon_sym_new] = ACTIONS(454), + [anon_sym_QMARK] = ACTIONS(454), + [anon_sym_AMP_AMP] = ACTIONS(452), + [anon_sym_PIPE_PIPE] = ACTIONS(452), + [anon_sym_GT_GT] = ACTIONS(454), + [anon_sym_GT_GT_GT] = ACTIONS(452), + [anon_sym_LT_LT] = ACTIONS(452), + [anon_sym_AMP] = ACTIONS(454), + [anon_sym_CARET] = ACTIONS(452), + [anon_sym_PIPE] = ACTIONS(454), + [anon_sym_PLUS] = ACTIONS(454), + [anon_sym_DASH] = ACTIONS(454), + [anon_sym_PERCENT] = ACTIONS(452), + [anon_sym_STAR_STAR] = ACTIONS(452), + [anon_sym_LT_EQ] = ACTIONS(452), + [anon_sym_EQ_EQ] = ACTIONS(454), + [anon_sym_EQ_EQ_EQ] = ACTIONS(452), + [anon_sym_BANG_EQ] = ACTIONS(454), + [anon_sym_BANG_EQ_EQ] = ACTIONS(452), + [anon_sym_GT_EQ] = ACTIONS(452), + [anon_sym_QMARK_QMARK] = ACTIONS(452), + [anon_sym_instanceof] = ACTIONS(454), + [anon_sym_BANG] = ACTIONS(454), + [anon_sym_TILDE] = ACTIONS(452), + [anon_sym_typeof] = ACTIONS(454), + [anon_sym_void] = ACTIONS(454), + [anon_sym_delete] = ACTIONS(454), + [anon_sym_PLUS_PLUS] = ACTIONS(452), + [anon_sym_DASH_DASH] = ACTIONS(452), + [anon_sym_DQUOTE] = ACTIONS(452), + [anon_sym_SQUOTE] = ACTIONS(452), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(467), - [sym_number] = ACTIONS(467), - [sym_this] = ACTIONS(469), - [sym_super] = ACTIONS(469), - [sym_true] = ACTIONS(469), - [sym_false] = ACTIONS(469), - [sym_null] = ACTIONS(469), - [sym_undefined] = ACTIONS(469), - [anon_sym_AT] = ACTIONS(467), - [anon_sym_static] = ACTIONS(469), - [anon_sym_get] = ACTIONS(469), - [anon_sym_set] = ACTIONS(469), - [sym_preproc] = ACTIONS(467), - [sym__automatic_semicolon] = ACTIONS(475), + [anon_sym_BQUOTE] = ACTIONS(452), + [sym_number] = ACTIONS(452), + [sym_this] = ACTIONS(454), + [sym_super] = ACTIONS(454), + [sym_true] = ACTIONS(454), + [sym_false] = ACTIONS(454), + [sym_null] = ACTIONS(454), + [sym_undefined] = ACTIONS(454), + [anon_sym_AT] = ACTIONS(452), + [anon_sym_static] = ACTIONS(454), + [anon_sym_get] = ACTIONS(454), + [anon_sym_set] = ACTIONS(454), + [sym_preproc] = ACTIONS(452), + [sym__automatic_semicolon] = ACTIONS(452), }, [49] = { - [ts_builtin_sym_end] = ACTIONS(477), - [sym_identifier] = ACTIONS(479), - [anon_sym_export] = ACTIONS(479), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_default] = ACTIONS(479), - [anon_sym_LBRACE] = ACTIONS(477), - [anon_sym_COMMA] = ACTIONS(483), - [anon_sym_RBRACE] = ACTIONS(477), - [anon_sym_import] = ACTIONS(479), - [anon_sym_var] = ACTIONS(479), - [anon_sym_let] = ACTIONS(479), - [anon_sym_const] = ACTIONS(479), - [anon_sym_if] = ACTIONS(479), - [anon_sym_else] = ACTIONS(479), - [anon_sym_switch] = ACTIONS(479), - [anon_sym_for] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(477), - [anon_sym_await] = ACTIONS(479), - [anon_sym_in] = ACTIONS(481), - [anon_sym_while] = ACTIONS(479), - [anon_sym_do] = ACTIONS(479), - [anon_sym_try] = ACTIONS(479), - [anon_sym_with] = ACTIONS(479), - [anon_sym_break] = ACTIONS(479), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_debugger] = ACTIONS(479), - [anon_sym_return] = ACTIONS(479), - [anon_sym_throw] = ACTIONS(479), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_case] = ACTIONS(479), - [anon_sym_yield] = ACTIONS(479), - [anon_sym_LBRACK] = ACTIONS(477), - [anon_sym_LT] = ACTIONS(479), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_SLASH] = ACTIONS(479), - [anon_sym_DOT] = ACTIONS(481), - [anon_sym_class] = ACTIONS(479), - [anon_sym_async] = ACTIONS(479), - [anon_sym_function] = ACTIONS(479), - [anon_sym_new] = ACTIONS(479), - [anon_sym_QMARK] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(483), - [anon_sym_PIPE_PIPE] = ACTIONS(483), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_GT_GT_GT] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(483), - [anon_sym_AMP] = ACTIONS(481), - [anon_sym_CARET] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_PLUS] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(479), - [anon_sym_PERCENT] = ACTIONS(483), - [anon_sym_STAR_STAR] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(483), - [anon_sym_EQ_EQ] = ACTIONS(481), - [anon_sym_EQ_EQ_EQ] = ACTIONS(483), - [anon_sym_BANG_EQ] = ACTIONS(481), - [anon_sym_BANG_EQ_EQ] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(483), - [anon_sym_QMARK_QMARK] = ACTIONS(483), - [anon_sym_instanceof] = ACTIONS(481), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(477), - [anon_sym_typeof] = ACTIONS(479), - [anon_sym_void] = ACTIONS(479), - [anon_sym_delete] = ACTIONS(479), - [anon_sym_PLUS_PLUS] = ACTIONS(477), - [anon_sym_DASH_DASH] = ACTIONS(477), - [anon_sym_DQUOTE] = ACTIONS(477), - [anon_sym_SQUOTE] = ACTIONS(477), + [ts_builtin_sym_end] = ACTIONS(456), + [sym_identifier] = ACTIONS(458), + [anon_sym_export] = ACTIONS(458), + [anon_sym_STAR] = ACTIONS(460), + [anon_sym_default] = ACTIONS(458), + [anon_sym_LBRACE] = ACTIONS(456), + [anon_sym_COMMA] = ACTIONS(462), + [anon_sym_RBRACE] = ACTIONS(456), + [anon_sym_import] = ACTIONS(458), + [anon_sym_var] = ACTIONS(458), + [anon_sym_let] = ACTIONS(458), + [anon_sym_const] = ACTIONS(458), + [anon_sym_else] = ACTIONS(458), + [anon_sym_if] = ACTIONS(458), + [anon_sym_switch] = ACTIONS(458), + [anon_sym_for] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(456), + [anon_sym_await] = ACTIONS(458), + [anon_sym_in] = ACTIONS(460), + [anon_sym_while] = ACTIONS(458), + [anon_sym_do] = ACTIONS(458), + [anon_sym_try] = ACTIONS(458), + [anon_sym_with] = ACTIONS(458), + [anon_sym_break] = ACTIONS(458), + [anon_sym_continue] = ACTIONS(458), + [anon_sym_debugger] = ACTIONS(458), + [anon_sym_return] = ACTIONS(458), + [anon_sym_throw] = ACTIONS(458), + [anon_sym_SEMI] = ACTIONS(456), + [anon_sym_case] = ACTIONS(458), + [anon_sym_yield] = ACTIONS(458), + [anon_sym_LBRACK] = ACTIONS(456), + [anon_sym_LT] = ACTIONS(458), + [anon_sym_GT] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(458), + [anon_sym_DOT] = ACTIONS(460), + [anon_sym_class] = ACTIONS(458), + [anon_sym_async] = ACTIONS(458), + [anon_sym_function] = ACTIONS(458), + [anon_sym_QMARK_DOT] = ACTIONS(462), + [anon_sym_new] = ACTIONS(458), + [anon_sym_QMARK] = ACTIONS(460), + [anon_sym_AMP_AMP] = ACTIONS(462), + [anon_sym_PIPE_PIPE] = ACTIONS(462), + [anon_sym_GT_GT] = ACTIONS(460), + [anon_sym_GT_GT_GT] = ACTIONS(462), + [anon_sym_LT_LT] = ACTIONS(462), + [anon_sym_AMP] = ACTIONS(460), + [anon_sym_CARET] = ACTIONS(462), + [anon_sym_PIPE] = ACTIONS(460), + [anon_sym_PLUS] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(458), + [anon_sym_PERCENT] = ACTIONS(462), + [anon_sym_STAR_STAR] = ACTIONS(462), + [anon_sym_LT_EQ] = ACTIONS(462), + [anon_sym_EQ_EQ] = ACTIONS(460), + [anon_sym_EQ_EQ_EQ] = ACTIONS(462), + [anon_sym_BANG_EQ] = ACTIONS(460), + [anon_sym_BANG_EQ_EQ] = ACTIONS(462), + [anon_sym_GT_EQ] = ACTIONS(462), + [anon_sym_QMARK_QMARK] = ACTIONS(462), + [anon_sym_instanceof] = ACTIONS(460), + [anon_sym_BANG] = ACTIONS(458), + [anon_sym_TILDE] = ACTIONS(456), + [anon_sym_typeof] = ACTIONS(458), + [anon_sym_void] = ACTIONS(458), + [anon_sym_delete] = ACTIONS(458), + [anon_sym_PLUS_PLUS] = ACTIONS(456), + [anon_sym_DASH_DASH] = ACTIONS(456), + [anon_sym_DQUOTE] = ACTIONS(456), + [anon_sym_SQUOTE] = ACTIONS(456), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(477), - [sym_number] = ACTIONS(477), - [sym_this] = ACTIONS(479), - [sym_super] = ACTIONS(479), - [sym_true] = ACTIONS(479), - [sym_false] = ACTIONS(479), - [sym_null] = ACTIONS(479), - [sym_undefined] = ACTIONS(479), - [anon_sym_AT] = ACTIONS(477), - [anon_sym_static] = ACTIONS(479), - [anon_sym_get] = ACTIONS(479), - [anon_sym_set] = ACTIONS(479), - [sym_preproc] = ACTIONS(477), - [sym__automatic_semicolon] = ACTIONS(485), + [anon_sym_BQUOTE] = ACTIONS(456), + [sym_number] = ACTIONS(456), + [sym_this] = ACTIONS(458), + [sym_super] = ACTIONS(458), + [sym_true] = ACTIONS(458), + [sym_false] = ACTIONS(458), + [sym_null] = ACTIONS(458), + [sym_undefined] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(456), + [anon_sym_static] = ACTIONS(458), + [anon_sym_get] = ACTIONS(458), + [anon_sym_set] = ACTIONS(458), + [sym_preproc] = ACTIONS(456), + [sym__automatic_semicolon] = ACTIONS(464), }, [50] = { - [ts_builtin_sym_end] = ACTIONS(487), - [sym_identifier] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_STAR] = ACTIONS(489), - [anon_sym_default] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(487), - [anon_sym_COMMA] = ACTIONS(487), - [anon_sym_RBRACE] = ACTIONS(487), - [anon_sym_import] = ACTIONS(489), - [anon_sym_var] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_const] = ACTIONS(489), - [anon_sym_if] = ACTIONS(489), - [anon_sym_else] = ACTIONS(489), - [anon_sym_switch] = ACTIONS(489), - [anon_sym_for] = ACTIONS(489), - [anon_sym_LPAREN] = ACTIONS(487), - [anon_sym_await] = ACTIONS(489), - [anon_sym_in] = ACTIONS(489), - [anon_sym_while] = ACTIONS(489), - [anon_sym_do] = ACTIONS(489), - [anon_sym_try] = ACTIONS(489), - [anon_sym_with] = ACTIONS(489), - [anon_sym_break] = ACTIONS(489), - [anon_sym_continue] = ACTIONS(489), - [anon_sym_debugger] = ACTIONS(489), - [anon_sym_return] = ACTIONS(489), - [anon_sym_throw] = ACTIONS(489), - [anon_sym_SEMI] = ACTIONS(487), - [anon_sym_case] = ACTIONS(489), - [anon_sym_yield] = ACTIONS(489), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(489), - [anon_sym_GT] = ACTIONS(489), - [anon_sym_SLASH] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_class] = ACTIONS(489), - [anon_sym_async] = ACTIONS(489), - [anon_sym_function] = ACTIONS(489), - [anon_sym_new] = ACTIONS(489), - [anon_sym_QMARK] = ACTIONS(489), - [anon_sym_AMP_AMP] = ACTIONS(487), - [anon_sym_PIPE_PIPE] = ACTIONS(487), - [anon_sym_GT_GT] = ACTIONS(489), - [anon_sym_GT_GT_GT] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(489), - [anon_sym_CARET] = ACTIONS(487), - [anon_sym_PIPE] = ACTIONS(489), - [anon_sym_PLUS] = ACTIONS(489), - [anon_sym_DASH] = ACTIONS(489), - [anon_sym_PERCENT] = ACTIONS(487), - [anon_sym_STAR_STAR] = ACTIONS(487), - [anon_sym_LT_EQ] = ACTIONS(487), - [anon_sym_EQ_EQ] = ACTIONS(489), - [anon_sym_EQ_EQ_EQ] = ACTIONS(487), - [anon_sym_BANG_EQ] = ACTIONS(489), - [anon_sym_BANG_EQ_EQ] = ACTIONS(487), - [anon_sym_GT_EQ] = ACTIONS(487), - [anon_sym_QMARK_QMARK] = ACTIONS(487), - [anon_sym_instanceof] = ACTIONS(489), - [anon_sym_BANG] = ACTIONS(489), - [anon_sym_TILDE] = ACTIONS(487), - [anon_sym_typeof] = ACTIONS(489), - [anon_sym_void] = ACTIONS(489), - [anon_sym_delete] = ACTIONS(489), - [anon_sym_PLUS_PLUS] = ACTIONS(487), - [anon_sym_DASH_DASH] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(487), - [anon_sym_SQUOTE] = ACTIONS(487), + [ts_builtin_sym_end] = ACTIONS(466), + [sym_identifier] = ACTIONS(468), + [anon_sym_export] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_default] = ACTIONS(468), + [anon_sym_LBRACE] = ACTIONS(466), + [anon_sym_COMMA] = ACTIONS(472), + [anon_sym_RBRACE] = ACTIONS(466), + [anon_sym_import] = ACTIONS(468), + [anon_sym_var] = ACTIONS(468), + [anon_sym_let] = ACTIONS(468), + [anon_sym_const] = ACTIONS(468), + [anon_sym_else] = ACTIONS(468), + [anon_sym_if] = ACTIONS(468), + [anon_sym_switch] = ACTIONS(468), + [anon_sym_for] = ACTIONS(468), + [anon_sym_LPAREN] = ACTIONS(466), + [anon_sym_await] = ACTIONS(468), + [anon_sym_in] = ACTIONS(470), + [anon_sym_while] = ACTIONS(468), + [anon_sym_do] = ACTIONS(468), + [anon_sym_try] = ACTIONS(468), + [anon_sym_with] = ACTIONS(468), + [anon_sym_break] = ACTIONS(468), + [anon_sym_continue] = ACTIONS(468), + [anon_sym_debugger] = ACTIONS(468), + [anon_sym_return] = ACTIONS(468), + [anon_sym_throw] = ACTIONS(468), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_case] = ACTIONS(468), + [anon_sym_yield] = ACTIONS(468), + [anon_sym_LBRACK] = ACTIONS(466), + [anon_sym_LT] = ACTIONS(468), + [anon_sym_GT] = ACTIONS(470), + [anon_sym_SLASH] = ACTIONS(468), + [anon_sym_DOT] = ACTIONS(470), + [anon_sym_class] = ACTIONS(468), + [anon_sym_async] = ACTIONS(468), + [anon_sym_function] = ACTIONS(468), + [anon_sym_QMARK_DOT] = ACTIONS(472), + [anon_sym_new] = ACTIONS(468), + [anon_sym_QMARK] = ACTIONS(470), + [anon_sym_AMP_AMP] = ACTIONS(472), + [anon_sym_PIPE_PIPE] = ACTIONS(472), + [anon_sym_GT_GT] = ACTIONS(470), + [anon_sym_GT_GT_GT] = ACTIONS(472), + [anon_sym_LT_LT] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(470), + [anon_sym_CARET] = ACTIONS(472), + [anon_sym_PIPE] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(468), + [anon_sym_DASH] = ACTIONS(468), + [anon_sym_PERCENT] = ACTIONS(472), + [anon_sym_STAR_STAR] = ACTIONS(472), + [anon_sym_LT_EQ] = ACTIONS(472), + [anon_sym_EQ_EQ] = ACTIONS(470), + [anon_sym_EQ_EQ_EQ] = ACTIONS(472), + [anon_sym_BANG_EQ] = ACTIONS(470), + [anon_sym_BANG_EQ_EQ] = ACTIONS(472), + [anon_sym_GT_EQ] = ACTIONS(472), + [anon_sym_QMARK_QMARK] = ACTIONS(472), + [anon_sym_instanceof] = ACTIONS(470), + [anon_sym_BANG] = ACTIONS(468), + [anon_sym_TILDE] = ACTIONS(466), + [anon_sym_typeof] = ACTIONS(468), + [anon_sym_void] = ACTIONS(468), + [anon_sym_delete] = ACTIONS(468), + [anon_sym_PLUS_PLUS] = ACTIONS(466), + [anon_sym_DASH_DASH] = ACTIONS(466), + [anon_sym_DQUOTE] = ACTIONS(466), + [anon_sym_SQUOTE] = ACTIONS(466), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(487), - [sym_number] = ACTIONS(487), - [sym_this] = ACTIONS(489), - [sym_super] = ACTIONS(489), - [sym_true] = ACTIONS(489), - [sym_false] = ACTIONS(489), - [sym_null] = ACTIONS(489), - [sym_undefined] = ACTIONS(489), - [anon_sym_AT] = ACTIONS(487), - [anon_sym_static] = ACTIONS(489), - [anon_sym_get] = ACTIONS(489), - [anon_sym_set] = ACTIONS(489), - [sym_preproc] = ACTIONS(487), - [sym__automatic_semicolon] = ACTIONS(487), + [anon_sym_BQUOTE] = ACTIONS(466), + [sym_number] = ACTIONS(466), + [sym_this] = ACTIONS(468), + [sym_super] = ACTIONS(468), + [sym_true] = ACTIONS(468), + [sym_false] = ACTIONS(468), + [sym_null] = ACTIONS(468), + [sym_undefined] = ACTIONS(468), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_static] = ACTIONS(468), + [anon_sym_get] = ACTIONS(468), + [anon_sym_set] = ACTIONS(468), + [sym_preproc] = ACTIONS(466), + [sym__automatic_semicolon] = ACTIONS(474), }, [51] = { - [ts_builtin_sym_end] = ACTIONS(491), - [sym_identifier] = ACTIONS(493), - [anon_sym_export] = ACTIONS(493), - [anon_sym_STAR] = ACTIONS(495), - [anon_sym_default] = ACTIONS(493), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_COMMA] = ACTIONS(497), - [anon_sym_RBRACE] = ACTIONS(491), - [anon_sym_import] = ACTIONS(493), - [anon_sym_var] = ACTIONS(493), - [anon_sym_let] = ACTIONS(493), - [anon_sym_const] = ACTIONS(493), - [anon_sym_if] = ACTIONS(493), - [anon_sym_else] = ACTIONS(493), - [anon_sym_switch] = ACTIONS(493), - [anon_sym_for] = ACTIONS(493), - [anon_sym_LPAREN] = ACTIONS(491), - [anon_sym_await] = ACTIONS(493), - [anon_sym_in] = ACTIONS(495), - [anon_sym_while] = ACTIONS(493), - [anon_sym_do] = ACTIONS(493), - [anon_sym_try] = ACTIONS(493), - [anon_sym_with] = ACTIONS(493), - [anon_sym_break] = ACTIONS(493), - [anon_sym_continue] = ACTIONS(493), - [anon_sym_debugger] = ACTIONS(493), - [anon_sym_return] = ACTIONS(493), - [anon_sym_throw] = ACTIONS(493), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_case] = ACTIONS(493), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_LBRACK] = ACTIONS(491), - [anon_sym_LT] = ACTIONS(493), - [anon_sym_GT] = ACTIONS(495), - [anon_sym_SLASH] = ACTIONS(493), - [anon_sym_DOT] = ACTIONS(495), - [anon_sym_class] = ACTIONS(493), - [anon_sym_async] = ACTIONS(493), - [anon_sym_function] = ACTIONS(493), - [anon_sym_new] = ACTIONS(493), - [anon_sym_QMARK] = ACTIONS(495), - [anon_sym_AMP_AMP] = ACTIONS(497), - [anon_sym_PIPE_PIPE] = ACTIONS(497), - [anon_sym_GT_GT] = ACTIONS(495), - [anon_sym_GT_GT_GT] = ACTIONS(497), - [anon_sym_LT_LT] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(495), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_PIPE] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(493), - [anon_sym_DASH] = ACTIONS(493), - [anon_sym_PERCENT] = ACTIONS(497), - [anon_sym_STAR_STAR] = ACTIONS(497), - [anon_sym_LT_EQ] = ACTIONS(497), - [anon_sym_EQ_EQ] = ACTIONS(495), - [anon_sym_EQ_EQ_EQ] = ACTIONS(497), - [anon_sym_BANG_EQ] = ACTIONS(495), - [anon_sym_BANG_EQ_EQ] = ACTIONS(497), - [anon_sym_GT_EQ] = ACTIONS(497), - [anon_sym_QMARK_QMARK] = ACTIONS(497), - [anon_sym_instanceof] = ACTIONS(495), - [anon_sym_BANG] = ACTIONS(493), - [anon_sym_TILDE] = ACTIONS(491), - [anon_sym_typeof] = ACTIONS(493), - [anon_sym_void] = ACTIONS(493), - [anon_sym_delete] = ACTIONS(493), - [anon_sym_PLUS_PLUS] = ACTIONS(491), - [anon_sym_DASH_DASH] = ACTIONS(491), - [anon_sym_DQUOTE] = ACTIONS(491), - [anon_sym_SQUOTE] = ACTIONS(491), + [ts_builtin_sym_end] = ACTIONS(476), + [sym_identifier] = ACTIONS(478), + [anon_sym_export] = ACTIONS(478), + [anon_sym_STAR] = ACTIONS(480), + [anon_sym_default] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(476), + [anon_sym_COMMA] = ACTIONS(482), + [anon_sym_RBRACE] = ACTIONS(476), + [anon_sym_import] = ACTIONS(478), + [anon_sym_var] = ACTIONS(478), + [anon_sym_let] = ACTIONS(478), + [anon_sym_const] = ACTIONS(478), + [anon_sym_else] = ACTIONS(478), + [anon_sym_if] = ACTIONS(478), + [anon_sym_switch] = ACTIONS(478), + [anon_sym_for] = ACTIONS(478), + [anon_sym_LPAREN] = ACTIONS(476), + [anon_sym_await] = ACTIONS(478), + [anon_sym_in] = ACTIONS(480), + [anon_sym_while] = ACTIONS(478), + [anon_sym_do] = ACTIONS(478), + [anon_sym_try] = ACTIONS(478), + [anon_sym_with] = ACTIONS(478), + [anon_sym_break] = ACTIONS(478), + [anon_sym_continue] = ACTIONS(478), + [anon_sym_debugger] = ACTIONS(478), + [anon_sym_return] = ACTIONS(478), + [anon_sym_throw] = ACTIONS(478), + [anon_sym_SEMI] = ACTIONS(476), + [anon_sym_case] = ACTIONS(478), + [anon_sym_yield] = ACTIONS(478), + [anon_sym_LBRACK] = ACTIONS(476), + [anon_sym_LT] = ACTIONS(478), + [anon_sym_GT] = ACTIONS(480), + [anon_sym_SLASH] = ACTIONS(478), + [anon_sym_DOT] = ACTIONS(480), + [anon_sym_class] = ACTIONS(478), + [anon_sym_async] = ACTIONS(478), + [anon_sym_function] = ACTIONS(478), + [anon_sym_QMARK_DOT] = ACTIONS(482), + [anon_sym_new] = ACTIONS(478), + [anon_sym_QMARK] = ACTIONS(480), + [anon_sym_AMP_AMP] = ACTIONS(482), + [anon_sym_PIPE_PIPE] = ACTIONS(482), + [anon_sym_GT_GT] = ACTIONS(480), + [anon_sym_GT_GT_GT] = ACTIONS(482), + [anon_sym_LT_LT] = ACTIONS(482), + [anon_sym_AMP] = ACTIONS(480), + [anon_sym_CARET] = ACTIONS(482), + [anon_sym_PIPE] = ACTIONS(480), + [anon_sym_PLUS] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(478), + [anon_sym_PERCENT] = ACTIONS(482), + [anon_sym_STAR_STAR] = ACTIONS(482), + [anon_sym_LT_EQ] = ACTIONS(482), + [anon_sym_EQ_EQ] = ACTIONS(480), + [anon_sym_EQ_EQ_EQ] = ACTIONS(482), + [anon_sym_BANG_EQ] = ACTIONS(480), + [anon_sym_BANG_EQ_EQ] = ACTIONS(482), + [anon_sym_GT_EQ] = ACTIONS(482), + [anon_sym_QMARK_QMARK] = ACTIONS(482), + [anon_sym_instanceof] = ACTIONS(480), + [anon_sym_BANG] = ACTIONS(478), + [anon_sym_TILDE] = ACTIONS(476), + [anon_sym_typeof] = ACTIONS(478), + [anon_sym_void] = ACTIONS(478), + [anon_sym_delete] = ACTIONS(478), + [anon_sym_PLUS_PLUS] = ACTIONS(476), + [anon_sym_DASH_DASH] = ACTIONS(476), + [anon_sym_DQUOTE] = ACTIONS(476), + [anon_sym_SQUOTE] = ACTIONS(476), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(491), - [sym_number] = ACTIONS(491), - [sym_this] = ACTIONS(493), - [sym_super] = ACTIONS(493), - [sym_true] = ACTIONS(493), - [sym_false] = ACTIONS(493), - [sym_null] = ACTIONS(493), - [sym_undefined] = ACTIONS(493), - [anon_sym_AT] = ACTIONS(491), - [anon_sym_static] = ACTIONS(493), - [anon_sym_get] = ACTIONS(493), - [anon_sym_set] = ACTIONS(493), - [sym_preproc] = ACTIONS(491), - [sym__automatic_semicolon] = ACTIONS(499), + [anon_sym_BQUOTE] = ACTIONS(476), + [sym_number] = ACTIONS(476), + [sym_this] = ACTIONS(478), + [sym_super] = ACTIONS(478), + [sym_true] = ACTIONS(478), + [sym_false] = ACTIONS(478), + [sym_null] = ACTIONS(478), + [sym_undefined] = ACTIONS(478), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_static] = ACTIONS(478), + [anon_sym_get] = ACTIONS(478), + [anon_sym_set] = ACTIONS(478), + [sym_preproc] = ACTIONS(476), + [sym__automatic_semicolon] = ACTIONS(484), }, [52] = { - [ts_builtin_sym_end] = ACTIONS(501), - [sym_identifier] = ACTIONS(503), - [anon_sym_export] = ACTIONS(503), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_default] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(501), - [anon_sym_COMMA] = ACTIONS(501), - [anon_sym_RBRACE] = ACTIONS(501), - [anon_sym_import] = ACTIONS(503), - [anon_sym_var] = ACTIONS(503), - [anon_sym_let] = ACTIONS(503), - [anon_sym_const] = ACTIONS(503), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(503), - [anon_sym_for] = ACTIONS(503), - [anon_sym_LPAREN] = ACTIONS(501), - [anon_sym_await] = ACTIONS(503), - [anon_sym_in] = ACTIONS(503), - [anon_sym_while] = ACTIONS(503), - [anon_sym_do] = ACTIONS(503), - [anon_sym_try] = ACTIONS(503), - [anon_sym_with] = ACTIONS(503), - [anon_sym_break] = ACTIONS(503), - [anon_sym_continue] = ACTIONS(503), - [anon_sym_debugger] = ACTIONS(503), - [anon_sym_return] = ACTIONS(503), - [anon_sym_throw] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(501), - [anon_sym_case] = ACTIONS(503), - [anon_sym_yield] = ACTIONS(503), - [anon_sym_LBRACK] = ACTIONS(501), - [anon_sym_LT] = ACTIONS(503), - [anon_sym_GT] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(503), - [anon_sym_class] = ACTIONS(503), - [anon_sym_async] = ACTIONS(503), - [anon_sym_function] = ACTIONS(503), - [anon_sym_new] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_GT_GT] = ACTIONS(503), - [anon_sym_GT_GT_GT] = ACTIONS(501), - [anon_sym_LT_LT] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(503), - [anon_sym_CARET] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(503), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_PERCENT] = ACTIONS(501), - [anon_sym_STAR_STAR] = ACTIONS(501), - [anon_sym_LT_EQ] = ACTIONS(501), - [anon_sym_EQ_EQ] = ACTIONS(503), - [anon_sym_EQ_EQ_EQ] = ACTIONS(501), - [anon_sym_BANG_EQ] = ACTIONS(503), - [anon_sym_BANG_EQ_EQ] = ACTIONS(501), - [anon_sym_GT_EQ] = ACTIONS(501), - [anon_sym_QMARK_QMARK] = ACTIONS(501), - [anon_sym_instanceof] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_TILDE] = ACTIONS(501), - [anon_sym_typeof] = ACTIONS(503), - [anon_sym_void] = ACTIONS(503), - [anon_sym_delete] = ACTIONS(503), - [anon_sym_PLUS_PLUS] = ACTIONS(501), - [anon_sym_DASH_DASH] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(501), - [anon_sym_SQUOTE] = ACTIONS(501), + [ts_builtin_sym_end] = ACTIONS(426), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(428), + [anon_sym_STAR] = ACTIONS(428), + [anon_sym_default] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(426), + [anon_sym_COMMA] = ACTIONS(426), + [anon_sym_RBRACE] = ACTIONS(426), + [anon_sym_import] = ACTIONS(428), + [anon_sym_var] = ACTIONS(428), + [anon_sym_let] = ACTIONS(428), + [anon_sym_const] = ACTIONS(428), + [anon_sym_else] = ACTIONS(428), + [anon_sym_if] = ACTIONS(428), + [anon_sym_switch] = ACTIONS(428), + [anon_sym_for] = ACTIONS(428), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_await] = ACTIONS(428), + [anon_sym_in] = ACTIONS(428), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(428), + [anon_sym_try] = ACTIONS(428), + [anon_sym_with] = ACTIONS(428), + [anon_sym_break] = ACTIONS(428), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_debugger] = ACTIONS(428), + [anon_sym_return] = ACTIONS(428), + [anon_sym_throw] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_case] = ACTIONS(428), + [anon_sym_yield] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(428), + [anon_sym_GT] = ACTIONS(428), + [anon_sym_SLASH] = ACTIONS(428), + [anon_sym_DOT] = ACTIONS(428), + [anon_sym_class] = ACTIONS(428), + [anon_sym_async] = ACTIONS(428), + [anon_sym_function] = ACTIONS(428), + [anon_sym_QMARK_DOT] = ACTIONS(426), + [anon_sym_new] = ACTIONS(428), + [anon_sym_QMARK] = ACTIONS(428), + [anon_sym_AMP_AMP] = ACTIONS(426), + [anon_sym_PIPE_PIPE] = ACTIONS(426), + [anon_sym_GT_GT] = ACTIONS(428), + [anon_sym_GT_GT_GT] = ACTIONS(426), + [anon_sym_LT_LT] = ACTIONS(426), + [anon_sym_AMP] = ACTIONS(428), + [anon_sym_CARET] = ACTIONS(426), + [anon_sym_PIPE] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_PERCENT] = ACTIONS(426), + [anon_sym_STAR_STAR] = ACTIONS(426), + [anon_sym_LT_EQ] = ACTIONS(426), + [anon_sym_EQ_EQ] = ACTIONS(428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(426), + [anon_sym_BANG_EQ] = ACTIONS(428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(426), + [anon_sym_GT_EQ] = ACTIONS(426), + [anon_sym_QMARK_QMARK] = ACTIONS(426), + [anon_sym_instanceof] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(428), + [anon_sym_TILDE] = ACTIONS(426), + [anon_sym_typeof] = ACTIONS(428), + [anon_sym_void] = ACTIONS(428), + [anon_sym_delete] = ACTIONS(428), + [anon_sym_PLUS_PLUS] = ACTIONS(426), + [anon_sym_DASH_DASH] = ACTIONS(426), + [anon_sym_DQUOTE] = ACTIONS(426), + [anon_sym_SQUOTE] = ACTIONS(426), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(501), - [sym_number] = ACTIONS(501), - [sym_this] = ACTIONS(503), - [sym_super] = ACTIONS(503), - [sym_true] = ACTIONS(503), - [sym_false] = ACTIONS(503), - [sym_null] = ACTIONS(503), - [sym_undefined] = ACTIONS(503), - [anon_sym_AT] = ACTIONS(501), - [anon_sym_static] = ACTIONS(503), - [anon_sym_get] = ACTIONS(503), - [anon_sym_set] = ACTIONS(503), - [sym_preproc] = ACTIONS(501), - [sym__automatic_semicolon] = ACTIONS(501), + [anon_sym_BQUOTE] = ACTIONS(426), + [sym_number] = ACTIONS(426), + [sym_this] = ACTIONS(428), + [sym_super] = ACTIONS(428), + [sym_true] = ACTIONS(428), + [sym_false] = ACTIONS(428), + [sym_null] = ACTIONS(428), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_static] = ACTIONS(428), + [anon_sym_get] = ACTIONS(428), + [anon_sym_set] = ACTIONS(428), + [sym_preproc] = ACTIONS(426), + [sym__automatic_semicolon] = ACTIONS(486), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(505), - [sym_identifier] = ACTIONS(507), - [anon_sym_export] = ACTIONS(507), - [anon_sym_STAR] = ACTIONS(509), - [anon_sym_default] = ACTIONS(507), - [anon_sym_LBRACE] = ACTIONS(505), - [anon_sym_COMMA] = ACTIONS(511), - [anon_sym_RBRACE] = ACTIONS(505), - [anon_sym_import] = ACTIONS(507), - [anon_sym_var] = ACTIONS(507), - [anon_sym_let] = ACTIONS(507), - [anon_sym_const] = ACTIONS(507), - [anon_sym_if] = ACTIONS(507), - [anon_sym_else] = ACTIONS(507), - [anon_sym_switch] = ACTIONS(507), - [anon_sym_for] = ACTIONS(507), - [anon_sym_LPAREN] = ACTIONS(505), - [anon_sym_await] = ACTIONS(507), - [anon_sym_in] = ACTIONS(509), - [anon_sym_while] = ACTIONS(507), - [anon_sym_do] = ACTIONS(507), - [anon_sym_try] = ACTIONS(507), - [anon_sym_with] = ACTIONS(507), - [anon_sym_break] = ACTIONS(507), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_debugger] = ACTIONS(507), - [anon_sym_return] = ACTIONS(507), - [anon_sym_throw] = ACTIONS(507), - [anon_sym_SEMI] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_yield] = ACTIONS(507), - [anon_sym_LBRACK] = ACTIONS(505), - [anon_sym_LT] = ACTIONS(507), - [anon_sym_GT] = ACTIONS(509), - [anon_sym_SLASH] = ACTIONS(507), - [anon_sym_DOT] = ACTIONS(509), - [anon_sym_class] = ACTIONS(507), - [anon_sym_async] = ACTIONS(507), - [anon_sym_function] = ACTIONS(507), - [anon_sym_new] = ACTIONS(507), - [anon_sym_QMARK] = ACTIONS(509), - [anon_sym_AMP_AMP] = ACTIONS(511), - [anon_sym_PIPE_PIPE] = ACTIONS(511), - [anon_sym_GT_GT] = ACTIONS(509), - [anon_sym_GT_GT_GT] = ACTIONS(511), - [anon_sym_LT_LT] = ACTIONS(511), - [anon_sym_AMP] = ACTIONS(509), - [anon_sym_CARET] = ACTIONS(511), - [anon_sym_PIPE] = ACTIONS(509), - [anon_sym_PLUS] = ACTIONS(507), - [anon_sym_DASH] = ACTIONS(507), - [anon_sym_PERCENT] = ACTIONS(511), - [anon_sym_STAR_STAR] = ACTIONS(511), - [anon_sym_LT_EQ] = ACTIONS(511), - [anon_sym_EQ_EQ] = ACTIONS(509), - [anon_sym_EQ_EQ_EQ] = ACTIONS(511), - [anon_sym_BANG_EQ] = ACTIONS(509), - [anon_sym_BANG_EQ_EQ] = ACTIONS(511), - [anon_sym_GT_EQ] = ACTIONS(511), - [anon_sym_QMARK_QMARK] = ACTIONS(511), - [anon_sym_instanceof] = ACTIONS(509), - [anon_sym_BANG] = ACTIONS(507), - [anon_sym_TILDE] = ACTIONS(505), - [anon_sym_typeof] = ACTIONS(507), - [anon_sym_void] = ACTIONS(507), - [anon_sym_delete] = ACTIONS(507), - [anon_sym_PLUS_PLUS] = ACTIONS(505), - [anon_sym_DASH_DASH] = ACTIONS(505), - [anon_sym_DQUOTE] = ACTIONS(505), - [anon_sym_SQUOTE] = ACTIONS(505), + [ts_builtin_sym_end] = ACTIONS(488), + [sym_identifier] = ACTIONS(490), + [anon_sym_export] = ACTIONS(490), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_default] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_COMMA] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_import] = ACTIONS(490), + [anon_sym_var] = ACTIONS(490), + [anon_sym_let] = ACTIONS(490), + [anon_sym_const] = ACTIONS(490), + [anon_sym_else] = ACTIONS(490), + [anon_sym_if] = ACTIONS(490), + [anon_sym_switch] = ACTIONS(490), + [anon_sym_for] = ACTIONS(490), + [anon_sym_LPAREN] = ACTIONS(488), + [anon_sym_await] = ACTIONS(490), + [anon_sym_in] = ACTIONS(492), + [anon_sym_while] = ACTIONS(490), + [anon_sym_do] = ACTIONS(490), + [anon_sym_try] = ACTIONS(490), + [anon_sym_with] = ACTIONS(490), + [anon_sym_break] = ACTIONS(490), + [anon_sym_continue] = ACTIONS(490), + [anon_sym_debugger] = ACTIONS(490), + [anon_sym_return] = ACTIONS(490), + [anon_sym_throw] = ACTIONS(490), + [anon_sym_SEMI] = ACTIONS(488), + [anon_sym_case] = ACTIONS(490), + [anon_sym_yield] = ACTIONS(490), + [anon_sym_LBRACK] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(490), + [anon_sym_GT] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(490), + [anon_sym_DOT] = ACTIONS(492), + [anon_sym_class] = ACTIONS(490), + [anon_sym_async] = ACTIONS(490), + [anon_sym_function] = ACTIONS(490), + [anon_sym_QMARK_DOT] = ACTIONS(494), + [anon_sym_new] = ACTIONS(490), + [anon_sym_QMARK] = ACTIONS(492), + [anon_sym_AMP_AMP] = ACTIONS(494), + [anon_sym_PIPE_PIPE] = ACTIONS(494), + [anon_sym_GT_GT] = ACTIONS(492), + [anon_sym_GT_GT_GT] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(494), + [anon_sym_AMP] = ACTIONS(492), + [anon_sym_CARET] = ACTIONS(494), + [anon_sym_PIPE] = ACTIONS(492), + [anon_sym_PLUS] = ACTIONS(490), + [anon_sym_DASH] = ACTIONS(490), + [anon_sym_PERCENT] = ACTIONS(494), + [anon_sym_STAR_STAR] = ACTIONS(494), + [anon_sym_LT_EQ] = ACTIONS(494), + [anon_sym_EQ_EQ] = ACTIONS(492), + [anon_sym_EQ_EQ_EQ] = ACTIONS(494), + [anon_sym_BANG_EQ] = ACTIONS(492), + [anon_sym_BANG_EQ_EQ] = ACTIONS(494), + [anon_sym_GT_EQ] = ACTIONS(494), + [anon_sym_QMARK_QMARK] = ACTIONS(494), + [anon_sym_instanceof] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(490), + [anon_sym_TILDE] = ACTIONS(488), + [anon_sym_typeof] = ACTIONS(490), + [anon_sym_void] = ACTIONS(490), + [anon_sym_delete] = ACTIONS(490), + [anon_sym_PLUS_PLUS] = ACTIONS(488), + [anon_sym_DASH_DASH] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(488), + [anon_sym_SQUOTE] = ACTIONS(488), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(505), - [sym_number] = ACTIONS(505), - [sym_this] = ACTIONS(507), - [sym_super] = ACTIONS(507), - [sym_true] = ACTIONS(507), - [sym_false] = ACTIONS(507), - [sym_null] = ACTIONS(507), - [sym_undefined] = ACTIONS(507), - [anon_sym_AT] = ACTIONS(505), - [anon_sym_static] = ACTIONS(507), - [anon_sym_get] = ACTIONS(507), - [anon_sym_set] = ACTIONS(507), - [sym_preproc] = ACTIONS(505), - [sym__automatic_semicolon] = ACTIONS(513), + [anon_sym_BQUOTE] = ACTIONS(488), + [sym_number] = ACTIONS(488), + [sym_this] = ACTIONS(490), + [sym_super] = ACTIONS(490), + [sym_true] = ACTIONS(490), + [sym_false] = ACTIONS(490), + [sym_null] = ACTIONS(490), + [sym_undefined] = ACTIONS(490), + [anon_sym_AT] = ACTIONS(488), + [anon_sym_static] = ACTIONS(490), + [anon_sym_get] = ACTIONS(490), + [anon_sym_set] = ACTIONS(490), + [sym_preproc] = ACTIONS(488), + [sym__automatic_semicolon] = ACTIONS(496), }, [54] = { - [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_var] = ACTIONS(517), - [anon_sym_let] = ACTIONS(517), - [anon_sym_const] = ACTIONS(517), - [anon_sym_if] = ACTIONS(517), - [anon_sym_else] = ACTIONS(517), - [anon_sym_switch] = ACTIONS(517), - [anon_sym_for] = ACTIONS(517), - [anon_sym_LPAREN] = 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_with] = 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_SEMI] = ACTIONS(515), - [anon_sym_case] = ACTIONS(517), - [anon_sym_yield] = ACTIONS(517), - [anon_sym_LBRACK] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(519), - [anon_sym_SLASH] = ACTIONS(517), - [anon_sym_DOT] = ACTIONS(519), - [anon_sym_class] = ACTIONS(517), - [anon_sym_async] = ACTIONS(517), - [anon_sym_function] = ACTIONS(517), - [anon_sym_new] = ACTIONS(517), - [anon_sym_QMARK] = ACTIONS(519), - [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_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), - [anon_sym_DQUOTE] = ACTIONS(515), - [anon_sym_SQUOTE] = ACTIONS(515), + [ts_builtin_sym_end] = ACTIONS(498), + [sym_identifier] = ACTIONS(500), + [anon_sym_export] = ACTIONS(500), + [anon_sym_STAR] = ACTIONS(502), + [anon_sym_default] = ACTIONS(500), + [anon_sym_LBRACE] = ACTIONS(498), + [anon_sym_COMMA] = ACTIONS(504), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_import] = ACTIONS(500), + [anon_sym_var] = ACTIONS(500), + [anon_sym_let] = ACTIONS(500), + [anon_sym_const] = ACTIONS(500), + [anon_sym_else] = ACTIONS(500), + [anon_sym_if] = ACTIONS(500), + [anon_sym_switch] = ACTIONS(500), + [anon_sym_for] = ACTIONS(500), + [anon_sym_LPAREN] = ACTIONS(498), + [anon_sym_await] = ACTIONS(500), + [anon_sym_in] = ACTIONS(502), + [anon_sym_while] = ACTIONS(500), + [anon_sym_do] = ACTIONS(500), + [anon_sym_try] = ACTIONS(500), + [anon_sym_with] = ACTIONS(500), + [anon_sym_break] = ACTIONS(500), + [anon_sym_continue] = ACTIONS(500), + [anon_sym_debugger] = ACTIONS(500), + [anon_sym_return] = ACTIONS(500), + [anon_sym_throw] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(498), + [anon_sym_case] = ACTIONS(500), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_LBRACK] = ACTIONS(498), + [anon_sym_LT] = ACTIONS(500), + [anon_sym_GT] = ACTIONS(502), + [anon_sym_SLASH] = ACTIONS(500), + [anon_sym_DOT] = ACTIONS(502), + [anon_sym_class] = ACTIONS(500), + [anon_sym_async] = ACTIONS(500), + [anon_sym_function] = ACTIONS(500), + [anon_sym_QMARK_DOT] = ACTIONS(504), + [anon_sym_new] = ACTIONS(500), + [anon_sym_QMARK] = ACTIONS(502), + [anon_sym_AMP_AMP] = ACTIONS(504), + [anon_sym_PIPE_PIPE] = ACTIONS(504), + [anon_sym_GT_GT] = ACTIONS(502), + [anon_sym_GT_GT_GT] = ACTIONS(504), + [anon_sym_LT_LT] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(504), + [anon_sym_PIPE] = ACTIONS(502), + [anon_sym_PLUS] = ACTIONS(500), + [anon_sym_DASH] = ACTIONS(500), + [anon_sym_PERCENT] = ACTIONS(504), + [anon_sym_STAR_STAR] = ACTIONS(504), + [anon_sym_LT_EQ] = ACTIONS(504), + [anon_sym_EQ_EQ] = ACTIONS(502), + [anon_sym_EQ_EQ_EQ] = ACTIONS(504), + [anon_sym_BANG_EQ] = ACTIONS(502), + [anon_sym_BANG_EQ_EQ] = ACTIONS(504), + [anon_sym_GT_EQ] = ACTIONS(504), + [anon_sym_QMARK_QMARK] = ACTIONS(504), + [anon_sym_instanceof] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(500), + [anon_sym_TILDE] = ACTIONS(498), + [anon_sym_typeof] = ACTIONS(500), + [anon_sym_void] = ACTIONS(500), + [anon_sym_delete] = ACTIONS(500), + [anon_sym_PLUS_PLUS] = ACTIONS(498), + [anon_sym_DASH_DASH] = ACTIONS(498), + [anon_sym_DQUOTE] = ACTIONS(498), + [anon_sym_SQUOTE] = ACTIONS(498), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(515), - [sym_number] = ACTIONS(515), - [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(523), + [anon_sym_BQUOTE] = ACTIONS(498), + [sym_number] = ACTIONS(498), + [sym_this] = ACTIONS(500), + [sym_super] = ACTIONS(500), + [sym_true] = ACTIONS(500), + [sym_false] = ACTIONS(500), + [sym_null] = ACTIONS(500), + [sym_undefined] = ACTIONS(500), + [anon_sym_AT] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_get] = ACTIONS(500), + [anon_sym_set] = ACTIONS(500), + [sym_preproc] = ACTIONS(498), + [sym__automatic_semicolon] = ACTIONS(506), }, [55] = { - [ts_builtin_sym_end] = ACTIONS(525), - [sym_identifier] = ACTIONS(527), - [anon_sym_export] = ACTIONS(527), - [anon_sym_STAR] = ACTIONS(527), - [anon_sym_default] = ACTIONS(527), - [anon_sym_LBRACE] = ACTIONS(525), - [anon_sym_COMMA] = ACTIONS(525), - [anon_sym_RBRACE] = ACTIONS(525), - [anon_sym_import] = ACTIONS(527), - [anon_sym_var] = ACTIONS(527), - [anon_sym_let] = ACTIONS(527), - [anon_sym_const] = ACTIONS(527), - [anon_sym_if] = ACTIONS(527), - [anon_sym_else] = ACTIONS(527), - [anon_sym_switch] = ACTIONS(527), - [anon_sym_for] = ACTIONS(527), - [anon_sym_LPAREN] = ACTIONS(525), - [anon_sym_await] = ACTIONS(527), - [anon_sym_in] = ACTIONS(527), - [anon_sym_while] = ACTIONS(527), - [anon_sym_do] = ACTIONS(527), - [anon_sym_try] = ACTIONS(527), - [anon_sym_with] = ACTIONS(527), - [anon_sym_break] = ACTIONS(527), - [anon_sym_continue] = ACTIONS(527), - [anon_sym_debugger] = ACTIONS(527), - [anon_sym_return] = ACTIONS(527), - [anon_sym_throw] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(525), - [anon_sym_case] = ACTIONS(527), - [anon_sym_yield] = ACTIONS(527), - [anon_sym_LBRACK] = ACTIONS(525), - [anon_sym_LT] = ACTIONS(527), - [anon_sym_GT] = ACTIONS(527), - [anon_sym_SLASH] = ACTIONS(527), - [anon_sym_DOT] = ACTIONS(527), - [anon_sym_class] = ACTIONS(527), - [anon_sym_async] = ACTIONS(527), - [anon_sym_function] = ACTIONS(527), - [anon_sym_new] = ACTIONS(527), - [anon_sym_QMARK] = ACTIONS(527), - [anon_sym_AMP_AMP] = ACTIONS(525), - [anon_sym_PIPE_PIPE] = ACTIONS(525), - [anon_sym_GT_GT] = ACTIONS(527), - [anon_sym_GT_GT_GT] = ACTIONS(525), - [anon_sym_LT_LT] = ACTIONS(525), - [anon_sym_AMP] = ACTIONS(527), - [anon_sym_CARET] = ACTIONS(525), - [anon_sym_PIPE] = ACTIONS(527), - [anon_sym_PLUS] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(527), - [anon_sym_PERCENT] = ACTIONS(525), - [anon_sym_STAR_STAR] = ACTIONS(525), - [anon_sym_LT_EQ] = ACTIONS(525), - [anon_sym_EQ_EQ] = ACTIONS(527), - [anon_sym_EQ_EQ_EQ] = ACTIONS(525), - [anon_sym_BANG_EQ] = ACTIONS(527), - [anon_sym_BANG_EQ_EQ] = ACTIONS(525), - [anon_sym_GT_EQ] = ACTIONS(525), - [anon_sym_QMARK_QMARK] = ACTIONS(525), - [anon_sym_instanceof] = ACTIONS(527), - [anon_sym_BANG] = ACTIONS(527), - [anon_sym_TILDE] = ACTIONS(525), - [anon_sym_typeof] = ACTIONS(527), - [anon_sym_void] = ACTIONS(527), - [anon_sym_delete] = ACTIONS(527), - [anon_sym_PLUS_PLUS] = ACTIONS(525), - [anon_sym_DASH_DASH] = ACTIONS(525), - [anon_sym_DQUOTE] = ACTIONS(525), - [anon_sym_SQUOTE] = ACTIONS(525), + [ts_builtin_sym_end] = ACTIONS(508), + [sym_identifier] = ACTIONS(510), + [anon_sym_export] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_default] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_import] = ACTIONS(510), + [anon_sym_var] = ACTIONS(510), + [anon_sym_let] = ACTIONS(510), + [anon_sym_const] = ACTIONS(510), + [anon_sym_else] = ACTIONS(510), + [anon_sym_if] = ACTIONS(510), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_for] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym_await] = ACTIONS(510), + [anon_sym_in] = ACTIONS(510), + [anon_sym_while] = ACTIONS(510), + [anon_sym_do] = ACTIONS(510), + [anon_sym_try] = ACTIONS(510), + [anon_sym_with] = ACTIONS(510), + [anon_sym_break] = ACTIONS(510), + [anon_sym_continue] = ACTIONS(510), + [anon_sym_debugger] = ACTIONS(510), + [anon_sym_return] = ACTIONS(510), + [anon_sym_throw] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_case] = ACTIONS(510), + [anon_sym_yield] = ACTIONS(510), + [anon_sym_LBRACK] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_class] = ACTIONS(510), + [anon_sym_async] = ACTIONS(510), + [anon_sym_function] = ACTIONS(510), + [anon_sym_QMARK_DOT] = ACTIONS(508), + [anon_sym_new] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(510), + [anon_sym_AMP_AMP] = ACTIONS(508), + [anon_sym_PIPE_PIPE] = ACTIONS(508), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_GT_GT_GT] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(508), + [anon_sym_STAR_STAR] = ACTIONS(508), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(510), + [anon_sym_EQ_EQ_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ] = ACTIONS(510), + [anon_sym_BANG_EQ_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_QMARK_QMARK] = ACTIONS(508), + [anon_sym_instanceof] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(508), + [anon_sym_typeof] = ACTIONS(510), + [anon_sym_void] = ACTIONS(510), + [anon_sym_delete] = ACTIONS(510), + [anon_sym_PLUS_PLUS] = ACTIONS(508), + [anon_sym_DASH_DASH] = ACTIONS(508), + [anon_sym_DQUOTE] = ACTIONS(508), + [anon_sym_SQUOTE] = ACTIONS(508), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(525), - [sym_number] = ACTIONS(525), - [sym_this] = ACTIONS(527), - [sym_super] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_null] = ACTIONS(527), - [sym_undefined] = ACTIONS(527), - [anon_sym_AT] = ACTIONS(525), - [anon_sym_static] = ACTIONS(527), - [anon_sym_get] = ACTIONS(527), - [anon_sym_set] = ACTIONS(527), - [sym_preproc] = ACTIONS(525), - [sym__automatic_semicolon] = ACTIONS(525), + [anon_sym_BQUOTE] = ACTIONS(508), + [sym_number] = ACTIONS(508), + [sym_this] = ACTIONS(510), + [sym_super] = ACTIONS(510), + [sym_true] = ACTIONS(510), + [sym_false] = ACTIONS(510), + [sym_null] = ACTIONS(510), + [sym_undefined] = ACTIONS(510), + [anon_sym_AT] = ACTIONS(508), + [anon_sym_static] = ACTIONS(510), + [anon_sym_get] = ACTIONS(510), + [anon_sym_set] = ACTIONS(510), + [sym_preproc] = ACTIONS(508), + [sym__automatic_semicolon] = ACTIONS(508), }, [56] = { - [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_var] = ACTIONS(531), - [anon_sym_let] = ACTIONS(531), - [anon_sym_const] = ACTIONS(531), - [anon_sym_if] = ACTIONS(531), - [anon_sym_else] = ACTIONS(531), - [anon_sym_switch] = ACTIONS(531), - [anon_sym_for] = ACTIONS(531), - [anon_sym_LPAREN] = 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_with] = 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_SEMI] = ACTIONS(529), - [anon_sym_case] = ACTIONS(531), - [anon_sym_yield] = ACTIONS(531), - [anon_sym_LBRACK] = ACTIONS(529), - [anon_sym_LT] = ACTIONS(531), - [anon_sym_GT] = ACTIONS(533), - [anon_sym_SLASH] = ACTIONS(531), - [anon_sym_DOT] = ACTIONS(533), - [anon_sym_class] = ACTIONS(531), - [anon_sym_async] = ACTIONS(531), - [anon_sym_function] = ACTIONS(531), - [anon_sym_new] = ACTIONS(531), - [anon_sym_QMARK] = ACTIONS(533), - [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_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), - [anon_sym_DQUOTE] = ACTIONS(529), - [anon_sym_SQUOTE] = ACTIONS(529), + [ts_builtin_sym_end] = ACTIONS(512), + [sym_identifier] = ACTIONS(514), + [anon_sym_export] = ACTIONS(514), + [anon_sym_STAR] = ACTIONS(516), + [anon_sym_default] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_COMMA] = ACTIONS(518), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_import] = ACTIONS(514), + [anon_sym_var] = ACTIONS(514), + [anon_sym_let] = ACTIONS(514), + [anon_sym_const] = ACTIONS(514), + [anon_sym_else] = ACTIONS(514), + [anon_sym_if] = ACTIONS(514), + [anon_sym_switch] = ACTIONS(514), + [anon_sym_for] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_await] = ACTIONS(514), + [anon_sym_in] = ACTIONS(516), + [anon_sym_while] = ACTIONS(514), + [anon_sym_do] = ACTIONS(514), + [anon_sym_try] = ACTIONS(514), + [anon_sym_with] = ACTIONS(514), + [anon_sym_break] = ACTIONS(514), + [anon_sym_continue] = ACTIONS(514), + [anon_sym_debugger] = ACTIONS(514), + [anon_sym_return] = ACTIONS(514), + [anon_sym_throw] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_case] = ACTIONS(514), + [anon_sym_yield] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(514), + [anon_sym_GT] = ACTIONS(516), + [anon_sym_SLASH] = ACTIONS(514), + [anon_sym_DOT] = ACTIONS(516), + [anon_sym_class] = ACTIONS(514), + [anon_sym_async] = ACTIONS(514), + [anon_sym_function] = ACTIONS(514), + [anon_sym_QMARK_DOT] = ACTIONS(518), + [anon_sym_new] = ACTIONS(514), + [anon_sym_QMARK] = ACTIONS(516), + [anon_sym_AMP_AMP] = ACTIONS(518), + [anon_sym_PIPE_PIPE] = ACTIONS(518), + [anon_sym_GT_GT] = ACTIONS(516), + [anon_sym_GT_GT_GT] = ACTIONS(518), + [anon_sym_LT_LT] = ACTIONS(518), + [anon_sym_AMP] = ACTIONS(516), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_PIPE] = ACTIONS(516), + [anon_sym_PLUS] = ACTIONS(514), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_PERCENT] = ACTIONS(518), + [anon_sym_STAR_STAR] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(518), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_EQ_EQ_EQ] = ACTIONS(518), + [anon_sym_BANG_EQ] = ACTIONS(516), + [anon_sym_BANG_EQ_EQ] = ACTIONS(518), + [anon_sym_GT_EQ] = ACTIONS(518), + [anon_sym_QMARK_QMARK] = ACTIONS(518), + [anon_sym_instanceof] = ACTIONS(516), + [anon_sym_BANG] = ACTIONS(514), + [anon_sym_TILDE] = ACTIONS(512), + [anon_sym_typeof] = ACTIONS(514), + [anon_sym_void] = ACTIONS(514), + [anon_sym_delete] = ACTIONS(514), + [anon_sym_PLUS_PLUS] = ACTIONS(512), + [anon_sym_DASH_DASH] = ACTIONS(512), + [anon_sym_DQUOTE] = ACTIONS(512), + [anon_sym_SQUOTE] = ACTIONS(512), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(529), - [sym_number] = ACTIONS(529), - [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), + [anon_sym_BQUOTE] = ACTIONS(512), + [sym_number] = ACTIONS(512), + [sym_this] = ACTIONS(514), + [sym_super] = ACTIONS(514), + [sym_true] = ACTIONS(514), + [sym_false] = ACTIONS(514), + [sym_null] = ACTIONS(514), + [sym_undefined] = ACTIONS(514), + [anon_sym_AT] = ACTIONS(512), + [anon_sym_static] = ACTIONS(514), + [anon_sym_get] = ACTIONS(514), + [anon_sym_set] = ACTIONS(514), + [sym_preproc] = ACTIONS(512), + [sym__automatic_semicolon] = ACTIONS(520), }, [57] = { - [ts_builtin_sym_end] = ACTIONS(539), - [sym_identifier] = ACTIONS(541), - [anon_sym_export] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(541), - [anon_sym_default] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(539), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_RBRACE] = ACTIONS(539), - [anon_sym_import] = ACTIONS(541), - [anon_sym_var] = ACTIONS(541), - [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(541), - [anon_sym_if] = ACTIONS(541), - [anon_sym_else] = ACTIONS(541), - [anon_sym_switch] = ACTIONS(541), - [anon_sym_for] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(539), - [anon_sym_await] = ACTIONS(541), - [anon_sym_in] = ACTIONS(541), - [anon_sym_while] = ACTIONS(541), - [anon_sym_do] = ACTIONS(541), - [anon_sym_try] = ACTIONS(541), - [anon_sym_with] = 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_SEMI] = ACTIONS(539), - [anon_sym_case] = ACTIONS(541), - [anon_sym_yield] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(541), - [anon_sym_SLASH] = ACTIONS(541), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_class] = ACTIONS(541), - [anon_sym_async] = ACTIONS(541), - [anon_sym_function] = ACTIONS(541), - [anon_sym_new] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE_PIPE] = ACTIONS(539), - [anon_sym_GT_GT] = ACTIONS(541), - [anon_sym_GT_GT_GT] = ACTIONS(539), - [anon_sym_LT_LT] = ACTIONS(539), - [anon_sym_AMP] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(541), - [anon_sym_DASH] = ACTIONS(541), - [anon_sym_PERCENT] = ACTIONS(539), - [anon_sym_STAR_STAR] = ACTIONS(539), - [anon_sym_LT_EQ] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(541), - [anon_sym_EQ_EQ_EQ] = ACTIONS(539), - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ_EQ] = ACTIONS(539), - [anon_sym_GT_EQ] = ACTIONS(539), - [anon_sym_QMARK_QMARK] = ACTIONS(539), - [anon_sym_instanceof] = ACTIONS(541), - [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), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_SQUOTE] = ACTIONS(539), + [ts_builtin_sym_end] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_STAR] = ACTIONS(438), + [anon_sym_default] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(436), + [anon_sym_RBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(438), + [anon_sym_var] = ACTIONS(438), + [anon_sym_let] = ACTIONS(438), + [anon_sym_const] = ACTIONS(438), + [anon_sym_else] = ACTIONS(438), + [anon_sym_if] = ACTIONS(438), + [anon_sym_switch] = ACTIONS(438), + [anon_sym_for] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_await] = ACTIONS(438), + [anon_sym_in] = ACTIONS(438), + [anon_sym_while] = ACTIONS(438), + [anon_sym_do] = ACTIONS(438), + [anon_sym_try] = ACTIONS(438), + [anon_sym_with] = ACTIONS(438), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_debugger] = ACTIONS(438), + [anon_sym_return] = ACTIONS(438), + [anon_sym_throw] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_LT] = ACTIONS(438), + [anon_sym_GT] = ACTIONS(438), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_DOT] = ACTIONS(438), + [anon_sym_class] = ACTIONS(438), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(438), + [anon_sym_QMARK_DOT] = ACTIONS(436), + [anon_sym_new] = ACTIONS(438), + [anon_sym_QMARK] = ACTIONS(438), + [anon_sym_AMP_AMP] = ACTIONS(436), + [anon_sym_PIPE_PIPE] = ACTIONS(436), + [anon_sym_GT_GT] = ACTIONS(438), + [anon_sym_GT_GT_GT] = ACTIONS(436), + [anon_sym_LT_LT] = ACTIONS(436), + [anon_sym_AMP] = ACTIONS(438), + [anon_sym_CARET] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_PERCENT] = ACTIONS(436), + [anon_sym_STAR_STAR] = ACTIONS(436), + [anon_sym_LT_EQ] = ACTIONS(436), + [anon_sym_EQ_EQ] = ACTIONS(438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(436), + [anon_sym_BANG_EQ] = ACTIONS(438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(436), + [anon_sym_GT_EQ] = ACTIONS(436), + [anon_sym_QMARK_QMARK] = ACTIONS(436), + [anon_sym_instanceof] = ACTIONS(438), + [anon_sym_BANG] = ACTIONS(438), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_typeof] = ACTIONS(438), + [anon_sym_void] = ACTIONS(438), + [anon_sym_delete] = ACTIONS(438), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(436), + [anon_sym_SQUOTE] = ACTIONS(436), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(539), - [sym_number] = ACTIONS(539), - [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(539), + [anon_sym_BQUOTE] = ACTIONS(436), + [sym_number] = ACTIONS(436), + [sym_this] = ACTIONS(438), + [sym_super] = ACTIONS(438), + [sym_true] = ACTIONS(438), + [sym_false] = ACTIONS(438), + [sym_null] = ACTIONS(438), + [sym_undefined] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_static] = ACTIONS(438), + [anon_sym_get] = ACTIONS(438), + [anon_sym_set] = ACTIONS(438), + [sym_preproc] = ACTIONS(436), + [sym__automatic_semicolon] = ACTIONS(436), }, [58] = { - [ts_builtin_sym_end] = ACTIONS(539), - [sym_identifier] = ACTIONS(541), - [anon_sym_export] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(541), - [anon_sym_default] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(539), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_RBRACE] = ACTIONS(539), - [anon_sym_import] = ACTIONS(541), - [anon_sym_var] = ACTIONS(541), - [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(541), - [anon_sym_if] = ACTIONS(541), - [anon_sym_else] = ACTIONS(541), - [anon_sym_switch] = ACTIONS(541), - [anon_sym_for] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(539), - [anon_sym_await] = ACTIONS(541), - [anon_sym_in] = ACTIONS(541), - [anon_sym_while] = ACTIONS(541), - [anon_sym_do] = ACTIONS(541), - [anon_sym_try] = ACTIONS(541), - [anon_sym_with] = 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_SEMI] = ACTIONS(539), - [anon_sym_case] = ACTIONS(541), - [anon_sym_yield] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(541), - [anon_sym_GT] = ACTIONS(541), - [anon_sym_SLASH] = ACTIONS(541), - [anon_sym_DOT] = ACTIONS(541), - [anon_sym_class] = ACTIONS(541), - [anon_sym_async] = ACTIONS(541), - [anon_sym_function] = ACTIONS(541), - [anon_sym_new] = ACTIONS(541), - [anon_sym_QMARK] = ACTIONS(541), - [anon_sym_AMP_AMP] = ACTIONS(539), - [anon_sym_PIPE_PIPE] = ACTIONS(539), - [anon_sym_GT_GT] = ACTIONS(541), - [anon_sym_GT_GT_GT] = ACTIONS(539), - [anon_sym_LT_LT] = ACTIONS(539), - [anon_sym_AMP] = ACTIONS(541), - [anon_sym_CARET] = ACTIONS(539), - [anon_sym_PIPE] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(541), - [anon_sym_DASH] = ACTIONS(541), - [anon_sym_PERCENT] = ACTIONS(539), - [anon_sym_STAR_STAR] = ACTIONS(539), - [anon_sym_LT_EQ] = ACTIONS(539), - [anon_sym_EQ_EQ] = ACTIONS(541), - [anon_sym_EQ_EQ_EQ] = ACTIONS(539), - [anon_sym_BANG_EQ] = ACTIONS(541), - [anon_sym_BANG_EQ_EQ] = ACTIONS(539), - [anon_sym_GT_EQ] = ACTIONS(539), - [anon_sym_QMARK_QMARK] = ACTIONS(539), - [anon_sym_instanceof] = ACTIONS(541), - [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), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_SQUOTE] = ACTIONS(539), + [ts_builtin_sym_end] = ACTIONS(522), + [sym_identifier] = ACTIONS(524), + [anon_sym_export] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(526), + [anon_sym_default] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(528), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_import] = ACTIONS(524), + [anon_sym_var] = ACTIONS(524), + [anon_sym_let] = ACTIONS(524), + [anon_sym_const] = ACTIONS(524), + [anon_sym_else] = ACTIONS(524), + [anon_sym_if] = ACTIONS(524), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_await] = ACTIONS(524), + [anon_sym_in] = ACTIONS(526), + [anon_sym_while] = ACTIONS(524), + [anon_sym_do] = ACTIONS(524), + [anon_sym_try] = ACTIONS(524), + [anon_sym_with] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_debugger] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_throw] = ACTIONS(524), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_case] = ACTIONS(524), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_GT] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(526), + [anon_sym_class] = ACTIONS(524), + [anon_sym_async] = ACTIONS(524), + [anon_sym_function] = ACTIONS(524), + [anon_sym_QMARK_DOT] = ACTIONS(528), + [anon_sym_new] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_AMP_AMP] = ACTIONS(528), + [anon_sym_PIPE_PIPE] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(526), + [anon_sym_GT_GT_GT] = ACTIONS(528), + [anon_sym_LT_LT] = ACTIONS(528), + [anon_sym_AMP] = ACTIONS(526), + [anon_sym_CARET] = ACTIONS(528), + [anon_sym_PIPE] = ACTIONS(526), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_PERCENT] = ACTIONS(528), + [anon_sym_STAR_STAR] = ACTIONS(528), + [anon_sym_LT_EQ] = ACTIONS(528), + [anon_sym_EQ_EQ] = ACTIONS(526), + [anon_sym_EQ_EQ_EQ] = ACTIONS(528), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ_EQ] = ACTIONS(528), + [anon_sym_GT_EQ] = ACTIONS(528), + [anon_sym_QMARK_QMARK] = ACTIONS(528), + [anon_sym_instanceof] = ACTIONS(526), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_typeof] = ACTIONS(524), + [anon_sym_void] = ACTIONS(524), + [anon_sym_delete] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_DASH_DASH] = ACTIONS(522), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_SQUOTE] = ACTIONS(522), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(539), - [sym_number] = ACTIONS(539), - [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(543), + [anon_sym_BQUOTE] = ACTIONS(522), + [sym_number] = ACTIONS(522), + [sym_this] = ACTIONS(524), + [sym_super] = ACTIONS(524), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_null] = ACTIONS(524), + [sym_undefined] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(522), + [anon_sym_static] = ACTIONS(524), + [anon_sym_get] = ACTIONS(524), + [anon_sym_set] = ACTIONS(524), + [sym_preproc] = ACTIONS(522), + [sym__automatic_semicolon] = ACTIONS(530), }, [59] = { - [ts_builtin_sym_end] = ACTIONS(437), - [sym_identifier] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_STAR] = ACTIONS(439), - [anon_sym_default] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_import] = ACTIONS(439), - [anon_sym_var] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_const] = ACTIONS(439), - [anon_sym_if] = ACTIONS(439), - [anon_sym_else] = ACTIONS(439), - [anon_sym_switch] = ACTIONS(439), - [anon_sym_for] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_await] = ACTIONS(439), - [anon_sym_in] = ACTIONS(439), - [anon_sym_while] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_try] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_break] = ACTIONS(439), - [anon_sym_continue] = ACTIONS(439), - [anon_sym_debugger] = ACTIONS(439), - [anon_sym_return] = ACTIONS(439), - [anon_sym_throw] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_case] = ACTIONS(439), - [anon_sym_yield] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(439), - [anon_sym_GT] = ACTIONS(439), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_DOT] = ACTIONS(439), - [anon_sym_class] = ACTIONS(439), - [anon_sym_async] = ACTIONS(439), - [anon_sym_function] = ACTIONS(439), - [anon_sym_new] = ACTIONS(439), - [anon_sym_QMARK] = ACTIONS(439), - [anon_sym_AMP_AMP] = ACTIONS(437), - [anon_sym_PIPE_PIPE] = ACTIONS(437), - [anon_sym_GT_GT] = ACTIONS(439), - [anon_sym_GT_GT_GT] = ACTIONS(437), - [anon_sym_LT_LT] = ACTIONS(437), - [anon_sym_AMP] = ACTIONS(439), - [anon_sym_CARET] = ACTIONS(437), - [anon_sym_PIPE] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_PERCENT] = ACTIONS(437), - [anon_sym_STAR_STAR] = ACTIONS(437), - [anon_sym_LT_EQ] = ACTIONS(437), - [anon_sym_EQ_EQ] = ACTIONS(439), - [anon_sym_EQ_EQ_EQ] = ACTIONS(437), - [anon_sym_BANG_EQ] = ACTIONS(439), - [anon_sym_BANG_EQ_EQ] = ACTIONS(437), - [anon_sym_GT_EQ] = ACTIONS(437), - [anon_sym_QMARK_QMARK] = ACTIONS(437), - [anon_sym_instanceof] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(439), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(437), - [anon_sym_DASH_DASH] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_SQUOTE] = ACTIONS(437), + [ts_builtin_sym_end] = ACTIONS(532), + [sym_identifier] = ACTIONS(534), + [anon_sym_export] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_default] = ACTIONS(534), + [anon_sym_LBRACE] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(532), + [anon_sym_RBRACE] = ACTIONS(532), + [anon_sym_import] = ACTIONS(534), + [anon_sym_var] = ACTIONS(534), + [anon_sym_let] = ACTIONS(534), + [anon_sym_const] = ACTIONS(534), + [anon_sym_else] = ACTIONS(534), + [anon_sym_if] = ACTIONS(534), + [anon_sym_switch] = ACTIONS(534), + [anon_sym_for] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(532), + [anon_sym_await] = ACTIONS(534), + [anon_sym_in] = ACTIONS(534), + [anon_sym_while] = ACTIONS(534), + [anon_sym_do] = ACTIONS(534), + [anon_sym_try] = ACTIONS(534), + [anon_sym_with] = ACTIONS(534), + [anon_sym_break] = ACTIONS(534), + [anon_sym_continue] = ACTIONS(534), + [anon_sym_debugger] = ACTIONS(534), + [anon_sym_return] = ACTIONS(534), + [anon_sym_throw] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(532), + [anon_sym_case] = ACTIONS(534), + [anon_sym_yield] = ACTIONS(534), + [anon_sym_LBRACK] = ACTIONS(532), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(534), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_DOT] = ACTIONS(534), + [anon_sym_class] = ACTIONS(534), + [anon_sym_async] = ACTIONS(534), + [anon_sym_function] = ACTIONS(534), + [anon_sym_QMARK_DOT] = ACTIONS(532), + [anon_sym_new] = ACTIONS(534), + [anon_sym_QMARK] = ACTIONS(534), + [anon_sym_AMP_AMP] = ACTIONS(532), + [anon_sym_PIPE_PIPE] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(534), + [anon_sym_GT_GT_GT] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_AMP] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(532), + [anon_sym_STAR_STAR] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(532), + [anon_sym_EQ_EQ] = ACTIONS(534), + [anon_sym_EQ_EQ_EQ] = ACTIONS(532), + [anon_sym_BANG_EQ] = ACTIONS(534), + [anon_sym_BANG_EQ_EQ] = ACTIONS(532), + [anon_sym_GT_EQ] = ACTIONS(532), + [anon_sym_QMARK_QMARK] = ACTIONS(532), + [anon_sym_instanceof] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_TILDE] = ACTIONS(532), + [anon_sym_typeof] = ACTIONS(534), + [anon_sym_void] = ACTIONS(534), + [anon_sym_delete] = ACTIONS(534), + [anon_sym_PLUS_PLUS] = ACTIONS(532), + [anon_sym_DASH_DASH] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(532), + [anon_sym_SQUOTE] = ACTIONS(532), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(437), - [sym_number] = ACTIONS(437), - [sym_this] = ACTIONS(439), - [sym_super] = ACTIONS(439), - [sym_true] = ACTIONS(439), - [sym_false] = ACTIONS(439), - [sym_null] = ACTIONS(439), - [sym_undefined] = ACTIONS(439), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_get] = ACTIONS(439), - [anon_sym_set] = ACTIONS(439), - [sym_preproc] = ACTIONS(437), - [sym__automatic_semicolon] = ACTIONS(545), + [anon_sym_BQUOTE] = ACTIONS(532), + [sym_number] = ACTIONS(532), + [sym_this] = ACTIONS(534), + [sym_super] = ACTIONS(534), + [sym_true] = ACTIONS(534), + [sym_false] = ACTIONS(534), + [sym_null] = ACTIONS(534), + [sym_undefined] = ACTIONS(534), + [anon_sym_AT] = ACTIONS(532), + [anon_sym_static] = ACTIONS(534), + [anon_sym_get] = ACTIONS(534), + [anon_sym_set] = ACTIONS(534), + [sym_preproc] = ACTIONS(532), + [sym__automatic_semicolon] = ACTIONS(532), }, [60] = { - [sym_import] = STATE(481), + [sym_import] = STATE(581), [sym_expression_statement] = STATE(72), [sym_variable_declaration] = STATE(72), [sym_lexical_declaration] = STATE(72), [sym_empty_statement] = STATE(72), - [sym_parenthesized_expression] = STATE(302), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(490), - [sym_array] = STATE(489), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(481), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(302), - [sym_subscript_expression] = STATE(302), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), - [anon_sym_var] = ACTIONS(549), - [anon_sym_let] = ACTIONS(551), - [anon_sym_const] = ACTIONS(551), + [sym_parenthesized_expression] = STATE(315), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(491), + [sym_array] = STATE(492), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(315), + [sym_subscript_expression] = STATE(315), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), + [anon_sym_var] = ACTIONS(538), + [anon_sym_let] = ACTIONS(540), + [anon_sym_const] = ACTIONS(540), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(49), @@ -11947,9 +12142,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(553), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(542), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -11966,60 +12161,61 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(555), - [anon_sym_get] = ACTIONS(555), - [anon_sym_set] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(544), + [anon_sym_get] = ACTIONS(544), + [anon_sym_set] = ACTIONS(544), }, [61] = { - [sym_import] = STATE(481), - [sym_expression_statement] = STATE(73), - [sym_variable_declaration] = STATE(73), - [sym_lexical_declaration] = STATE(73), - [sym_empty_statement] = STATE(73), - [sym_parenthesized_expression] = STATE(302), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(490), - [sym_array] = STATE(489), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(481), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(302), - [sym_subscript_expression] = STATE(302), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(547), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), - [anon_sym_var] = ACTIONS(549), - [anon_sym_let] = ACTIONS(551), - [anon_sym_const] = ACTIONS(551), + [sym_import] = STATE(581), + [sym_expression_statement] = STATE(74), + [sym_variable_declaration] = STATE(74), + [sym_lexical_declaration] = STATE(74), + [sym_empty_statement] = STATE(74), + [sym_parenthesized_expression] = STATE(315), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(491), + [sym_array] = STATE(492), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(315), + [sym_subscript_expression] = STATE(315), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), + [anon_sym_var] = ACTIONS(538), + [anon_sym_let] = ACTIONS(540), + [anon_sym_const] = ACTIONS(540), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(49), @@ -12027,9 +12223,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(553), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(542), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -12046,814 +12242,825 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(555), - [anon_sym_get] = ACTIONS(555), - [anon_sym_set] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(544), + [anon_sym_get] = ACTIONS(544), + [anon_sym_set] = ACTIONS(544), }, [62] = { - [sym_import] = STATE(479), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(479), - [sym_yield_expression] = STATE(479), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(479), - [sym_jsx_fragment] = STATE(479), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(479), - [sym_class] = STATE(479), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(479), - [sym_arrow_function] = STATE(479), - [sym_call_expression] = STATE(479), - [sym_new_expression] = STATE(479), - [sym_await_expression] = STATE(479), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(479), - [sym_augmented_assignment_expression] = STATE(479), - [sym_spread_element] = STATE(831), - [sym_ternary_expression] = STATE(479), - [sym_binary_expression] = STATE(479), - [sym_unary_expression] = STATE(479), - [sym_update_expression] = STATE(479), - [sym_string] = STATE(479), - [sym_template_string] = STATE(479), - [sym_regex] = STATE(479), - [sym_meta_property] = STATE(479), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [aux_sym_array_repeat1] = STATE(837), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_RBRACK] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(487), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_spread_element] = STATE(898), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [aux_sym_array_repeat1] = STATE(896), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(548), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(563), - [sym_this] = ACTIONS(565), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(565), - [sym_false] = ACTIONS(565), - [sym_null] = ACTIONS(565), - [sym_undefined] = ACTIONS(565), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [63] = { - [sym_import] = STATE(457), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(457), - [sym_yield_expression] = STATE(457), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(457), - [sym_jsx_fragment] = STATE(457), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(457), - [sym_class] = STATE(457), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(457), - [sym_arrow_function] = STATE(457), - [sym_call_expression] = STATE(457), - [sym_new_expression] = STATE(457), - [sym_await_expression] = STATE(457), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(457), - [sym_augmented_assignment_expression] = STATE(457), - [sym_spread_element] = STATE(810), - [sym_ternary_expression] = STATE(457), - [sym_binary_expression] = STATE(457), - [sym_unary_expression] = STATE(457), - [sym_update_expression] = STATE(457), - [sym_string] = STATE(457), - [sym_template_string] = STATE(457), - [sym_regex] = STATE(457), - [sym_meta_property] = STATE(457), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [aux_sym_array_repeat1] = STATE(879), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_RBRACK] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(499), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_spread_element] = STATE(889), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [aux_sym_array_repeat1] = STATE(888), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(552), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(569), - [sym_this] = ACTIONS(571), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(571), - [sym_false] = ACTIONS(571), - [sym_null] = ACTIONS(571), - [sym_undefined] = ACTIONS(571), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [64] = { - [sym_import] = STATE(465), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(465), - [sym_yield_expression] = STATE(465), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(465), - [sym_jsx_fragment] = STATE(465), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(465), - [sym_class] = STATE(465), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(465), - [sym_arrow_function] = STATE(465), - [sym_call_expression] = STATE(465), - [sym_new_expression] = STATE(465), - [sym_await_expression] = STATE(465), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(465), - [sym_augmented_assignment_expression] = STATE(465), - [sym_spread_element] = STATE(859), - [sym_ternary_expression] = STATE(465), - [sym_binary_expression] = STATE(465), - [sym_unary_expression] = STATE(465), - [sym_update_expression] = STATE(465), - [sym_string] = STATE(465), - [sym_template_string] = STATE(465), - [sym_regex] = STATE(465), - [sym_meta_property] = STATE(465), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_COMMA] = ACTIONS(573), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(573), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_RBRACK] = ACTIONS(573), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(497), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_spread_element] = STATE(903), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [aux_sym_array_repeat1] = STATE(905), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_RBRACK] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(575), - [sym_this] = ACTIONS(577), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(577), - [sym_false] = ACTIONS(577), - [sym_null] = ACTIONS(577), - [sym_undefined] = ACTIONS(577), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [65] = { - [sym_import] = STATE(460), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(460), - [sym_yield_expression] = STATE(460), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(460), - [sym_jsx_fragment] = STATE(460), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(460), - [sym_class] = STATE(460), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(460), - [sym_arrow_function] = STATE(460), - [sym_call_expression] = STATE(460), - [sym_new_expression] = STATE(460), - [sym_await_expression] = STATE(460), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(460), - [sym_augmented_assignment_expression] = STATE(460), - [sym_spread_element] = STATE(831), - [sym_ternary_expression] = STATE(460), - [sym_binary_expression] = STATE(460), - [sym_unary_expression] = STATE(460), - [sym_update_expression] = STATE(460), - [sym_string] = STATE(460), - [sym_template_string] = STATE(460), - [sym_regex] = STATE(460), - [sym_meta_property] = STATE(460), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [aux_sym_array_repeat1] = STATE(837), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_RBRACK] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(498), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_spread_element] = STATE(903), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [aux_sym_array_repeat1] = STATE(905), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_RBRACK] = ACTIONS(554), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(579), - [sym_this] = ACTIONS(581), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(581), - [sym_false] = ACTIONS(581), - [sym_null] = ACTIONS(581), - [sym_undefined] = ACTIONS(581), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [66] = { - [sym_import] = STATE(469), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(469), - [sym_yield_expression] = STATE(469), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(469), - [sym_jsx_fragment] = STATE(469), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(469), - [sym_class] = STATE(469), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(469), - [sym_arrow_function] = STATE(469), - [sym_call_expression] = STATE(469), - [sym_new_expression] = STATE(469), - [sym_await_expression] = STATE(469), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(469), - [sym_augmented_assignment_expression] = STATE(469), - [sym_spread_element] = STATE(810), - [sym_ternary_expression] = STATE(469), - [sym_binary_expression] = STATE(469), - [sym_unary_expression] = STATE(469), - [sym_update_expression] = STATE(469), - [sym_string] = STATE(469), - [sym_template_string] = STATE(469), - [sym_regex] = STATE(469), - [sym_meta_property] = STATE(469), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [aux_sym_array_repeat1] = STATE(879), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_RBRACK] = ACTIONS(567), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(509), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(517), + [sym_assignment_pattern] = STATE(891), + [sym_array] = STATE(521), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1117), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [sym_rest_parameter] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(558), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(560), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(583), - [sym_this] = ACTIONS(585), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_null] = ACTIONS(585), - [sym_undefined] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(564), + [anon_sym_get] = ACTIONS(564), + [anon_sym_set] = ACTIONS(564), }, [67] = { - [sym_import] = STATE(520), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(520), - [sym_yield_expression] = STATE(520), - [sym_object] = STATE(528), - [sym_assignment_pattern] = STATE(829), - [sym_array] = STATE(494), - [sym_jsx_element] = STATE(520), - [sym_jsx_fragment] = STATE(520), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(520), - [sym_class] = STATE(520), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(520), - [sym_arrow_function] = STATE(520), - [sym_call_expression] = STATE(520), - [sym_new_expression] = STATE(520), - [sym_await_expression] = STATE(520), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(520), - [sym_augmented_assignment_expression] = STATE(520), - [sym_ternary_expression] = STATE(520), - [sym_binary_expression] = STATE(520), - [sym_unary_expression] = STATE(520), - [sym_update_expression] = STATE(520), - [sym_sequence_expression] = STATE(1059), - [sym_string] = STATE(520), - [sym_template_string] = STATE(520), - [sym_regex] = STATE(520), - [sym_meta_property] = STATE(520), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [sym_rest_parameter] = STATE(829), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(575), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(517), + [sym_assignment_pattern] = STATE(891), + [sym_array] = STATE(521), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1096), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [sym_rest_parameter] = STATE(891), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(556), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(558), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(560), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(595), - [sym_this] = ACTIONS(597), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_null] = ACTIONS(597), - [sym_undefined] = ACTIONS(597), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(599), - [anon_sym_get] = ACTIONS(599), - [anon_sym_set] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(564), + [anon_sym_get] = ACTIONS(564), + [anon_sym_set] = ACTIONS(564), }, [68] = { - [sym_import] = STATE(477), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(477), - [sym_yield_expression] = STATE(477), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(477), - [sym_jsx_fragment] = STATE(477), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(477), - [sym_class] = STATE(477), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(477), - [sym_arrow_function] = STATE(477), - [sym_call_expression] = STATE(477), - [sym_new_expression] = STATE(477), - [sym_await_expression] = STATE(477), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(477), - [sym_augmented_assignment_expression] = STATE(477), - [sym_spread_element] = STATE(863), - [sym_ternary_expression] = STATE(477), - [sym_binary_expression] = STATE(477), - [sym_unary_expression] = STATE(477), - [sym_update_expression] = STATE(477), - [sym_string] = STATE(477), - [sym_template_string] = STATE(477), - [sym_regex] = STATE(477), - [sym_meta_property] = STATE(477), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [aux_sym_array_repeat1] = STATE(862), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(485), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_spread_element] = STATE(882), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [aux_sym_array_repeat1] = STATE(880), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_RBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(603), - [sym_this] = ACTIONS(605), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(605), - [sym_false] = ACTIONS(605), - [sym_null] = ACTIONS(605), - [sym_undefined] = ACTIONS(605), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [69] = { - [sym_import] = STATE(478), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(478), - [sym_yield_expression] = STATE(478), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(478), - [sym_jsx_fragment] = STATE(478), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(478), - [sym_class] = STATE(478), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(478), - [sym_arrow_function] = STATE(478), - [sym_call_expression] = STATE(478), - [sym_new_expression] = STATE(478), - [sym_await_expression] = STATE(478), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(478), - [sym_augmented_assignment_expression] = STATE(478), - [sym_spread_element] = STATE(860), - [sym_ternary_expression] = STATE(478), - [sym_binary_expression] = STATE(478), - [sym_unary_expression] = STATE(478), - [sym_update_expression] = STATE(478), - [sym_string] = STATE(478), - [sym_template_string] = STATE(478), - [sym_regex] = STATE(478), - [sym_meta_property] = STATE(478), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [aux_sym_array_repeat1] = STATE(861), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_COMMA] = ACTIONS(557), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(500), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_spread_element] = STATE(908), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(568), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(568), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_RBRACK] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(609), - [sym_this] = ACTIONS(611), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(611), - [sym_false] = ACTIONS(611), - [sym_null] = ACTIONS(611), - [sym_undefined] = ACTIONS(611), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [70] = { - [sym_import] = STATE(496), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(496), - [sym_yield_expression] = STATE(496), - [sym_object] = STATE(528), - [sym_assignment_pattern] = STATE(829), - [sym_array] = STATE(494), - [sym_jsx_element] = STATE(496), - [sym_jsx_fragment] = STATE(496), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(496), - [sym_class] = STATE(496), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(496), - [sym_arrow_function] = STATE(496), - [sym_call_expression] = STATE(496), - [sym_new_expression] = STATE(496), - [sym_await_expression] = STATE(496), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(496), - [sym_augmented_assignment_expression] = STATE(496), - [sym_ternary_expression] = STATE(496), - [sym_binary_expression] = STATE(496), - [sym_unary_expression] = STATE(496), - [sym_update_expression] = STATE(496), - [sym_sequence_expression] = STATE(1100), - [sym_string] = STATE(496), - [sym_template_string] = STATE(496), - [sym_regex] = STATE(496), - [sym_meta_property] = STATE(496), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [sym_rest_parameter] = STATE(829), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(591), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(593), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(477), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_spread_element] = STATE(882), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [aux_sym_array_repeat1] = STATE(880), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_COMMA] = ACTIONS(546), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_RBRACK] = ACTIONS(566), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(613), - [sym_this] = ACTIONS(615), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_null] = ACTIONS(615), - [sym_undefined] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(599), - [anon_sym_get] = ACTIONS(599), - [anon_sym_set] = ACTIONS(599), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [71] = { - [sym_import] = STATE(542), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(542), - [sym_yield_expression] = STATE(542), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(542), - [sym_jsx_fragment] = STATE(542), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(542), - [sym_class] = STATE(542), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(542), - [sym_arrow_function] = STATE(542), - [sym_call_expression] = STATE(542), - [sym_new_expression] = STATE(542), - [sym_await_expression] = STATE(542), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(542), - [sym_augmented_assignment_expression] = STATE(542), - [sym_spread_element] = STATE(1112), - [sym_ternary_expression] = STATE(542), - [sym_binary_expression] = STATE(542), - [sym_unary_expression] = STATE(542), - [sym_update_expression] = STATE(542), - [sym_sequence_expression] = STATE(1112), - [sym_string] = STATE(542), - [sym_template_string] = STATE(542), - [sym_regex] = STATE(542), - [sym_meta_property] = STATE(542), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(563), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_spread_element] = STATE(1116), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1116), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_RBRACE] = ACTIONS(570), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(619), - [sym_this] = ACTIONS(621), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(621), - [sym_false] = ACTIONS(621), - [sym_null] = ACTIONS(621), - [sym_undefined] = ACTIONS(621), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [72] = { - [sym_import] = STATE(481), + [sym_import] = STATE(581), [sym_expression_statement] = STATE(77), [sym_empty_statement] = STATE(77), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(481), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(49), @@ -12861,9 +13068,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -12880,55 +13087,132 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, [73] = { - [sym_import] = STATE(481), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(549), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_spread_element] = STATE(1142), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1142), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_RBRACE] = ACTIONS(572), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(103), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [74] = { + [sym_import] = STATE(581), [sym_expression_statement] = STATE(78), [sym_empty_statement] = STATE(78), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(481), - [sym_yield_expression] = STATE(481), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(481), - [sym_jsx_fragment] = STATE(481), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(481), - [sym_class] = STATE(481), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(481), - [sym_arrow_function] = STATE(481), - [sym_call_expression] = STATE(481), - [sym_new_expression] = STATE(481), - [sym_await_expression] = STATE(481), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(481), - [sym_augmented_assignment_expression] = STATE(481), - [sym_ternary_expression] = STATE(481), - [sym_binary_expression] = STATE(481), - [sym_unary_expression] = STATE(481), - [sym_update_expression] = STATE(481), - [sym_sequence_expression] = STATE(954), - [sym_string] = STATE(481), - [sym_template_string] = STATE(481), - [sym_regex] = STATE(481), - [sym_meta_property] = STATE(481), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(480), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1034), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_SEMI] = ACTIONS(49), @@ -12936,9 +13220,9 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -12955,212 +13239,139 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(79), [sym_number] = ACTIONS(81), [sym_this] = ACTIONS(83), - [sym_super] = ACTIONS(85), + [sym_super] = ACTIONS(83), [sym_true] = ACTIONS(83), [sym_false] = ACTIONS(83), [sym_null] = ACTIONS(83), [sym_undefined] = ACTIONS(83), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [74] = { - [sym_import] = STATE(560), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(560), - [sym_yield_expression] = STATE(560), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(560), - [sym_jsx_fragment] = STATE(560), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(560), - [sym_class] = STATE(560), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(560), - [sym_arrow_function] = STATE(560), - [sym_call_expression] = STATE(560), - [sym_new_expression] = STATE(560), - [sym_await_expression] = STATE(560), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(560), - [sym_augmented_assignment_expression] = STATE(560), - [sym_spread_element] = STATE(1081), - [sym_ternary_expression] = STATE(560), - [sym_binary_expression] = STATE(560), - [sym_unary_expression] = STATE(560), - [sym_update_expression] = STATE(560), - [sym_sequence_expression] = STATE(1081), - [sym_string] = STATE(560), - [sym_template_string] = STATE(560), - [sym_regex] = STATE(560), - [sym_meta_property] = STATE(560), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(105), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(625), - [sym_this] = ACTIONS(627), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(627), - [sym_false] = ACTIONS(627), - [sym_null] = ACTIONS(627), - [sym_undefined] = ACTIONS(627), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, [75] = { - [sym_import] = STATE(574), - [sym_parenthesized_expression] = STATE(313), - [sym__expression] = STATE(574), - [sym_yield_expression] = STATE(574), - [sym_object] = STATE(571), - [sym_array] = STATE(575), - [sym_jsx_element] = STATE(574), - [sym_jsx_fragment] = STATE(574), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(574), - [sym_class] = STATE(574), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(574), - [sym_arrow_function] = STATE(574), - [sym_call_expression] = STATE(574), - [sym_new_expression] = STATE(574), - [sym_await_expression] = STATE(574), - [sym_member_expression] = STATE(313), - [sym_subscript_expression] = STATE(313), - [sym_assignment_expression] = STATE(574), - [sym_augmented_assignment_expression] = STATE(574), - [sym_ternary_expression] = STATE(574), - [sym_binary_expression] = STATE(574), - [sym_unary_expression] = STATE(574), - [sym_update_expression] = STATE(574), - [sym_string] = STATE(574), - [sym_template_string] = STATE(574), - [sym_regex] = STATE(574), - [sym_meta_property] = STATE(574), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(629), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_var] = ACTIONS(631), - [anon_sym_let] = ACTIONS(631), - [anon_sym_const] = ACTIONS(631), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(633), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(325), + [sym__expression] = STATE(596), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(595), + [sym_array] = STATE(597), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(325), + [sym_subscript_expression] = STATE(325), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(574), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_var] = ACTIONS(576), + [anon_sym_let] = ACTIONS(576), + [anon_sym_const] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(578), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(635), - [sym_this] = ACTIONS(637), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(637), - [sym_false] = ACTIONS(637), - [sym_null] = ACTIONS(637), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(639), - [anon_sym_get] = ACTIONS(639), - [anon_sym_set] = ACTIONS(639), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(580), + [anon_sym_get] = ACTIONS(580), + [anon_sym_set] = ACTIONS(580), }, [76] = { - [sym_import] = STATE(488), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(488), - [sym_yield_expression] = STATE(488), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(488), - [sym_jsx_fragment] = STATE(488), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(488), - [sym_class] = STATE(488), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(488), - [sym_arrow_function] = STATE(488), - [sym_call_expression] = STATE(488), - [sym_new_expression] = STATE(488), - [sym_await_expression] = STATE(488), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(488), - [sym_augmented_assignment_expression] = STATE(488), - [sym_ternary_expression] = STATE(488), - [sym_binary_expression] = STATE(488), - [sym_unary_expression] = STATE(488), - [sym_update_expression] = STATE(488), - [sym_sequence_expression] = STATE(908), - [sym_string] = STATE(488), - [sym_template_string] = STATE(488), - [sym_regex] = STATE(488), - [sym_meta_property] = STATE(488), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(483), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1061), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(582), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -13175,283 +13386,944 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(643), - [sym_this] = ACTIONS(645), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(645), - [sym_false] = ACTIONS(645), - [sym_null] = ACTIONS(645), - [sym_undefined] = ACTIONS(645), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - [sym__automatic_semicolon] = ACTIONS(641), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + [sym__automatic_semicolon] = ACTIONS(582), }, [77] = { - [sym_import] = STATE(504), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(504), - [sym_yield_expression] = STATE(504), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(504), - [sym_jsx_fragment] = STATE(504), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(504), - [sym_class] = STATE(504), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(504), - [sym_arrow_function] = STATE(504), - [sym_call_expression] = STATE(504), - [sym_new_expression] = STATE(504), - [sym_await_expression] = STATE(504), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(504), - [sym_augmented_assignment_expression] = STATE(504), - [sym_ternary_expression] = STATE(504), - [sym_binary_expression] = STATE(504), - [sym_unary_expression] = STATE(504), - [sym_update_expression] = STATE(504), - [sym_sequence_expression] = STATE(1105), - [sym_string] = STATE(504), - [sym_template_string] = STATE(504), - [sym_regex] = STATE(504), - [sym_meta_property] = STATE(504), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(647), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(571), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1074), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(584), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(649), - [sym_this] = ACTIONS(651), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(651), - [sym_false] = ACTIONS(651), - [sym_null] = ACTIONS(651), - [sym_undefined] = ACTIONS(651), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [78] = { - [sym_import] = STATE(503), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(503), - [sym_yield_expression] = STATE(503), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(503), - [sym_jsx_fragment] = STATE(503), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(503), - [sym_class] = STATE(503), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(503), - [sym_arrow_function] = STATE(503), - [sym_call_expression] = STATE(503), - [sym_new_expression] = STATE(503), - [sym_await_expression] = STATE(503), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(503), - [sym_augmented_assignment_expression] = STATE(503), - [sym_ternary_expression] = STATE(503), - [sym_binary_expression] = STATE(503), - [sym_unary_expression] = STATE(503), - [sym_update_expression] = STATE(503), - [sym_sequence_expression] = STATE(1091), - [sym_string] = STATE(503), - [sym_template_string] = STATE(503), - [sym_regex] = STATE(503), - [sym_meta_property] = STATE(503), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_RPAREN] = ACTIONS(653), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(570), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1102), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_RPAREN] = ACTIONS(586), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(655), - [sym_this] = ACTIONS(657), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_null] = ACTIONS(657), - [sym_undefined] = ACTIONS(657), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [79] = { - [sym_import] = STATE(472), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(472), - [sym_yield_expression] = STATE(472), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(472), - [sym_jsx_fragment] = STATE(472), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(472), - [sym_class] = STATE(472), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(472), - [sym_arrow_function] = STATE(472), - [sym_call_expression] = STATE(472), - [sym_new_expression] = STATE(472), - [sym_await_expression] = STATE(472), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(472), - [sym_augmented_assignment_expression] = STATE(472), - [sym_ternary_expression] = STATE(472), - [sym_binary_expression] = STATE(472), - [sym_unary_expression] = STATE(472), - [sym_update_expression] = STATE(472), - [sym_sequence_expression] = STATE(940), - [sym_string] = STATE(472), - [sym_template_string] = STATE(472), - [sym_regex] = STATE(472), - [sym_meta_property] = STATE(472), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [sym_import] = STATE(385), + [sym_statement_block] = STATE(377), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(355), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [80] = { + [sym_import] = STATE(475), + [sym_parenthesized_expression] = STATE(307), + [sym__expression] = STATE(598), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(397), + [sym_array] = STATE(447), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(475), + [sym_function] = STATE(475), + [sym_generator_function] = STATE(475), + [sym_arrow_function] = STATE(475), + [sym_call_expression] = STATE(475), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(307), + [sym_subscript_expression] = STATE(307), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(475), + [sym_template_string] = STATE(475), + [sym_regex] = STATE(475), + [sym_meta_property] = STATE(475), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(590), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(29), - [anon_sym_yield] = ACTIONS(51), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(550), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(67), - [anon_sym_DASH] = ACTIONS(67), - [anon_sym_BANG] = ACTIONS(69), - [anon_sym_TILDE] = ACTIONS(69), - [anon_sym_typeof] = ACTIONS(71), - [anon_sym_void] = ACTIONS(71), - [anon_sym_delete] = ACTIONS(71), - [anon_sym_PLUS_PLUS] = ACTIONS(73), - [anon_sym_DASH_DASH] = ACTIONS(73), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(594), + [anon_sym_function] = ACTIONS(420), + [anon_sym_new] = ACTIONS(596), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), [anon_sym_DQUOTE] = ACTIONS(75), [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(659), - [sym_this] = ACTIONS(661), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(661), - [sym_false] = ACTIONS(661), - [sym_null] = ACTIONS(661), - [sym_undefined] = ACTIONS(661), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [sym_number] = ACTIONS(598), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(602), + [anon_sym_get] = ACTIONS(602), + [anon_sym_set] = ACTIONS(602), }, - [80] = { - [sym_import] = STATE(404), - [sym_statement_block] = STATE(546), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(404), - [sym_yield_expression] = STATE(404), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(404), - [sym_jsx_fragment] = STATE(404), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(404), - [sym_class] = STATE(404), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(404), - [sym_arrow_function] = STATE(404), - [sym_call_expression] = STATE(404), - [sym_new_expression] = STATE(404), - [sym_await_expression] = STATE(404), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(404), - [sym_augmented_assignment_expression] = STATE(404), - [sym_ternary_expression] = STATE(404), - [sym_binary_expression] = STATE(404), - [sym_unary_expression] = STATE(404), - [sym_update_expression] = STATE(404), - [sym_string] = STATE(404), - [sym_template_string] = STATE(404), - [sym_regex] = STATE(404), - [sym_meta_property] = STATE(404), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(419), + [81] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(566), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1111), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [82] = { + [sym_import] = STATE(385), + [sym_statement_block] = STATE(467), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(338), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [83] = { + [sym_import] = STATE(385), + [sym_statement_block] = STATE(441), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(367), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [84] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(565), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1128), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [85] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(529), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1160), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [86] = { + [sym_import] = STATE(385), + [sym_variable_declarator] = STATE(833), + [sym_parenthesized_expression] = STATE(326), + [sym__expression] = STATE(596), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(399), + [sym_array] = STATE(398), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(326), + [sym_subscript_expression] = STATE(326), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(606), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(608), + [anon_sym_get] = ACTIONS(608), + [anon_sym_set] = ACTIONS(608), + }, + [87] = { + [sym_import] = STATE(385), + [sym_variable_declarator] = STATE(822), + [sym_parenthesized_expression] = STATE(326), + [sym__expression] = STATE(596), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(399), + [sym_array] = STATE(398), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(326), + [sym_subscript_expression] = STATE(326), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(604), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(53), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(606), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(608), + [anon_sym_get] = ACTIONS(608), + [anon_sym_set] = ACTIONS(608), + }, + [88] = { + [sym_import] = STATE(372), + [sym_parenthesized_expression] = STATE(274), + [sym__expression] = STATE(596), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(341), + [sym_array] = STATE(337), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(372), + [sym_function] = STATE(372), + [sym_generator_function] = STATE(372), + [sym_arrow_function] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(274), + [sym_subscript_expression] = STATE(274), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(372), + [sym_template_string] = STATE(372), + [sym_regex] = STATE(372), + [sym_meta_property] = STATE(372), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_DOT] = ACTIONS(612), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(614), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(616), + [sym_this] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_true] = ACTIONS(618), + [sym_false] = ACTIONS(618), + [sym_null] = ACTIONS(618), + [sym_undefined] = ACTIONS(618), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), + }, + [89] = { + [sym_import] = STATE(581), + [sym_statement_block] = STATE(562), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(430), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -13466,208 +14338,138 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(665), - [sym_this] = ACTIONS(667), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(667), - [sym_false] = ACTIONS(667), - [sym_null] = ACTIONS(667), - [sym_undefined] = ACTIONS(667), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [81] = { - [sym_import] = STATE(524), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(524), - [sym_yield_expression] = STATE(524), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(524), - [sym_jsx_fragment] = STATE(524), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(524), - [sym_class] = STATE(524), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(524), - [sym_arrow_function] = STATE(524), - [sym_call_expression] = STATE(524), - [sym_new_expression] = STATE(524), - [sym_await_expression] = STATE(524), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(524), - [sym_augmented_assignment_expression] = STATE(524), - [sym_ternary_expression] = STATE(524), - [sym_binary_expression] = STATE(524), - [sym_unary_expression] = STATE(524), - [sym_update_expression] = STATE(524), - [sym_sequence_expression] = STATE(1122), - [sym_string] = STATE(524), - [sym_template_string] = STATE(524), - [sym_regex] = STATE(524), - [sym_meta_property] = STATE(524), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(669), - [sym_this] = ACTIONS(671), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [sym_null] = ACTIONS(671), - [sym_undefined] = ACTIONS(671), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [82] = { - [sym_import] = STATE(509), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(509), - [sym_yield_expression] = STATE(509), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(509), - [sym_jsx_fragment] = STATE(509), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(509), - [sym_class] = STATE(509), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(509), - [sym_arrow_function] = STATE(509), - [sym_call_expression] = STATE(509), - [sym_new_expression] = STATE(509), - [sym_await_expression] = STATE(509), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(509), - [sym_augmented_assignment_expression] = STATE(509), - [sym_ternary_expression] = STATE(509), - [sym_binary_expression] = STATE(509), - [sym_unary_expression] = STATE(509), - [sym_update_expression] = STATE(509), - [sym_sequence_expression] = STATE(1103), - [sym_string] = STATE(509), - [sym_template_string] = STATE(509), - [sym_regex] = STATE(509), - [sym_meta_property] = STATE(509), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [90] = { + [sym_import] = STATE(372), + [sym_parenthesized_expression] = STATE(274), + [sym__expression] = STATE(596), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(341), + [sym_array] = STATE(337), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(372), + [sym_function] = STATE(372), + [sym_generator_function] = STATE(372), + [sym_arrow_function] = STATE(372), + [sym_call_expression] = STATE(372), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(274), + [sym_subscript_expression] = STATE(274), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(372), + [sym_template_string] = STATE(372), + [sym_regex] = STATE(372), + [sym_meta_property] = STATE(372), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(610), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_DOT] = ACTIONS(592), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(614), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(673), - [sym_this] = ACTIONS(675), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(675), - [sym_false] = ACTIONS(675), - [sym_null] = ACTIONS(675), - [sym_undefined] = ACTIONS(675), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(616), + [sym_this] = ACTIONS(618), + [sym_super] = ACTIONS(618), + [sym_true] = ACTIONS(618), + [sym_false] = ACTIONS(618), + [sym_null] = ACTIONS(618), + [sym_undefined] = ACTIONS(618), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(620), + [anon_sym_get] = ACTIONS(620), + [anon_sym_set] = ACTIONS(620), }, - [83] = { - [sym_import] = STATE(419), - [sym_statement_block] = STATE(538), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(419), - [sym_yield_expression] = STATE(419), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(419), - [sym_jsx_fragment] = STATE(419), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(419), - [sym_class] = STATE(419), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(419), - [sym_arrow_function] = STATE(419), - [sym_call_expression] = STATE(419), - [sym_new_expression] = STATE(419), - [sym_await_expression] = STATE(419), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(419), - [sym_augmented_assignment_expression] = STATE(419), - [sym_ternary_expression] = STATE(419), - [sym_binary_expression] = STATE(419), - [sym_unary_expression] = STATE(419), - [sym_update_expression] = STATE(419), - [sym_string] = STATE(419), - [sym_template_string] = STATE(419), - [sym_regex] = STATE(419), - [sym_meta_property] = STATE(419), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(419), + [91] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(489), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(970), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -13682,208 +14484,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(677), - [sym_this] = ACTIONS(679), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(679), - [sym_false] = ACTIONS(679), - [sym_null] = ACTIONS(679), - [sym_undefined] = ACTIONS(679), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [84] = { - [sym_import] = STATE(502), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(502), - [sym_yield_expression] = STATE(502), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(502), - [sym_jsx_fragment] = STATE(502), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(502), - [sym_class] = STATE(502), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(502), - [sym_arrow_function] = STATE(502), - [sym_call_expression] = STATE(502), - [sym_new_expression] = STATE(502), - [sym_await_expression] = STATE(502), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(502), - [sym_augmented_assignment_expression] = STATE(502), - [sym_ternary_expression] = STATE(502), - [sym_binary_expression] = STATE(502), - [sym_unary_expression] = STATE(502), - [sym_update_expression] = STATE(502), - [sym_sequence_expression] = STATE(1104), - [sym_string] = STATE(502), - [sym_template_string] = STATE(502), - [sym_regex] = STATE(502), - [sym_meta_property] = STATE(502), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(681), - [sym_this] = ACTIONS(683), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(683), - [sym_false] = ACTIONS(683), - [sym_null] = ACTIONS(683), - [sym_undefined] = ACTIONS(683), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [85] = { - [sym_import] = STATE(341), - [sym_statement_block] = STATE(454), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(341), - [sym_yield_expression] = STATE(341), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(341), - [sym_jsx_fragment] = STATE(341), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(341), - [sym_class] = STATE(341), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(341), - [sym_arrow_function] = STATE(341), - [sym_call_expression] = STATE(341), - [sym_new_expression] = STATE(341), - [sym_await_expression] = STATE(341), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(341), - [sym_augmented_assignment_expression] = STATE(341), - [sym_ternary_expression] = STATE(341), - [sym_binary_expression] = STATE(341), - [sym_unary_expression] = STATE(341), - [sym_update_expression] = STATE(341), - [sym_string] = STATE(341), - [sym_template_string] = STATE(341), - [sym_regex] = STATE(341), - [sym_meta_property] = STATE(341), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(687), - [sym_this] = ACTIONS(689), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(689), - [sym_false] = ACTIONS(689), - [sym_null] = ACTIONS(689), - [sym_undefined] = ACTIONS(689), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [86] = { - [sym_import] = STATE(424), - [sym_statement_block] = STATE(533), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(424), - [sym_yield_expression] = STATE(424), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(424), - [sym_jsx_fragment] = STATE(424), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(424), - [sym_class] = STATE(424), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(424), - [sym_arrow_function] = STATE(424), - [sym_call_expression] = STATE(424), - [sym_new_expression] = STATE(424), - [sym_await_expression] = STATE(424), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(424), - [sym_augmented_assignment_expression] = STATE(424), - [sym_ternary_expression] = STATE(424), - [sym_binary_expression] = STATE(424), - [sym_unary_expression] = STATE(424), - [sym_update_expression] = STATE(424), - [sym_string] = STATE(424), - [sym_template_string] = STATE(424), - [sym_regex] = STATE(424), - [sym_meta_property] = STATE(424), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(419), + [92] = { + [sym_import] = STATE(581), + [sym_statement_block] = STATE(542), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(403), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -13898,280 +14557,576 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(691), - [sym_this] = ACTIONS(693), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(693), - [sym_false] = ACTIONS(693), - [sym_null] = ACTIONS(693), - [sym_undefined] = ACTIONS(693), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [87] = { - [sym_import] = STATE(539), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(539), - [sym_yield_expression] = STATE(539), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(539), - [sym_jsx_fragment] = STATE(539), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(539), - [sym_class] = STATE(539), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(539), - [sym_arrow_function] = STATE(539), - [sym_call_expression] = STATE(539), - [sym_new_expression] = STATE(539), - [sym_await_expression] = STATE(539), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(539), - [sym_augmented_assignment_expression] = STATE(539), - [sym_ternary_expression] = STATE(539), - [sym_binary_expression] = STATE(539), - [sym_unary_expression] = STATE(539), - [sym_update_expression] = STATE(539), - [sym_sequence_expression] = STATE(1127), - [sym_string] = STATE(539), - [sym_template_string] = STATE(539), - [sym_regex] = STATE(539), - [sym_meta_property] = STATE(539), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [93] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(369), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(806), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(695), - [sym_this] = ACTIONS(697), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(697), - [sym_false] = ACTIONS(697), - [sym_null] = ACTIONS(697), - [sym_undefined] = ACTIONS(697), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [88] = { - [sym_import] = STATE(557), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(557), - [sym_yield_expression] = STATE(557), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(557), - [sym_jsx_fragment] = STATE(557), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(557), - [sym_class] = STATE(557), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(557), - [sym_arrow_function] = STATE(557), - [sym_call_expression] = STATE(557), - [sym_new_expression] = STATE(557), - [sym_await_expression] = STATE(557), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(557), - [sym_augmented_assignment_expression] = STATE(557), - [sym_ternary_expression] = STATE(557), - [sym_binary_expression] = STATE(557), - [sym_unary_expression] = STATE(557), - [sym_update_expression] = STATE(557), - [sym_sequence_expression] = STATE(1086), - [sym_string] = STATE(557), - [sym_template_string] = STATE(557), - [sym_regex] = STATE(557), - [sym_meta_property] = STATE(557), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [94] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(540), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1152), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(699), - [sym_this] = ACTIONS(701), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(701), - [sym_false] = ACTIONS(701), - [sym_null] = ACTIONS(701), - [sym_undefined] = ACTIONS(701), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [89] = { - [sym_import] = STATE(361), - [sym_parenthesized_expression] = STATE(283), - [sym__expression] = STATE(574), - [sym_yield_expression] = STATE(574), - [sym_object] = STATE(331), - [sym_array] = STATE(333), - [sym_jsx_element] = STATE(574), - [sym_jsx_fragment] = STATE(574), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(574), - [sym_class] = STATE(361), - [sym_function] = STATE(335), - [sym_generator_function] = STATE(361), - [sym_arrow_function] = STATE(361), - [sym_call_expression] = STATE(574), - [sym_new_expression] = STATE(361), - [sym_await_expression] = STATE(574), - [sym_member_expression] = STATE(283), - [sym_subscript_expression] = STATE(283), - [sym_assignment_expression] = STATE(574), - [sym_augmented_assignment_expression] = STATE(574), - [sym_ternary_expression] = STATE(574), - [sym_binary_expression] = STATE(574), - [sym_unary_expression] = STATE(574), - [sym_update_expression] = STATE(574), - [sym_string] = STATE(361), - [sym_template_string] = STATE(361), - [sym_regex] = STATE(361), - [sym_meta_property] = STATE(361), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_DOT] = ACTIONS(705), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(707), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [95] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(538), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1156), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(709), - [sym_this] = ACTIONS(711), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(711), - [sym_false] = ACTIONS(711), - [sym_null] = ACTIONS(711), - [sym_undefined] = ACTIONS(711), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(713), - [anon_sym_get] = ACTIONS(713), - [anon_sym_set] = ACTIONS(713), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [90] = { - [sym_import] = STATE(393), - [sym_statement_block] = STATE(562), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(393), - [sym_yield_expression] = STATE(393), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(393), - [sym_jsx_fragment] = STATE(393), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(393), - [sym_class] = STATE(393), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(393), - [sym_arrow_function] = STATE(393), - [sym_call_expression] = STATE(393), - [sym_new_expression] = STATE(393), - [sym_await_expression] = STATE(393), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(393), - [sym_augmented_assignment_expression] = STATE(393), - [sym_ternary_expression] = STATE(393), - [sym_binary_expression] = STATE(393), - [sym_unary_expression] = STATE(393), - [sym_update_expression] = STATE(393), - [sym_string] = STATE(393), - [sym_template_string] = STATE(393), - [sym_regex] = STATE(393), - [sym_meta_property] = STATE(393), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(419), + [96] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(583), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1164), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [97] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(526), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1159), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [98] = { + [sym_import] = STATE(385), + [sym_statement_block] = STATE(425), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(353), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [99] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(532), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1158), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [100] = { + [sym_import] = STATE(581), + [sym_statement_block] = STATE(546), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(454), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -14186,856 +15141,357 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(715), - [sym_this] = ACTIONS(717), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(717), - [sym_false] = ACTIONS(717), - [sym_null] = ACTIONS(717), - [sym_undefined] = ACTIONS(717), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [91] = { - [sym_import] = STATE(349), - [sym_statement_block] = STATE(380), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(349), - [sym_yield_expression] = STATE(349), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(349), - [sym_jsx_fragment] = STATE(349), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(349), - [sym_class] = STATE(349), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(349), - [sym_arrow_function] = STATE(349), - [sym_call_expression] = STATE(349), - [sym_new_expression] = STATE(349), - [sym_await_expression] = STATE(349), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(349), - [sym_augmented_assignment_expression] = STATE(349), - [sym_ternary_expression] = STATE(349), - [sym_binary_expression] = STATE(349), - [sym_unary_expression] = STATE(349), - [sym_update_expression] = STATE(349), - [sym_string] = STATE(349), - [sym_template_string] = STATE(349), - [sym_regex] = STATE(349), - [sym_meta_property] = STATE(349), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(719), - [sym_this] = ACTIONS(721), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_null] = ACTIONS(721), - [sym_undefined] = ACTIONS(721), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [92] = { - [sym_import] = STATE(548), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(548), - [sym_yield_expression] = STATE(548), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(548), - [sym_jsx_fragment] = STATE(548), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(548), - [sym_class] = STATE(548), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(548), - [sym_arrow_function] = STATE(548), - [sym_call_expression] = STATE(548), - [sym_new_expression] = STATE(548), - [sym_await_expression] = STATE(548), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(548), - [sym_augmented_assignment_expression] = STATE(548), - [sym_ternary_expression] = STATE(548), - [sym_binary_expression] = STATE(548), - [sym_unary_expression] = STATE(548), - [sym_update_expression] = STATE(548), - [sym_sequence_expression] = STATE(1078), - [sym_string] = STATE(548), - [sym_template_string] = STATE(548), - [sym_regex] = STATE(548), - [sym_meta_property] = STATE(548), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(723), - [sym_this] = ACTIONS(725), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(725), - [sym_false] = ACTIONS(725), - [sym_null] = ACTIONS(725), - [sym_undefined] = ACTIONS(725), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [93] = { - [sym_import] = STATE(545), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(545), - [sym_yield_expression] = STATE(545), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(545), - [sym_jsx_fragment] = STATE(545), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(545), - [sym_class] = STATE(545), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(545), - [sym_arrow_function] = STATE(545), - [sym_call_expression] = STATE(545), - [sym_new_expression] = STATE(545), - [sym_await_expression] = STATE(545), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(545), - [sym_augmented_assignment_expression] = STATE(545), - [sym_ternary_expression] = STATE(545), - [sym_binary_expression] = STATE(545), - [sym_unary_expression] = STATE(545), - [sym_update_expression] = STATE(545), - [sym_sequence_expression] = STATE(1111), - [sym_string] = STATE(545), - [sym_template_string] = STATE(545), - [sym_regex] = STATE(545), - [sym_meta_property] = STATE(545), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(727), - [sym_this] = ACTIONS(729), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_null] = ACTIONS(729), - [sym_undefined] = ACTIONS(729), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [94] = { - [sym_import] = STATE(466), + [101] = { + [sym_import] = STATE(385), [sym_parenthesized_expression] = STATE(288), - [sym__expression] = STATE(576), - [sym_yield_expression] = STATE(576), - [sym_object] = STATE(433), - [sym_array] = STATE(428), - [sym_jsx_element] = STATE(576), - [sym_jsx_fragment] = STATE(576), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(576), - [sym_class] = STATE(466), - [sym_function] = STATE(365), - [sym_generator_function] = STATE(466), - [sym_arrow_function] = STATE(466), - [sym_call_expression] = STATE(576), - [sym_new_expression] = STATE(466), - [sym_await_expression] = STATE(576), + [sym__expression] = STATE(572), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), [sym_member_expression] = STATE(288), [sym_subscript_expression] = STATE(288), - [sym_assignment_expression] = STATE(576), - [sym_augmented_assignment_expression] = STATE(576), - [sym_ternary_expression] = STATE(576), - [sym_binary_expression] = STATE(576), - [sym_unary_expression] = STATE(576), - [sym_update_expression] = STATE(576), - [sym_string] = STATE(466), - [sym_template_string] = STATE(466), - [sym_regex] = STATE(466), - [sym_meta_property] = STATE(466), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(27), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_DOT] = ACTIONS(733), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(735), - [anon_sym_function] = ACTIONS(427), - [anon_sym_new] = ACTIONS(65), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(75), - [anon_sym_SQUOTE] = ACTIONS(77), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(737), - [sym_this] = ACTIONS(739), - [sym_super] = ACTIONS(741), - [sym_true] = ACTIONS(739), - [sym_false] = ACTIONS(739), - [sym_null] = ACTIONS(739), - [sym_undefined] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(743), - [anon_sym_get] = ACTIONS(743), - [anon_sym_set] = ACTIONS(743), - }, - [95] = { - [sym_import] = STATE(559), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(559), - [sym_yield_expression] = STATE(559), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(559), - [sym_jsx_fragment] = STATE(559), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(559), - [sym_class] = STATE(559), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(559), - [sym_arrow_function] = STATE(559), - [sym_call_expression] = STATE(559), - [sym_new_expression] = STATE(559), - [sym_await_expression] = STATE(559), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(559), - [sym_augmented_assignment_expression] = STATE(559), - [sym_ternary_expression] = STATE(559), - [sym_binary_expression] = STATE(559), - [sym_unary_expression] = STATE(559), - [sym_update_expression] = STATE(559), - [sym_sequence_expression] = STATE(1082), - [sym_string] = STATE(559), - [sym_template_string] = STATE(559), - [sym_regex] = STATE(559), - [sym_meta_property] = STATE(559), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(745), - [sym_this] = ACTIONS(747), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(747), - [sym_false] = ACTIONS(747), - [sym_null] = ACTIONS(747), - [sym_undefined] = ACTIONS(747), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [96] = { - [sym_import] = STATE(527), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(527), - [sym_yield_expression] = STATE(527), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(527), - [sym_jsx_fragment] = STATE(527), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(527), - [sym_class] = STATE(527), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(527), - [sym_arrow_function] = STATE(527), - [sym_call_expression] = STATE(527), - [sym_new_expression] = STATE(527), - [sym_await_expression] = STATE(527), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(527), - [sym_augmented_assignment_expression] = STATE(527), - [sym_ternary_expression] = STATE(527), - [sym_binary_expression] = STATE(527), - [sym_unary_expression] = STATE(527), - [sym_update_expression] = STATE(527), - [sym_sequence_expression] = STATE(1045), - [sym_string] = STATE(527), - [sym_template_string] = STATE(527), - [sym_regex] = STATE(527), - [sym_meta_property] = STATE(527), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(749), - [sym_this] = ACTIONS(751), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(751), - [sym_false] = ACTIONS(751), - [sym_null] = ACTIONS(751), - [sym_undefined] = ACTIONS(751), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [97] = { - [sym_import] = STATE(359), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(359), - [sym_yield_expression] = STATE(359), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(359), - [sym_jsx_fragment] = STATE(359), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(359), - [sym_class] = STATE(359), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(359), - [sym_arrow_function] = STATE(359), - [sym_call_expression] = STATE(359), - [sym_new_expression] = STATE(359), - [sym_await_expression] = STATE(359), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(359), - [sym_augmented_assignment_expression] = STATE(359), - [sym_ternary_expression] = STATE(359), - [sym_binary_expression] = STATE(359), - [sym_unary_expression] = STATE(359), - [sym_update_expression] = STATE(359), - [sym_sequence_expression] = STATE(808), - [sym_string] = STATE(359), - [sym_template_string] = STATE(359), - [sym_regex] = STATE(359), - [sym_meta_property] = STATE(359), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(753), - [sym_this] = ACTIONS(755), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(755), - [sym_false] = ACTIONS(755), - [sym_null] = ACTIONS(755), - [sym_undefined] = ACTIONS(755), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [98] = { - [sym_import] = STATE(531), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(531), - [sym_yield_expression] = STATE(531), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(531), - [sym_jsx_fragment] = STATE(531), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(531), - [sym_class] = STATE(531), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(531), - [sym_arrow_function] = STATE(531), - [sym_call_expression] = STATE(531), - [sym_new_expression] = STATE(531), - [sym_await_expression] = STATE(531), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(531), - [sym_augmented_assignment_expression] = STATE(531), - [sym_ternary_expression] = STATE(531), - [sym_binary_expression] = STATE(531), - [sym_unary_expression] = STATE(531), - [sym_update_expression] = STATE(531), - [sym_sequence_expression] = STATE(1071), - [sym_string] = STATE(531), - [sym_template_string] = STATE(531), - [sym_regex] = STATE(531), - [sym_meta_property] = STATE(531), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1101), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(757), - [sym_this] = ACTIONS(759), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(759), - [sym_false] = ACTIONS(759), - [sym_null] = ACTIONS(759), - [sym_undefined] = ACTIONS(759), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [99] = { - [sym_import] = STATE(317), - [sym_statement_block] = STATE(379), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(317), - [sym_yield_expression] = STATE(317), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(317), - [sym_jsx_fragment] = STATE(317), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(317), - [sym_class] = STATE(317), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(317), - [sym_arrow_function] = STATE(317), - [sym_call_expression] = STATE(317), - [sym_new_expression] = STATE(317), - [sym_await_expression] = STATE(317), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(317), - [sym_augmented_assignment_expression] = STATE(317), - [sym_ternary_expression] = STATE(317), - [sym_binary_expression] = STATE(317), - [sym_unary_expression] = STATE(317), - [sym_update_expression] = STATE(317), - [sym_string] = STATE(317), - [sym_template_string] = STATE(317), - [sym_regex] = STATE(317), - [sym_meta_property] = STATE(317), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [102] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(574), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1100), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(761), - [sym_this] = ACTIONS(763), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(763), - [sym_false] = ACTIONS(763), - [sym_null] = ACTIONS(763), - [sym_undefined] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [100] = { - [sym_import] = STATE(496), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(496), - [sym_yield_expression] = STATE(496), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(496), - [sym_jsx_fragment] = STATE(496), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(496), - [sym_class] = STATE(496), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(496), - [sym_arrow_function] = STATE(496), - [sym_call_expression] = STATE(496), - [sym_new_expression] = STATE(496), - [sym_await_expression] = STATE(496), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(496), - [sym_augmented_assignment_expression] = STATE(496), - [sym_ternary_expression] = STATE(496), - [sym_binary_expression] = STATE(496), - [sym_unary_expression] = STATE(496), - [sym_update_expression] = STATE(496), - [sym_sequence_expression] = STATE(1100), - [sym_string] = STATE(496), - [sym_template_string] = STATE(496), - [sym_regex] = STATE(496), - [sym_meta_property] = STATE(496), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [103] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(536), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1157), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(613), - [sym_this] = ACTIONS(615), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_null] = ACTIONS(615), - [sym_undefined] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [101] = { - [sym_import] = STATE(510), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(510), - [sym_yield_expression] = STATE(510), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(510), - [sym_jsx_fragment] = STATE(510), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(510), - [sym_class] = STATE(510), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(510), - [sym_arrow_function] = STATE(510), - [sym_call_expression] = STATE(510), - [sym_new_expression] = STATE(510), - [sym_await_expression] = STATE(510), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(510), - [sym_augmented_assignment_expression] = STATE(510), - [sym_ternary_expression] = STATE(510), - [sym_binary_expression] = STATE(510), - [sym_unary_expression] = STATE(510), - [sym_update_expression] = STATE(510), - [sym_sequence_expression] = STATE(1107), - [sym_string] = STATE(510), - [sym_template_string] = STATE(510), - [sym_regex] = STATE(510), - [sym_meta_property] = STATE(510), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [104] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(539), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1155), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(765), - [sym_this] = ACTIONS(767), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(767), - [sym_false] = ACTIONS(767), - [sym_null] = ACTIONS(767), - [sym_undefined] = ACTIONS(767), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [102] = { - [sym_import] = STATE(373), - [sym_statement_block] = STATE(518), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(373), - [sym_yield_expression] = STATE(373), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(373), - [sym_jsx_fragment] = STATE(373), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(373), - [sym_class] = STATE(373), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(373), - [sym_arrow_function] = STATE(373), - [sym_call_expression] = STATE(373), - [sym_new_expression] = STATE(373), - [sym_await_expression] = STATE(373), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(373), - [sym_augmented_assignment_expression] = STATE(373), - [sym_ternary_expression] = STATE(373), - [sym_binary_expression] = STATE(373), - [sym_unary_expression] = STATE(373), - [sym_update_expression] = STATE(373), - [sym_string] = STATE(373), - [sym_template_string] = STATE(373), - [sym_regex] = STATE(373), - [sym_meta_property] = STATE(373), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(419), + [105] = { + [sym_import] = STATE(581), + [sym_statement_block] = STATE(556), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(460), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -15050,64 +15506,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(769), - [sym_this] = ACTIONS(771), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(771), - [sym_false] = ACTIONS(771), - [sym_null] = ACTIONS(771), - [sym_undefined] = ACTIONS(771), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [103] = { - [sym_import] = STATE(491), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(491), - [sym_yield_expression] = STATE(491), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(491), - [sym_jsx_fragment] = STATE(491), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(491), - [sym_class] = STATE(491), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(491), - [sym_arrow_function] = STATE(491), - [sym_call_expression] = STATE(491), - [sym_new_expression] = STATE(491), - [sym_await_expression] = STATE(491), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(491), - [sym_augmented_assignment_expression] = STATE(491), - [sym_ternary_expression] = STATE(491), - [sym_binary_expression] = STATE(491), - [sym_unary_expression] = STATE(491), - [sym_update_expression] = STATE(491), - [sym_sequence_expression] = STATE(941), - [sym_string] = STATE(491), - [sym_template_string] = STATE(491), - [sym_regex] = STATE(491), - [sym_meta_property] = STATE(491), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [106] = { + [sym_import] = STATE(581), + [sym_statement_block] = STATE(554), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(455), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -15122,496 +15579,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(773), - [sym_this] = ACTIONS(775), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(775), - [sym_false] = ACTIONS(775), - [sym_null] = ACTIONS(775), - [sym_undefined] = ACTIONS(775), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [104] = { - [sym_import] = STATE(574), - [sym_variable_declarator] = STATE(790), - [sym_parenthesized_expression] = STATE(314), - [sym__expression] = STATE(574), - [sym_yield_expression] = STATE(574), - [sym_object] = STATE(378), - [sym_array] = STATE(376), - [sym_jsx_element] = STATE(574), - [sym_jsx_fragment] = STATE(574), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(574), - [sym_class] = STATE(574), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(574), - [sym_arrow_function] = STATE(574), - [sym_call_expression] = STATE(574), - [sym_new_expression] = STATE(574), - [sym_await_expression] = STATE(574), - [sym_member_expression] = STATE(314), - [sym_subscript_expression] = STATE(314), - [sym_assignment_expression] = STATE(574), - [sym_augmented_assignment_expression] = STATE(574), - [sym_ternary_expression] = STATE(574), - [sym_binary_expression] = STATE(574), - [sym_unary_expression] = STATE(574), - [sym_update_expression] = STATE(574), - [sym_string] = STATE(574), - [sym_template_string] = STATE(574), - [sym_regex] = STATE(574), - [sym_meta_property] = STATE(574), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(779), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(635), - [sym_this] = ACTIONS(637), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(637), - [sym_false] = ACTIONS(637), - [sym_null] = ACTIONS(637), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - }, - [105] = { - [sym_import] = STATE(495), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(495), - [sym_yield_expression] = STATE(495), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(495), - [sym_jsx_fragment] = STATE(495), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(495), - [sym_class] = STATE(495), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(495), - [sym_arrow_function] = STATE(495), - [sym_call_expression] = STATE(495), - [sym_new_expression] = STATE(495), - [sym_await_expression] = STATE(495), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(495), - [sym_augmented_assignment_expression] = STATE(495), - [sym_ternary_expression] = STATE(495), - [sym_binary_expression] = STATE(495), - [sym_unary_expression] = STATE(495), - [sym_update_expression] = STATE(495), - [sym_sequence_expression] = STATE(1114), - [sym_string] = STATE(495), - [sym_template_string] = STATE(495), - [sym_regex] = STATE(495), - [sym_meta_property] = STATE(495), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(783), - [sym_this] = ACTIONS(785), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(785), - [sym_false] = ACTIONS(785), - [sym_null] = ACTIONS(785), - [sym_undefined] = ACTIONS(785), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [106] = { - [sym_import] = STATE(326), - [sym_statement_block] = STATE(432), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(326), - [sym_yield_expression] = STATE(326), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(326), - [sym_jsx_fragment] = STATE(326), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(326), - [sym_class] = STATE(326), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(326), - [sym_arrow_function] = STATE(326), - [sym_call_expression] = STATE(326), - [sym_new_expression] = STATE(326), - [sym_await_expression] = STATE(326), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(326), - [sym_augmented_assignment_expression] = STATE(326), - [sym_ternary_expression] = STATE(326), - [sym_binary_expression] = STATE(326), - [sym_unary_expression] = STATE(326), - [sym_update_expression] = STATE(326), - [sym_string] = STATE(326), - [sym_template_string] = STATE(326), - [sym_regex] = STATE(326), - [sym_meta_property] = STATE(326), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(787), - [sym_this] = ACTIONS(789), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(789), - [sym_false] = ACTIONS(789), - [sym_null] = ACTIONS(789), - [sym_undefined] = ACTIONS(789), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, [107] = { - [sym_import] = STATE(354), - [sym_statement_block] = STATE(436), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(354), - [sym_yield_expression] = STATE(354), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(354), - [sym_jsx_fragment] = STATE(354), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(354), - [sym_class] = STATE(354), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(354), - [sym_arrow_function] = STATE(354), - [sym_call_expression] = STATE(354), - [sym_new_expression] = STATE(354), - [sym_await_expression] = STATE(354), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(354), - [sym_augmented_assignment_expression] = STATE(354), - [sym_ternary_expression] = STATE(354), - [sym_binary_expression] = STATE(354), - [sym_unary_expression] = STATE(354), - [sym_update_expression] = STATE(354), - [sym_string] = STATE(354), - [sym_template_string] = STATE(354), - [sym_regex] = STATE(354), - [sym_meta_property] = STATE(354), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(791), - [sym_this] = ACTIONS(793), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [sym_null] = ACTIONS(793), - [sym_undefined] = ACTIONS(793), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [108] = { - [sym_import] = STATE(355), - [sym_statement_block] = STATE(439), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(355), - [sym_yield_expression] = STATE(355), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(355), - [sym_jsx_fragment] = STATE(355), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(355), - [sym_class] = STATE(355), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(355), - [sym_arrow_function] = STATE(355), - [sym_call_expression] = STATE(355), - [sym_new_expression] = STATE(355), - [sym_await_expression] = STATE(355), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(355), - [sym_augmented_assignment_expression] = STATE(355), - [sym_ternary_expression] = STATE(355), - [sym_binary_expression] = STATE(355), - [sym_unary_expression] = STATE(355), - [sym_update_expression] = STATE(355), - [sym_string] = STATE(355), - [sym_template_string] = STATE(355), - [sym_regex] = STATE(355), - [sym_meta_property] = STATE(355), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(685), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(795), - [sym_this] = ACTIONS(797), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(797), - [sym_false] = ACTIONS(797), - [sym_null] = ACTIONS(797), - [sym_undefined] = ACTIONS(797), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [109] = { - [sym_import] = STATE(574), - [sym_variable_declarator] = STATE(794), - [sym_parenthesized_expression] = STATE(314), - [sym__expression] = STATE(574), - [sym_yield_expression] = STATE(574), - [sym_object] = STATE(378), - [sym_array] = STATE(376), - [sym_jsx_element] = STATE(574), - [sym_jsx_fragment] = STATE(574), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(574), - [sym_class] = STATE(574), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(574), - [sym_arrow_function] = STATE(574), - [sym_call_expression] = STATE(574), - [sym_new_expression] = STATE(574), - [sym_await_expression] = STATE(574), - [sym_member_expression] = STATE(314), - [sym_subscript_expression] = STATE(314), - [sym_assignment_expression] = STATE(574), - [sym_augmented_assignment_expression] = STATE(574), - [sym_ternary_expression] = STATE(574), - [sym_binary_expression] = STATE(574), - [sym_unary_expression] = STATE(574), - [sym_update_expression] = STATE(574), - [sym_string] = STATE(574), - [sym_template_string] = STATE(574), - [sym_regex] = STATE(574), - [sym_meta_property] = STATE(574), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(777), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(53), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(779), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(635), - [sym_this] = ACTIONS(637), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(637), - [sym_false] = ACTIONS(637), - [sym_null] = ACTIONS(637), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), - }, - [110] = { - [sym_import] = STATE(409), - [sym_statement_block] = STATE(544), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(409), - [sym_yield_expression] = STATE(409), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(409), - [sym_jsx_fragment] = STATE(409), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(409), - [sym_class] = STATE(409), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(409), - [sym_arrow_function] = STATE(409), - [sym_call_expression] = STATE(409), - [sym_new_expression] = STATE(409), - [sym_await_expression] = STATE(409), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(409), - [sym_augmented_assignment_expression] = STATE(409), - [sym_ternary_expression] = STATE(409), - [sym_binary_expression] = STATE(409), - [sym_unary_expression] = STATE(409), - [sym_update_expression] = STATE(409), - [sym_string] = STATE(409), - [sym_template_string] = STATE(409), - [sym_regex] = STATE(409), - [sym_meta_property] = STATE(409), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(663), - [anon_sym_import] = ACTIONS(419), + [sym_import] = STATE(581), + [sym_statement_block] = STATE(514), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(439), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(622), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -15626,135 +15652,138 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(799), - [sym_this] = ACTIONS(801), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(801), - [sym_false] = ACTIONS(801), - [sym_null] = ACTIONS(801), - [sym_undefined] = ACTIONS(801), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [111] = { - [sym_import] = STATE(512), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(512), - [sym_yield_expression] = STATE(512), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(512), - [sym_jsx_fragment] = STATE(512), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(512), - [sym_class] = STATE(512), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(512), - [sym_arrow_function] = STATE(512), - [sym_call_expression] = STATE(512), - [sym_new_expression] = STATE(512), - [sym_await_expression] = STATE(512), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(512), - [sym_augmented_assignment_expression] = STATE(512), - [sym_ternary_expression] = STATE(512), - [sym_binary_expression] = STATE(512), - [sym_unary_expression] = STATE(512), - [sym_update_expression] = STATE(512), - [sym_sequence_expression] = STATE(1096), - [sym_string] = STATE(512), - [sym_template_string] = STATE(512), - [sym_regex] = STATE(512), - [sym_meta_property] = STATE(512), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [108] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(513), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1164), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(803), - [sym_this] = ACTIONS(805), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(805), - [sym_false] = ACTIONS(805), - [sym_null] = ACTIONS(805), - [sym_undefined] = ACTIONS(805), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [112] = { - [sym_import] = STATE(470), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(470), - [sym_yield_expression] = STATE(470), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(470), - [sym_jsx_fragment] = STATE(470), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(470), - [sym_class] = STATE(470), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(470), - [sym_arrow_function] = STATE(470), - [sym_call_expression] = STATE(470), - [sym_new_expression] = STATE(470), - [sym_await_expression] = STATE(470), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(470), - [sym_augmented_assignment_expression] = STATE(470), - [sym_ternary_expression] = STATE(470), - [sym_binary_expression] = STATE(470), - [sym_unary_expression] = STATE(470), - [sym_update_expression] = STATE(470), - [sym_string] = STATE(470), - [sym_template_string] = STATE(470), - [sym_regex] = STATE(470), - [sym_meta_property] = STATE(470), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [109] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(481), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_sequence_expression] = STATE(1043), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -15769,276 +15798,794 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(807), - [sym_this] = ACTIONS(809), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(809), - [sym_false] = ACTIONS(809), - [sym_null] = ACTIONS(809), - [sym_undefined] = ACTIONS(809), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [110] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(569), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1105), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [111] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(509), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1117), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [112] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(560), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1119), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [113] = { - [sym_import] = STATE(327), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(327), - [sym_yield_expression] = STATE(327), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(327), - [sym_jsx_fragment] = STATE(327), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(327), - [sym_class] = STATE(327), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(327), - [sym_arrow_function] = STATE(327), - [sym_call_expression] = STATE(327), - [sym_new_expression] = STATE(327), - [sym_await_expression] = STATE(327), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(327), - [sym_augmented_assignment_expression] = STATE(327), - [sym_ternary_expression] = STATE(327), - [sym_binary_expression] = STATE(327), - [sym_unary_expression] = STATE(327), - [sym_update_expression] = STATE(327), - [sym_string] = STATE(327), - [sym_template_string] = STATE(327), - [sym_regex] = STATE(327), - [sym_meta_property] = STATE(327), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(561), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1118), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(811), - [sym_this] = ACTIONS(813), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(813), - [sym_false] = ACTIONS(813), - [sym_null] = ACTIONS(813), - [sym_undefined] = ACTIONS(813), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [114] = { - [sym_import] = STATE(570), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(570), - [sym_yield_expression] = STATE(570), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(570), - [sym_jsx_fragment] = STATE(570), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(570), - [sym_class] = STATE(570), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(570), - [sym_arrow_function] = STATE(570), - [sym_call_expression] = STATE(570), - [sym_new_expression] = STATE(570), - [sym_await_expression] = STATE(570), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(570), - [sym_augmented_assignment_expression] = STATE(570), - [sym_ternary_expression] = STATE(570), - [sym_binary_expression] = STATE(570), - [sym_unary_expression] = STATE(570), - [sym_update_expression] = STATE(570), - [sym_string] = STATE(570), - [sym_template_string] = STATE(570), - [sym_regex] = STATE(570), - [sym_meta_property] = STATE(570), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(578), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1091), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(815), - [sym_this] = ACTIONS(817), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(817), - [sym_false] = ACTIONS(817), - [sym_null] = ACTIONS(817), - [sym_undefined] = ACTIONS(817), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [115] = { - [sym_import] = STATE(567), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(567), - [sym_yield_expression] = STATE(567), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(567), - [sym_jsx_fragment] = STATE(567), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(567), - [sym_class] = STATE(567), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(567), - [sym_arrow_function] = STATE(567), - [sym_call_expression] = STATE(567), - [sym_new_expression] = STATE(567), - [sym_await_expression] = STATE(567), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(567), - [sym_augmented_assignment_expression] = STATE(567), - [sym_ternary_expression] = STATE(567), - [sym_binary_expression] = STATE(567), - [sym_unary_expression] = STATE(567), - [sym_update_expression] = STATE(567), - [sym_string] = STATE(567), - [sym_template_string] = STATE(567), - [sym_regex] = STATE(567), - [sym_meta_property] = STATE(567), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(552), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1136), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(819), - [sym_this] = ACTIONS(821), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(821), - [sym_false] = ACTIONS(821), - [sym_null] = ACTIONS(821), - [sym_undefined] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, [116] = { - [sym_import] = STATE(561), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(561), - [sym_yield_expression] = STATE(561), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(561), - [sym_jsx_fragment] = STATE(561), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(561), - [sym_class] = STATE(561), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(561), - [sym_arrow_function] = STATE(561), - [sym_call_expression] = STATE(561), - [sym_new_expression] = STATE(561), - [sym_await_expression] = STATE(561), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(561), - [sym_augmented_assignment_expression] = STATE(561), - [sym_ternary_expression] = STATE(561), - [sym_binary_expression] = STATE(561), - [sym_unary_expression] = STATE(561), - [sym_update_expression] = STATE(561), - [sym_string] = STATE(561), - [sym_template_string] = STATE(561), - [sym_regex] = STATE(561), - [sym_meta_property] = STATE(561), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(564), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1112), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [117] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(567), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_sequence_expression] = STATE(1109), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [118] = { + [sym_import] = STATE(385), + [sym_statement_block] = STATE(466), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(344), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [119] = { + [sym_import] = STATE(385), + [sym_statement_block] = STATE(461), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(347), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [120] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(401), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16053,63 +16600,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(823), - [sym_this] = ACTIONS(825), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(825), - [sym_false] = ACTIONS(825), - [sym_null] = ACTIONS(825), - [sym_undefined] = ACTIONS(825), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [117] = { - [sym_import] = STATE(372), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(372), - [sym_yield_expression] = STATE(372), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(372), - [sym_jsx_fragment] = STATE(372), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(372), - [sym_class] = STATE(372), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(372), - [sym_arrow_function] = STATE(372), - [sym_call_expression] = STATE(372), - [sym_new_expression] = STATE(372), - [sym_await_expression] = STATE(372), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(372), - [sym_augmented_assignment_expression] = STATE(372), - [sym_ternary_expression] = STATE(372), - [sym_binary_expression] = STATE(372), - [sym_unary_expression] = STATE(372), - [sym_update_expression] = STATE(372), - [sym_string] = STATE(372), - [sym_template_string] = STATE(372), - [sym_regex] = STATE(372), - [sym_meta_property] = STATE(372), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [121] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(544), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [122] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(446), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16124,276 +16744,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(827), - [sym_this] = ACTIONS(829), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(829), - [sym_false] = ACTIONS(829), - [sym_null] = ACTIONS(829), - [sym_undefined] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [118] = { - [sym_import] = STATE(485), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(485), - [sym_yield_expression] = STATE(485), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(485), - [sym_jsx_fragment] = STATE(485), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(485), - [sym_class] = STATE(485), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(485), - [sym_arrow_function] = STATE(485), - [sym_call_expression] = STATE(485), - [sym_new_expression] = STATE(485), - [sym_await_expression] = STATE(485), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(485), - [sym_augmented_assignment_expression] = STATE(485), - [sym_ternary_expression] = STATE(485), - [sym_binary_expression] = STATE(485), - [sym_unary_expression] = STATE(485), - [sym_update_expression] = STATE(485), - [sym_string] = STATE(485), - [sym_template_string] = STATE(485), - [sym_regex] = STATE(485), - [sym_meta_property] = STATE(485), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(831), - [sym_this] = ACTIONS(833), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(833), - [sym_false] = ACTIONS(833), - [sym_null] = ACTIONS(833), - [sym_undefined] = ACTIONS(833), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [119] = { - [sym_import] = STATE(486), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(486), - [sym_yield_expression] = STATE(486), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(486), - [sym_jsx_fragment] = STATE(486), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(486), - [sym_class] = STATE(486), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(486), - [sym_arrow_function] = STATE(486), - [sym_call_expression] = STATE(486), - [sym_new_expression] = STATE(486), - [sym_await_expression] = STATE(486), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(486), - [sym_augmented_assignment_expression] = STATE(486), - [sym_ternary_expression] = STATE(486), - [sym_binary_expression] = STATE(486), - [sym_unary_expression] = STATE(486), - [sym_update_expression] = STATE(486), - [sym_string] = STATE(486), - [sym_template_string] = STATE(486), - [sym_regex] = STATE(486), - [sym_meta_property] = STATE(486), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(835), - [sym_this] = ACTIONS(837), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_null] = ACTIONS(837), - [sym_undefined] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [120] = { - [sym_import] = STATE(487), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(487), - [sym_yield_expression] = STATE(487), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(487), - [sym_jsx_fragment] = STATE(487), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(487), - [sym_class] = STATE(487), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(487), - [sym_arrow_function] = STATE(487), - [sym_call_expression] = STATE(487), - [sym_new_expression] = STATE(487), - [sym_await_expression] = STATE(487), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(487), - [sym_augmented_assignment_expression] = STATE(487), - [sym_ternary_expression] = STATE(487), - [sym_binary_expression] = STATE(487), - [sym_unary_expression] = STATE(487), - [sym_update_expression] = STATE(487), - [sym_string] = STATE(487), - [sym_template_string] = STATE(487), - [sym_regex] = STATE(487), - [sym_meta_property] = STATE(487), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(839), - [sym_this] = ACTIONS(841), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(841), - [sym_false] = ACTIONS(841), - [sym_null] = ACTIONS(841), - [sym_undefined] = ACTIONS(841), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [121] = { - [sym_import] = STATE(425), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(425), - [sym_yield_expression] = STATE(425), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(425), - [sym_jsx_fragment] = STATE(425), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(425), - [sym_class] = STATE(425), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(425), - [sym_arrow_function] = STATE(425), - [sym_call_expression] = STATE(425), - [sym_new_expression] = STATE(425), - [sym_await_expression] = STATE(425), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(425), - [sym_augmented_assignment_expression] = STATE(425), - [sym_ternary_expression] = STATE(425), - [sym_binary_expression] = STATE(425), - [sym_unary_expression] = STATE(425), - [sym_update_expression] = STATE(425), - [sym_string] = STATE(425), - [sym_template_string] = STATE(425), - [sym_regex] = STATE(425), - [sym_meta_property] = STATE(425), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [123] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(496), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16408,63 +16816,280 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(843), - [sym_this] = ACTIONS(845), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(845), - [sym_false] = ACTIONS(845), - [sym_null] = ACTIONS(845), - [sym_undefined] = ACTIONS(845), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [122] = { - [sym_import] = STATE(423), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(423), - [sym_yield_expression] = STATE(423), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(423), - [sym_jsx_fragment] = STATE(423), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(423), - [sym_class] = STATE(423), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(423), - [sym_arrow_function] = STATE(423), - [sym_call_expression] = STATE(423), - [sym_new_expression] = STATE(423), - [sym_await_expression] = STATE(423), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(423), - [sym_augmented_assignment_expression] = STATE(423), - [sym_ternary_expression] = STATE(423), - [sym_binary_expression] = STATE(423), - [sym_unary_expression] = STATE(423), - [sym_update_expression] = STATE(423), - [sym_string] = STATE(423), - [sym_template_string] = STATE(423), - [sym_regex] = STATE(423), - [sym_meta_property] = STATE(423), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [124] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(349), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [125] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(590), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [126] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(333), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [127] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(445), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16479,63 +17104,280 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(847), - [sym_this] = ACTIONS(849), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(849), - [sym_false] = ACTIONS(849), - [sym_null] = ACTIONS(849), - [sym_undefined] = ACTIONS(849), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [123] = { - [sym_import] = STATE(422), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(422), - [sym_yield_expression] = STATE(422), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(422), - [sym_jsx_fragment] = STATE(422), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(422), - [sym_class] = STATE(422), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(422), - [sym_arrow_function] = STATE(422), - [sym_call_expression] = STATE(422), - [sym_new_expression] = STATE(422), - [sym_await_expression] = STATE(422), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(422), - [sym_augmented_assignment_expression] = STATE(422), - [sym_ternary_expression] = STATE(422), - [sym_binary_expression] = STATE(422), - [sym_unary_expression] = STATE(422), - [sym_update_expression] = STATE(422), - [sym_string] = STATE(422), - [sym_template_string] = STATE(422), - [sym_regex] = STATE(422), - [sym_meta_property] = STATE(422), - [sym_decorator] = STATE(635), + [128] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(334), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [129] = { + [sym_string] = STATE(954), [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [sym__property_name] = STATE(954), + [sym_computed_property_name] = STATE(954), + [aux_sym_object_repeat1] = STATE(893), + [sym_identifier] = ACTIONS(624), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_in] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_COLON] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_DOT] = ACTIONS(646), + [anon_sym_async] = ACTIONS(648), + [anon_sym_function] = ACTIONS(650), + [anon_sym_EQ_GT] = ACTIONS(652), + [anon_sym_QMARK_DOT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_STAR_STAR_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(656), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(656), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(637), + [anon_sym_GT_GT_GT] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(629), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_QMARK_QMARK] = ACTIONS(637), + [anon_sym_instanceof] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(629), + [sym_number] = ACTIONS(658), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(660), + [anon_sym_set] = ACTIONS(660), + [sym__automatic_semicolon] = ACTIONS(629), + }, + [130] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(352), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [131] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(444), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16550,134 +17392,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(851), - [sym_this] = ACTIONS(853), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(853), - [sym_false] = ACTIONS(853), - [sym_null] = ACTIONS(853), - [sym_undefined] = ACTIONS(853), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [124] = { - [sym_import] = STATE(574), - [sym_parenthesized_expression] = STATE(314), - [sym__expression] = STATE(574), - [sym_yield_expression] = STATE(574), - [sym_object] = STATE(572), - [sym_array] = STATE(573), - [sym_jsx_element] = STATE(574), - [sym_jsx_fragment] = STATE(574), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(574), - [sym_class] = STATE(574), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(574), - [sym_arrow_function] = STATE(574), - [sym_call_expression] = STATE(574), - [sym_new_expression] = STATE(574), - [sym_await_expression] = STATE(574), - [sym_member_expression] = STATE(314), - [sym_subscript_expression] = STATE(314), - [sym_assignment_expression] = STATE(574), - [sym_augmented_assignment_expression] = STATE(574), - [sym_ternary_expression] = STATE(574), - [sym_binary_expression] = STATE(574), - [sym_unary_expression] = STATE(574), - [sym_update_expression] = STATE(574), - [sym_string] = STATE(574), - [sym_template_string] = STATE(574), - [sym_regex] = STATE(574), - [sym_meta_property] = STATE(574), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(779), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [132] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(335), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(635), - [sym_this] = ACTIONS(637), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(637), - [sym_false] = ACTIONS(637), - [sym_null] = ACTIONS(637), - [sym_undefined] = ACTIONS(637), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(781), - [anon_sym_get] = ACTIONS(781), - [anon_sym_set] = ACTIONS(781), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [125] = { - [sym_import] = STATE(421), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(421), - [sym_yield_expression] = STATE(421), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(421), - [sym_jsx_fragment] = STATE(421), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(421), - [sym_class] = STATE(421), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(421), - [sym_arrow_function] = STATE(421), - [sym_call_expression] = STATE(421), - [sym_new_expression] = STATE(421), - [sym_await_expression] = STATE(421), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(421), - [sym_augmented_assignment_expression] = STATE(421), - [sym_ternary_expression] = STATE(421), - [sym_binary_expression] = STATE(421), - [sym_unary_expression] = STATE(421), - [sym_update_expression] = STATE(421), - [sym_string] = STATE(421), - [sym_template_string] = STATE(421), - [sym_regex] = STATE(421), - [sym_meta_property] = STATE(421), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [133] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(443), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16692,134 +17536,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(857), - [sym_this] = ACTIONS(859), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(859), - [sym_false] = ACTIONS(859), - [sym_null] = ACTIONS(859), - [sym_undefined] = ACTIONS(859), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [126] = { - [sym_import] = STATE(388), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(388), - [sym_yield_expression] = STATE(388), - [sym_object] = STATE(566), - [sym_array] = STATE(568), - [sym_jsx_element] = STATE(388), - [sym_jsx_fragment] = STATE(388), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(388), - [sym_class] = STATE(388), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(388), - [sym_arrow_function] = STATE(388), - [sym_call_expression] = STATE(388), - [sym_new_expression] = STATE(388), - [sym_await_expression] = STATE(388), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(388), - [sym_augmented_assignment_expression] = STATE(388), - [sym_ternary_expression] = STATE(388), - [sym_binary_expression] = STATE(388), - [sym_unary_expression] = STATE(388), - [sym_update_expression] = STATE(388), - [sym_string] = STATE(388), - [sym_template_string] = STATE(388), - [sym_regex] = STATE(388), - [sym_meta_property] = STATE(388), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(861), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(863), - [sym_this] = ACTIONS(865), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(865), - [sym_false] = ACTIONS(865), - [sym_null] = ACTIONS(865), - [sym_undefined] = ACTIONS(865), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [127] = { - [sym_import] = STATE(371), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(371), - [sym_yield_expression] = STATE(371), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(371), - [sym_jsx_fragment] = STATE(371), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(371), - [sym_class] = STATE(371), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(371), - [sym_arrow_function] = STATE(371), - [sym_call_expression] = STATE(371), - [sym_new_expression] = STATE(371), - [sym_await_expression] = STATE(371), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(371), - [sym_augmented_assignment_expression] = STATE(371), - [sym_ternary_expression] = STATE(371), - [sym_binary_expression] = STATE(371), - [sym_unary_expression] = STATE(371), - [sym_update_expression] = STATE(371), - [sym_string] = STATE(371), - [sym_template_string] = STATE(371), - [sym_regex] = STATE(371), - [sym_meta_property] = STATE(371), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [134] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(394), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16834,63 +17608,352 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(867), - [sym_this] = ACTIONS(869), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(869), - [sym_false] = ACTIONS(869), - [sym_null] = ACTIONS(869), - [sym_undefined] = ACTIONS(869), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [128] = { - [sym_import] = STATE(556), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(556), - [sym_yield_expression] = STATE(556), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(556), - [sym_jsx_fragment] = STATE(556), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(556), - [sym_class] = STATE(556), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(556), - [sym_arrow_function] = STATE(556), - [sym_call_expression] = STATE(556), - [sym_new_expression] = STATE(556), - [sym_await_expression] = STATE(556), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(556), - [sym_augmented_assignment_expression] = STATE(556), - [sym_ternary_expression] = STATE(556), - [sym_binary_expression] = STATE(556), - [sym_unary_expression] = STATE(556), - [sym_update_expression] = STATE(556), - [sym_string] = STATE(556), - [sym_template_string] = STATE(556), - [sym_regex] = STATE(556), - [sym_meta_property] = STATE(556), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [135] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(339), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [136] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(411), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [137] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(332), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [138] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(356), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [139] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(428), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16905,63 +17968,352 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(871), - [sym_this] = ACTIONS(873), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(873), - [sym_false] = ACTIONS(873), - [sym_null] = ACTIONS(873), - [sym_undefined] = ACTIONS(873), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [129] = { - [sym_import] = STATE(484), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(484), - [sym_yield_expression] = STATE(484), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(484), - [sym_jsx_fragment] = STATE(484), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(484), - [sym_class] = STATE(484), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(484), - [sym_arrow_function] = STATE(484), - [sym_call_expression] = STATE(484), - [sym_new_expression] = STATE(484), - [sym_await_expression] = STATE(484), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(484), - [sym_augmented_assignment_expression] = STATE(484), - [sym_ternary_expression] = STATE(484), - [sym_binary_expression] = STATE(484), - [sym_unary_expression] = STATE(484), - [sym_update_expression] = STATE(484), - [sym_string] = STATE(484), - [sym_template_string] = STATE(484), - [sym_regex] = STATE(484), - [sym_meta_property] = STATE(484), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [140] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(358), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [141] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(411), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(589), + [sym_array] = STATE(592), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(662), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [142] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(345), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [143] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(359), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [144] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(421), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -16976,63 +18328,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(875), - [sym_this] = ACTIONS(877), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(877), - [sym_false] = ACTIONS(877), - [sym_null] = ACTIONS(877), - [sym_undefined] = ACTIONS(877), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [130] = { - [sym_import] = STATE(483), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(483), - [sym_yield_expression] = STATE(483), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(483), - [sym_jsx_fragment] = STATE(483), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(483), - [sym_class] = STATE(483), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(483), - [sym_arrow_function] = STATE(483), - [sym_call_expression] = STATE(483), - [sym_new_expression] = STATE(483), - [sym_await_expression] = STATE(483), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(483), - [sym_augmented_assignment_expression] = STATE(483), - [sym_ternary_expression] = STATE(483), - [sym_binary_expression] = STATE(483), - [sym_unary_expression] = STATE(483), - [sym_update_expression] = STATE(483), - [sym_string] = STATE(483), - [sym_template_string] = STATE(483), - [sym_regex] = STATE(483), - [sym_meta_property] = STATE(483), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [145] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(420), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -17047,63 +18400,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(879), - [sym_this] = ACTIONS(881), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(881), - [sym_false] = ACTIONS(881), - [sym_null] = ACTIONS(881), - [sym_undefined] = ACTIONS(881), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [131] = { - [sym_import] = STATE(438), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(438), - [sym_yield_expression] = STATE(438), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(438), - [sym_jsx_fragment] = STATE(438), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(438), - [sym_class] = STATE(438), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(438), - [sym_arrow_function] = STATE(438), - [sym_call_expression] = STATE(438), - [sym_new_expression] = STATE(438), - [sym_await_expression] = STATE(438), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(438), - [sym_augmented_assignment_expression] = STATE(438), - [sym_ternary_expression] = STATE(438), - [sym_binary_expression] = STATE(438), - [sym_unary_expression] = STATE(438), - [sym_update_expression] = STATE(438), - [sym_string] = STATE(438), - [sym_template_string] = STATE(438), - [sym_regex] = STATE(438), - [sym_meta_property] = STATE(438), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [146] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(360), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [147] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(419), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -17118,63 +18544,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(883), - [sym_this] = ACTIONS(885), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(885), - [sym_false] = ACTIONS(885), - [sym_null] = ACTIONS(885), - [sym_undefined] = ACTIONS(885), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [132] = { - [sym_import] = STATE(458), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(458), - [sym_yield_expression] = STATE(458), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(458), - [sym_jsx_fragment] = STATE(458), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(458), - [sym_class] = STATE(458), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(458), - [sym_arrow_function] = STATE(458), - [sym_call_expression] = STATE(458), - [sym_new_expression] = STATE(458), - [sym_await_expression] = STATE(458), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(458), - [sym_augmented_assignment_expression] = STATE(458), - [sym_ternary_expression] = STATE(458), - [sym_binary_expression] = STATE(458), - [sym_unary_expression] = STATE(458), - [sym_update_expression] = STATE(458), - [sym_string] = STATE(458), - [sym_template_string] = STATE(458), - [sym_regex] = STATE(458), - [sym_meta_property] = STATE(458), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [148] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(587), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [149] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(418), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -17189,276 +18688,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(887), - [sym_this] = ACTIONS(889), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(889), - [sym_false] = ACTIONS(889), - [sym_null] = ACTIONS(889), - [sym_undefined] = ACTIONS(889), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [133] = { - [sym_import] = STATE(388), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(388), - [sym_yield_expression] = STATE(388), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(388), - [sym_jsx_fragment] = STATE(388), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(388), - [sym_class] = STATE(388), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(388), - [sym_arrow_function] = STATE(388), - [sym_call_expression] = STATE(388), - [sym_new_expression] = STATE(388), - [sym_await_expression] = STATE(388), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(388), - [sym_augmented_assignment_expression] = STATE(388), - [sym_ternary_expression] = STATE(388), - [sym_binary_expression] = STATE(388), - [sym_unary_expression] = STATE(388), - [sym_update_expression] = STATE(388), - [sym_string] = STATE(388), - [sym_template_string] = STATE(388), - [sym_regex] = STATE(388), - [sym_meta_property] = STATE(388), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(863), - [sym_this] = ACTIONS(865), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(865), - [sym_false] = ACTIONS(865), - [sym_null] = ACTIONS(865), - [sym_undefined] = ACTIONS(865), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [134] = { - [sym_import] = STATE(320), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(320), - [sym_yield_expression] = STATE(320), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(320), - [sym_jsx_fragment] = STATE(320), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(320), - [sym_class] = STATE(320), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(320), - [sym_arrow_function] = STATE(320), - [sym_call_expression] = STATE(320), - [sym_new_expression] = STATE(320), - [sym_await_expression] = STATE(320), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(320), - [sym_augmented_assignment_expression] = STATE(320), - [sym_ternary_expression] = STATE(320), - [sym_binary_expression] = STATE(320), - [sym_unary_expression] = STATE(320), - [sym_update_expression] = STATE(320), - [sym_string] = STATE(320), - [sym_template_string] = STATE(320), - [sym_regex] = STATE(320), - [sym_meta_property] = STATE(320), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(891), - [sym_this] = ACTIONS(893), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(893), - [sym_false] = ACTIONS(893), - [sym_null] = ACTIONS(893), - [sym_undefined] = ACTIONS(893), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [135] = { - [sym_import] = STATE(505), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(505), - [sym_yield_expression] = STATE(505), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(505), - [sym_jsx_fragment] = STATE(505), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(505), - [sym_class] = STATE(505), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(505), - [sym_arrow_function] = STATE(505), - [sym_call_expression] = STATE(505), - [sym_new_expression] = STATE(505), - [sym_await_expression] = STATE(505), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(505), - [sym_augmented_assignment_expression] = STATE(505), - [sym_ternary_expression] = STATE(505), - [sym_binary_expression] = STATE(505), - [sym_unary_expression] = STATE(505), - [sym_update_expression] = STATE(505), - [sym_string] = STATE(505), - [sym_template_string] = STATE(505), - [sym_regex] = STATE(505), - [sym_meta_property] = STATE(505), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(895), - [sym_this] = ACTIONS(897), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(897), - [sym_false] = ACTIONS(897), - [sym_null] = ACTIONS(897), - [sym_undefined] = ACTIONS(897), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [136] = { - [sym_import] = STATE(449), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(449), - [sym_yield_expression] = STATE(449), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(449), - [sym_jsx_fragment] = STATE(449), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(449), - [sym_class] = STATE(449), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(449), - [sym_arrow_function] = STATE(449), - [sym_call_expression] = STATE(449), - [sym_new_expression] = STATE(449), - [sym_await_expression] = STATE(449), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(449), - [sym_augmented_assignment_expression] = STATE(449), - [sym_ternary_expression] = STATE(449), - [sym_binary_expression] = STATE(449), - [sym_unary_expression] = STATE(449), - [sym_update_expression] = STATE(449), - [sym_string] = STATE(449), - [sym_template_string] = STATE(449), - [sym_regex] = STATE(449), - [sym_meta_property] = STATE(449), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [150] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(408), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -17473,205 +18760,208 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(899), - [sym_this] = ACTIONS(901), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(901), - [sym_false] = ACTIONS(901), - [sym_null] = ACTIONS(901), - [sym_undefined] = ACTIONS(901), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [137] = { - [sym_import] = STATE(316), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(316), - [sym_yield_expression] = STATE(316), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(316), - [sym_jsx_fragment] = STATE(316), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(316), - [sym_class] = STATE(316), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(316), - [sym_arrow_function] = STATE(316), - [sym_call_expression] = STATE(316), - [sym_new_expression] = STATE(316), - [sym_await_expression] = STATE(316), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(316), - [sym_augmented_assignment_expression] = STATE(316), - [sym_ternary_expression] = STATE(316), - [sym_binary_expression] = STATE(316), - [sym_unary_expression] = STATE(316), - [sym_update_expression] = STATE(316), - [sym_string] = STATE(316), - [sym_template_string] = STATE(316), - [sym_regex] = STATE(316), - [sym_meta_property] = STATE(316), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [151] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(361), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(903), - [sym_this] = ACTIONS(905), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(905), - [sym_false] = ACTIONS(905), - [sym_null] = ACTIONS(905), - [sym_undefined] = ACTIONS(905), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [138] = { - [sym_import] = STATE(337), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(337), - [sym_yield_expression] = STATE(337), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(337), - [sym_jsx_fragment] = STATE(337), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(337), - [sym_class] = STATE(337), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(337), - [sym_arrow_function] = STATE(337), - [sym_call_expression] = STATE(337), - [sym_new_expression] = STATE(337), - [sym_await_expression] = STATE(337), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(337), - [sym_augmented_assignment_expression] = STATE(337), - [sym_ternary_expression] = STATE(337), - [sym_binary_expression] = STATE(337), - [sym_unary_expression] = STATE(337), - [sym_update_expression] = STATE(337), - [sym_string] = STATE(337), - [sym_template_string] = STATE(337), - [sym_regex] = STATE(337), - [sym_meta_property] = STATE(337), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [152] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(362), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(907), - [sym_this] = ACTIONS(909), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(909), - [sym_false] = ACTIONS(909), - [sym_null] = ACTIONS(909), - [sym_undefined] = ACTIONS(909), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [139] = { - [sym_import] = STATE(456), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(456), - [sym_yield_expression] = STATE(456), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(456), - [sym_jsx_fragment] = STATE(456), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(456), - [sym_class] = STATE(456), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(456), - [sym_arrow_function] = STATE(456), - [sym_call_expression] = STATE(456), - [sym_new_expression] = STATE(456), - [sym_await_expression] = STATE(456), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(456), - [sym_augmented_assignment_expression] = STATE(456), - [sym_ternary_expression] = STATE(456), - [sym_binary_expression] = STATE(456), - [sym_unary_expression] = STATE(456), - [sym_update_expression] = STATE(456), - [sym_string] = STATE(456), - [sym_template_string] = STATE(456), - [sym_regex] = STATE(456), - [sym_meta_property] = STATE(456), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [153] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(414), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -17686,63 +18976,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(911), - [sym_this] = ACTIONS(913), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(913), - [sym_false] = ACTIONS(913), - [sym_null] = ACTIONS(913), - [sym_undefined] = ACTIONS(913), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [140] = { - [sym_import] = STATE(453), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(453), - [sym_yield_expression] = STATE(453), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(453), - [sym_jsx_fragment] = STATE(453), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(453), - [sym_class] = STATE(453), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(453), - [sym_arrow_function] = STATE(453), - [sym_call_expression] = STATE(453), - [sym_new_expression] = STATE(453), - [sym_await_expression] = STATE(453), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(453), - [sym_augmented_assignment_expression] = STATE(453), - [sym_ternary_expression] = STATE(453), - [sym_binary_expression] = STATE(453), - [sym_unary_expression] = STATE(453), - [sym_update_expression] = STATE(453), - [sym_string] = STATE(453), - [sym_template_string] = STATE(453), - [sym_regex] = STATE(453), - [sym_meta_property] = STATE(453), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [154] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(380), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -17757,63 +19048,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(915), - [sym_this] = ACTIONS(917), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(917), - [sym_false] = ACTIONS(917), - [sym_null] = ACTIONS(917), - [sym_undefined] = ACTIONS(917), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [141] = { - [sym_import] = STATE(451), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(451), - [sym_yield_expression] = STATE(451), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(451), - [sym_jsx_fragment] = STATE(451), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(451), - [sym_class] = STATE(451), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(451), - [sym_arrow_function] = STATE(451), - [sym_call_expression] = STATE(451), - [sym_new_expression] = STATE(451), - [sym_await_expression] = STATE(451), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(451), - [sym_augmented_assignment_expression] = STATE(451), - [sym_ternary_expression] = STATE(451), - [sym_binary_expression] = STATE(451), - [sym_unary_expression] = STATE(451), - [sym_update_expression] = STATE(451), - [sym_string] = STATE(451), - [sym_template_string] = STATE(451), - [sym_regex] = STATE(451), - [sym_meta_property] = STATE(451), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [155] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(364), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [156] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(417), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -17828,63 +19192,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(919), - [sym_this] = ACTIONS(921), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(921), - [sym_false] = ACTIONS(921), - [sym_null] = ACTIONS(921), - [sym_undefined] = ACTIONS(921), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [142] = { - [sym_import] = STATE(390), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(390), - [sym_yield_expression] = STATE(390), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(390), - [sym_jsx_fragment] = STATE(390), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(390), - [sym_class] = STATE(390), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(390), - [sym_arrow_function] = STATE(390), - [sym_call_expression] = STATE(390), - [sym_new_expression] = STATE(390), - [sym_await_expression] = STATE(390), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(390), - [sym_augmented_assignment_expression] = STATE(390), - [sym_ternary_expression] = STATE(390), - [sym_binary_expression] = STATE(390), - [sym_unary_expression] = STATE(390), - [sym_update_expression] = STATE(390), - [sym_string] = STATE(390), - [sym_template_string] = STATE(390), - [sym_regex] = STATE(390), - [sym_meta_property] = STATE(390), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [157] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(416), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -17899,205 +19264,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(923), - [sym_this] = ACTIONS(925), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(925), - [sym_false] = ACTIONS(925), - [sym_null] = ACTIONS(925), - [sym_undefined] = ACTIONS(925), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [143] = { - [sym_import] = STATE(328), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(328), - [sym_yield_expression] = STATE(328), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(328), - [sym_jsx_fragment] = STATE(328), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(328), - [sym_class] = STATE(328), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(328), - [sym_arrow_function] = STATE(328), - [sym_call_expression] = STATE(328), - [sym_new_expression] = STATE(328), - [sym_await_expression] = STATE(328), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(328), - [sym_augmented_assignment_expression] = STATE(328), - [sym_ternary_expression] = STATE(328), - [sym_binary_expression] = STATE(328), - [sym_unary_expression] = STATE(328), - [sym_update_expression] = STATE(328), - [sym_string] = STATE(328), - [sym_template_string] = STATE(328), - [sym_regex] = STATE(328), - [sym_meta_property] = STATE(328), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(927), - [sym_this] = ACTIONS(929), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(929), - [sym_false] = ACTIONS(929), - [sym_null] = ACTIONS(929), - [sym_undefined] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [144] = { - [sym_import] = STATE(564), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(564), - [sym_yield_expression] = STATE(564), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(564), - [sym_jsx_fragment] = STATE(564), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(564), - [sym_class] = STATE(564), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(564), - [sym_arrow_function] = STATE(564), - [sym_call_expression] = STATE(564), - [sym_new_expression] = STATE(564), - [sym_await_expression] = STATE(564), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(564), - [sym_augmented_assignment_expression] = STATE(564), - [sym_ternary_expression] = STATE(564), - [sym_binary_expression] = STATE(564), - [sym_unary_expression] = STATE(564), - [sym_update_expression] = STATE(564), - [sym_string] = STATE(564), - [sym_template_string] = STATE(564), - [sym_regex] = STATE(564), - [sym_meta_property] = STATE(564), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(931), - [sym_this] = ACTIONS(933), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(933), - [sym_false] = ACTIONS(933), - [sym_null] = ACTIONS(933), - [sym_undefined] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [145] = { - [sym_import] = STATE(416), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(416), - [sym_yield_expression] = STATE(416), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(416), - [sym_jsx_fragment] = STATE(416), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(416), - [sym_class] = STATE(416), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(416), - [sym_arrow_function] = STATE(416), - [sym_call_expression] = STATE(416), - [sym_new_expression] = STATE(416), - [sym_await_expression] = STATE(416), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(416), - [sym_augmented_assignment_expression] = STATE(416), - [sym_ternary_expression] = STATE(416), - [sym_binary_expression] = STATE(416), - [sym_unary_expression] = STATE(416), - [sym_update_expression] = STATE(416), - [sym_string] = STATE(416), - [sym_template_string] = STATE(416), - [sym_regex] = STATE(416), - [sym_meta_property] = STATE(416), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [158] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(415), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18112,63 +19336,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(935), - [sym_this] = ACTIONS(937), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(937), - [sym_false] = ACTIONS(937), - [sym_null] = ACTIONS(937), - [sym_undefined] = ACTIONS(937), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [146] = { - [sym_import] = STATE(394), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(394), - [sym_yield_expression] = STATE(394), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(394), - [sym_jsx_fragment] = STATE(394), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(394), - [sym_class] = STATE(394), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(394), - [sym_arrow_function] = STATE(394), - [sym_call_expression] = STATE(394), - [sym_new_expression] = STATE(394), - [sym_await_expression] = STATE(394), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(394), - [sym_augmented_assignment_expression] = STATE(394), - [sym_ternary_expression] = STATE(394), - [sym_binary_expression] = STATE(394), - [sym_unary_expression] = STATE(394), - [sym_update_expression] = STATE(394), - [sym_string] = STATE(394), - [sym_template_string] = STATE(394), - [sym_regex] = STATE(394), - [sym_meta_property] = STATE(394), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [159] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(365), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [160] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(476), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18183,63 +19480,352 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(939), - [sym_this] = ACTIONS(941), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(941), - [sym_false] = ACTIONS(941), - [sym_null] = ACTIONS(941), - [sym_undefined] = ACTIONS(941), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [147] = { - [sym_import] = STATE(415), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(415), - [sym_yield_expression] = STATE(415), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(415), - [sym_jsx_fragment] = STATE(415), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(415), - [sym_class] = STATE(415), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(415), - [sym_arrow_function] = STATE(415), - [sym_call_expression] = STATE(415), - [sym_new_expression] = STATE(415), - [sym_await_expression] = STATE(415), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(415), - [sym_augmented_assignment_expression] = STATE(415), - [sym_ternary_expression] = STATE(415), - [sym_binary_expression] = STATE(415), - [sym_unary_expression] = STATE(415), - [sym_update_expression] = STATE(415), - [sym_string] = STATE(415), - [sym_template_string] = STATE(415), - [sym_regex] = STATE(415), - [sym_meta_property] = STATE(415), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [161] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(588), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [162] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(479), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [163] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(478), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [164] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(473), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [165] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(413), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18254,205 +19840,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(943), - [sym_this] = ACTIONS(945), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(945), - [sym_false] = ACTIONS(945), - [sym_null] = ACTIONS(945), - [sym_undefined] = ACTIONS(945), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [148] = { - [sym_import] = STATE(565), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(565), - [sym_yield_expression] = STATE(565), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(565), - [sym_jsx_fragment] = STATE(565), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(565), - [sym_class] = STATE(565), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(565), - [sym_arrow_function] = STATE(565), - [sym_call_expression] = STATE(565), - [sym_new_expression] = STATE(565), - [sym_await_expression] = STATE(565), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(565), - [sym_augmented_assignment_expression] = STATE(565), - [sym_ternary_expression] = STATE(565), - [sym_binary_expression] = STATE(565), - [sym_unary_expression] = STATE(565), - [sym_update_expression] = STATE(565), - [sym_string] = STATE(565), - [sym_template_string] = STATE(565), - [sym_regex] = STATE(565), - [sym_meta_property] = STATE(565), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(947), - [sym_this] = ACTIONS(949), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(949), - [sym_false] = ACTIONS(949), - [sym_null] = ACTIONS(949), - [sym_undefined] = ACTIONS(949), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [149] = { - [sym_import] = STATE(336), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(336), - [sym_yield_expression] = STATE(336), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(336), - [sym_jsx_fragment] = STATE(336), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(336), - [sym_class] = STATE(336), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(336), - [sym_arrow_function] = STATE(336), - [sym_call_expression] = STATE(336), - [sym_new_expression] = STATE(336), - [sym_await_expression] = STATE(336), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(336), - [sym_augmented_assignment_expression] = STATE(336), - [sym_ternary_expression] = STATE(336), - [sym_binary_expression] = STATE(336), - [sym_unary_expression] = STATE(336), - [sym_update_expression] = STATE(336), - [sym_string] = STATE(336), - [sym_template_string] = STATE(336), - [sym_regex] = STATE(336), - [sym_meta_property] = STATE(336), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [166] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(366), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(951), - [sym_this] = ACTIONS(953), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(953), - [sym_false] = ACTIONS(953), - [sym_null] = ACTIONS(953), - [sym_undefined] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [150] = { - [sym_import] = STATE(368), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(368), - [sym_yield_expression] = STATE(368), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(368), - [sym_jsx_fragment] = STATE(368), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(368), - [sym_class] = STATE(368), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(368), - [sym_arrow_function] = STATE(368), - [sym_call_expression] = STATE(368), - [sym_new_expression] = STATE(368), - [sym_await_expression] = STATE(368), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(368), - [sym_augmented_assignment_expression] = STATE(368), - [sym_ternary_expression] = STATE(368), - [sym_binary_expression] = STATE(368), - [sym_unary_expression] = STATE(368), - [sym_update_expression] = STATE(368), - [sym_string] = STATE(368), - [sym_template_string] = STATE(368), - [sym_regex] = STATE(368), - [sym_meta_property] = STATE(368), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [167] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(406), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18467,347 +19984,280 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(955), - [sym_this] = ACTIONS(957), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(957), - [sym_false] = ACTIONS(957), - [sym_null] = ACTIONS(957), - [sym_undefined] = ACTIONS(957), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [151] = { - [sym_import] = STATE(345), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(345), - [sym_yield_expression] = STATE(345), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(345), - [sym_jsx_fragment] = STATE(345), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(345), - [sym_class] = STATE(345), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(345), - [sym_arrow_function] = STATE(345), - [sym_call_expression] = STATE(345), - [sym_new_expression] = STATE(345), - [sym_await_expression] = STATE(345), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(345), - [sym_augmented_assignment_expression] = STATE(345), - [sym_ternary_expression] = STATE(345), - [sym_binary_expression] = STATE(345), - [sym_unary_expression] = STATE(345), - [sym_update_expression] = STATE(345), - [sym_string] = STATE(345), - [sym_template_string] = STATE(345), - [sym_regex] = STATE(345), - [sym_meta_property] = STATE(345), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(959), - [sym_this] = ACTIONS(961), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(961), - [sym_false] = ACTIONS(961), - [sym_null] = ACTIONS(961), - [sym_undefined] = ACTIONS(961), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [152] = { - [sym_import] = STATE(339), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(339), - [sym_yield_expression] = STATE(339), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(339), - [sym_jsx_fragment] = STATE(339), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(339), - [sym_class] = STATE(339), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(339), - [sym_arrow_function] = STATE(339), - [sym_call_expression] = STATE(339), - [sym_new_expression] = STATE(339), - [sym_await_expression] = STATE(339), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(339), - [sym_augmented_assignment_expression] = STATE(339), - [sym_ternary_expression] = STATE(339), - [sym_binary_expression] = STATE(339), - [sym_unary_expression] = STATE(339), - [sym_update_expression] = STATE(339), - [sym_string] = STATE(339), - [sym_template_string] = STATE(339), - [sym_regex] = STATE(339), - [sym_meta_property] = STATE(339), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [168] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(331), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(963), - [sym_this] = ACTIONS(965), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [sym_null] = ACTIONS(965), - [sym_undefined] = ACTIONS(965), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [153] = { - [sym_import] = STATE(343), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(343), - [sym_yield_expression] = STATE(343), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(343), - [sym_jsx_fragment] = STATE(343), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(343), - [sym_class] = STATE(343), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(343), - [sym_arrow_function] = STATE(343), - [sym_call_expression] = STATE(343), - [sym_new_expression] = STATE(343), - [sym_await_expression] = STATE(343), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(343), - [sym_augmented_assignment_expression] = STATE(343), - [sym_ternary_expression] = STATE(343), - [sym_binary_expression] = STATE(343), - [sym_unary_expression] = STATE(343), - [sym_update_expression] = STATE(343), - [sym_string] = STATE(343), - [sym_template_string] = STATE(343), - [sym_regex] = STATE(343), - [sym_meta_property] = STATE(343), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [169] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(326), + [sym__expression] = STATE(596), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(593), + [sym_array] = STATE(594), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(326), + [sym_subscript_expression] = STATE(326), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(664), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(606), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(967), - [sym_this] = ACTIONS(969), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(969), - [sym_false] = ACTIONS(969), - [sym_null] = ACTIONS(969), - [sym_undefined] = ACTIONS(969), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(608), + [anon_sym_get] = ACTIONS(608), + [anon_sym_set] = ACTIONS(608), }, - [154] = { - [sym_import] = STATE(342), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(342), - [sym_yield_expression] = STATE(342), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(342), - [sym_jsx_fragment] = STATE(342), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(342), - [sym_class] = STATE(342), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(342), - [sym_arrow_function] = STATE(342), - [sym_call_expression] = STATE(342), - [sym_new_expression] = STATE(342), - [sym_await_expression] = STATE(342), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(342), - [sym_augmented_assignment_expression] = STATE(342), - [sym_ternary_expression] = STATE(342), - [sym_binary_expression] = STATE(342), - [sym_unary_expression] = STATE(342), - [sym_update_expression] = STATE(342), - [sym_string] = STATE(342), - [sym_template_string] = STATE(342), - [sym_regex] = STATE(342), - [sym_meta_property] = STATE(342), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [170] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(354), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(971), - [sym_this] = ACTIONS(973), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(973), - [sym_false] = ACTIONS(973), - [sym_null] = ACTIONS(973), - [sym_undefined] = ACTIONS(973), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [155] = { - [sym_import] = STATE(374), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(374), - [sym_yield_expression] = STATE(374), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(374), - [sym_jsx_fragment] = STATE(374), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(374), - [sym_class] = STATE(374), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(374), - [sym_arrow_function] = STATE(374), - [sym_call_expression] = STATE(374), - [sym_new_expression] = STATE(374), - [sym_await_expression] = STATE(374), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(374), - [sym_augmented_assignment_expression] = STATE(374), - [sym_ternary_expression] = STATE(374), - [sym_binary_expression] = STATE(374), - [sym_unary_expression] = STATE(374), - [sym_update_expression] = STATE(374), - [sym_string] = STATE(374), - [sym_template_string] = STATE(374), - [sym_regex] = STATE(374), - [sym_meta_property] = STATE(374), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [171] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(582), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18822,134 +20272,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(975), - [sym_this] = ACTIONS(977), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(977), - [sym_false] = ACTIONS(977), - [sym_null] = ACTIONS(977), - [sym_undefined] = ACTIONS(977), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [156] = { - [sym_import] = STATE(500), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(500), - [sym_yield_expression] = STATE(500), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(500), - [sym_jsx_fragment] = STATE(500), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(500), - [sym_class] = STATE(500), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(500), - [sym_arrow_function] = STATE(500), - [sym_call_expression] = STATE(500), - [sym_new_expression] = STATE(500), - [sym_await_expression] = STATE(500), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(500), - [sym_augmented_assignment_expression] = STATE(500), - [sym_ternary_expression] = STATE(500), - [sym_binary_expression] = STATE(500), - [sym_unary_expression] = STATE(500), - [sym_update_expression] = STATE(500), - [sym_string] = STATE(500), - [sym_template_string] = STATE(500), - [sym_regex] = STATE(500), - [sym_meta_property] = STATE(500), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [172] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(586), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(979), - [sym_this] = ACTIONS(981), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(981), - [sym_false] = ACTIONS(981), - [sym_null] = ACTIONS(981), - [sym_undefined] = ACTIONS(981), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [157] = { - [sym_import] = STATE(405), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(405), - [sym_yield_expression] = STATE(405), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(405), - [sym_jsx_fragment] = STATE(405), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(405), - [sym_class] = STATE(405), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(405), - [sym_arrow_function] = STATE(405), - [sym_call_expression] = STATE(405), - [sym_new_expression] = STATE(405), - [sym_await_expression] = STATE(405), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(405), - [sym_augmented_assignment_expression] = STATE(405), - [sym_ternary_expression] = STATE(405), - [sym_binary_expression] = STATE(405), - [sym_unary_expression] = STATE(405), - [sym_update_expression] = STATE(405), - [sym_string] = STATE(405), - [sym_template_string] = STATE(405), - [sym_regex] = STATE(405), - [sym_meta_property] = STATE(405), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [173] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(576), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -18964,347 +20416,280 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(983), - [sym_this] = ACTIONS(985), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(985), - [sym_false] = ACTIONS(985), - [sym_null] = ACTIONS(985), - [sym_undefined] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [158] = { - [sym_import] = STATE(499), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(499), - [sym_yield_expression] = STATE(499), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(499), - [sym_jsx_fragment] = STATE(499), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(499), - [sym_class] = STATE(499), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(499), - [sym_arrow_function] = STATE(499), - [sym_call_expression] = STATE(499), - [sym_new_expression] = STATE(499), - [sym_await_expression] = STATE(499), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(499), - [sym_augmented_assignment_expression] = STATE(499), - [sym_ternary_expression] = STATE(499), - [sym_binary_expression] = STATE(499), - [sym_unary_expression] = STATE(499), - [sym_update_expression] = STATE(499), - [sym_string] = STATE(499), - [sym_template_string] = STATE(499), - [sym_regex] = STATE(499), - [sym_meta_property] = STATE(499), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(987), - [sym_this] = ACTIONS(989), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(989), - [sym_false] = ACTIONS(989), - [sym_null] = ACTIONS(989), - [sym_undefined] = ACTIONS(989), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [159] = { - [sym_import] = STATE(498), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(498), - [sym_yield_expression] = STATE(498), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(498), - [sym_jsx_fragment] = STATE(498), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(498), - [sym_class] = STATE(498), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(498), - [sym_arrow_function] = STATE(498), - [sym_call_expression] = STATE(498), - [sym_new_expression] = STATE(498), - [sym_await_expression] = STATE(498), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(498), - [sym_augmented_assignment_expression] = STATE(498), - [sym_ternary_expression] = STATE(498), - [sym_binary_expression] = STATE(498), - [sym_unary_expression] = STATE(498), - [sym_update_expression] = STATE(498), - [sym_string] = STATE(498), - [sym_template_string] = STATE(498), - [sym_regex] = STATE(498), - [sym_meta_property] = STATE(498), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [174] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(534), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(991), - [sym_this] = ACTIONS(993), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(993), - [sym_false] = ACTIONS(993), - [sym_null] = ACTIONS(993), - [sym_undefined] = ACTIONS(993), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [160] = { - [sym_import] = STATE(497), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(497), - [sym_yield_expression] = STATE(497), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(497), - [sym_jsx_fragment] = STATE(497), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(497), - [sym_class] = STATE(497), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(497), - [sym_arrow_function] = STATE(497), - [sym_call_expression] = STATE(497), - [sym_new_expression] = STATE(497), - [sym_await_expression] = STATE(497), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(497), - [sym_augmented_assignment_expression] = STATE(497), - [sym_ternary_expression] = STATE(497), - [sym_binary_expression] = STATE(497), - [sym_unary_expression] = STATE(497), - [sym_update_expression] = STATE(497), - [sym_string] = STATE(497), - [sym_template_string] = STATE(497), - [sym_regex] = STATE(497), - [sym_meta_property] = STATE(497), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [175] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(533), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(995), - [sym_this] = ACTIONS(997), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(997), - [sym_false] = ACTIONS(997), - [sym_null] = ACTIONS(997), - [sym_undefined] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [161] = { - [sym_import] = STATE(321), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(321), - [sym_yield_expression] = STATE(321), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(321), - [sym_jsx_fragment] = STATE(321), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(321), - [sym_class] = STATE(321), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(321), - [sym_arrow_function] = STATE(321), - [sym_call_expression] = STATE(321), - [sym_new_expression] = STATE(321), - [sym_await_expression] = STATE(321), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(321), - [sym_augmented_assignment_expression] = STATE(321), - [sym_ternary_expression] = STATE(321), - [sym_binary_expression] = STATE(321), - [sym_unary_expression] = STATE(321), - [sym_update_expression] = STATE(321), - [sym_string] = STATE(321), - [sym_template_string] = STATE(321), - [sym_regex] = STATE(321), - [sym_meta_property] = STATE(321), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [176] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(527), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(999), - [sym_this] = ACTIONS(1001), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(1001), - [sym_false] = ACTIONS(1001), - [sym_null] = ACTIONS(1001), - [sym_undefined] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), }, - [162] = { - [sym_import] = STATE(408), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(408), - [sym_yield_expression] = STATE(408), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(408), - [sym_jsx_fragment] = STATE(408), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(408), - [sym_class] = STATE(408), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(408), - [sym_arrow_function] = STATE(408), - [sym_call_expression] = STATE(408), - [sym_new_expression] = STATE(408), - [sym_await_expression] = STATE(408), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(408), - [sym_augmented_assignment_expression] = STATE(408), - [sym_ternary_expression] = STATE(408), - [sym_binary_expression] = STATE(408), - [sym_unary_expression] = STATE(408), - [sym_update_expression] = STATE(408), - [sym_string] = STATE(408), - [sym_template_string] = STATE(408), - [sym_regex] = STATE(408), - [sym_meta_property] = STATE(408), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [177] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(456), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -19319,134 +20704,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(1003), - [sym_this] = ACTIONS(1005), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(1005), - [sym_false] = ACTIONS(1005), - [sym_null] = ACTIONS(1005), - [sym_undefined] = ACTIONS(1005), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [163] = { - [sym_import] = STATE(569), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(569), - [sym_yield_expression] = STATE(569), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(569), - [sym_jsx_fragment] = STATE(569), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(569), - [sym_class] = STATE(569), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(569), - [sym_arrow_function] = STATE(569), - [sym_call_expression] = STATE(569), - [sym_new_expression] = STATE(569), - [sym_await_expression] = STATE(569), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(569), - [sym_augmented_assignment_expression] = STATE(569), - [sym_ternary_expression] = STATE(569), - [sym_binary_expression] = STATE(569), - [sym_unary_expression] = STATE(569), - [sym_update_expression] = STATE(569), - [sym_string] = STATE(569), - [sym_template_string] = STATE(569), - [sym_regex] = STATE(569), - [sym_meta_property] = STATE(569), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [178] = { + [sym_string] = STATE(954), + [sym_formal_parameters] = STATE(1110), + [sym__property_name] = STATE(954), + [sym_computed_property_name] = STATE(954), + [aux_sym_object_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(624), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_in] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_COLON] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_DOT] = ACTIONS(646), + [anon_sym_async] = ACTIONS(648), + [anon_sym_function] = ACTIONS(650), + [anon_sym_EQ_GT] = ACTIONS(652), + [anon_sym_QMARK_DOT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_STAR_STAR_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(656), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(656), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(637), + [anon_sym_GT_GT_GT] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(629), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_QMARK_QMARK] = ACTIONS(637), + [anon_sym_instanceof] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(1007), - [sym_this] = ACTIONS(1009), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(1009), - [sym_false] = ACTIONS(1009), - [sym_null] = ACTIONS(1009), - [sym_undefined] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), + [anon_sym_BQUOTE] = ACTIONS(629), + [sym_number] = ACTIONS(658), + [anon_sym_static] = ACTIONS(648), + [anon_sym_get] = ACTIONS(660), + [anon_sym_set] = ACTIONS(660), + [sym__automatic_semicolon] = ACTIONS(629), }, - [164] = { - [sym_import] = STATE(410), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(410), - [sym_yield_expression] = STATE(410), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(410), - [sym_jsx_fragment] = STATE(410), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(410), - [sym_class] = STATE(410), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(410), - [sym_arrow_function] = STATE(410), - [sym_call_expression] = STATE(410), - [sym_new_expression] = STATE(410), - [sym_await_expression] = STATE(410), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(410), - [sym_augmented_assignment_expression] = STATE(410), - [sym_ternary_expression] = STATE(410), - [sym_binary_expression] = STATE(410), - [sym_unary_expression] = STATE(410), - [sym_update_expression] = STATE(410), - [sym_string] = STATE(410), - [sym_template_string] = STATE(410), - [sym_regex] = STATE(410), - [sym_meta_property] = STATE(410), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [179] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(494), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -19461,63 +20848,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(1011), - [sym_this] = ACTIONS(1013), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(1013), - [sym_false] = ACTIONS(1013), - [sym_null] = ACTIONS(1013), - [sym_undefined] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), }, - [165] = { - [sym_import] = STATE(411), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(411), - [sym_yield_expression] = STATE(411), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(411), - [sym_jsx_fragment] = STATE(411), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(411), - [sym_class] = STATE(411), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(411), - [sym_arrow_function] = STATE(411), - [sym_call_expression] = STATE(411), - [sym_new_expression] = STATE(411), - [sym_await_expression] = STATE(411), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(411), - [sym_augmented_assignment_expression] = STATE(411), - [sym_ternary_expression] = STATE(411), - [sym_binary_expression] = STATE(411), - [sym_unary_expression] = STATE(411), - [sym_update_expression] = STATE(411), - [sym_string] = STATE(411), - [sym_template_string] = STATE(411), - [sym_regex] = STATE(411), - [sym_meta_property] = STATE(411), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [180] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(591), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [181] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(495), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -19532,63 +20992,136 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(1015), - [sym_this] = ACTIONS(1017), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(1017), - [sym_false] = ACTIONS(1017), - [sym_null] = ACTIONS(1017), - [sym_undefined] = ACTIONS(1017), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [166] = { - [sym_import] = STATE(412), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(412), - [sym_yield_expression] = STATE(412), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(412), - [sym_jsx_fragment] = STATE(412), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(412), - [sym_class] = STATE(412), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(412), - [sym_arrow_function] = STATE(412), - [sym_call_expression] = STATE(412), - [sym_new_expression] = STATE(412), - [sym_await_expression] = STATE(412), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(412), - [sym_augmented_assignment_expression] = STATE(412), - [sym_ternary_expression] = STATE(412), - [sym_binary_expression] = STATE(412), - [sym_unary_expression] = STATE(412), - [sym_update_expression] = STATE(412), - [sym_string] = STATE(412), - [sym_template_string] = STATE(412), - [sym_regex] = STATE(412), - [sym_meta_property] = STATE(412), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [182] = { + [sym_import] = STATE(385), + [sym_parenthesized_expression] = STATE(288), + [sym__expression] = STATE(585), + [sym_yield_expression] = STATE(386), + [sym_object] = STATE(373), + [sym_array] = STATE(374), + [sym_jsx_element] = STATE(386), + [sym_jsx_fragment] = STATE(386), + [sym_jsx_opening_element] = STATE(686), + [sym_jsx_self_closing_element] = STATE(386), + [sym_class] = STATE(385), + [sym_function] = STATE(385), + [sym_generator_function] = STATE(385), + [sym_arrow_function] = STATE(385), + [sym_call_expression] = STATE(385), + [sym_new_expression] = STATE(386), + [sym_await_expression] = STATE(386), + [sym_member_expression] = STATE(288), + [sym_subscript_expression] = STATE(288), + [sym_assignment_expression] = STATE(386), + [sym__augmented_assignment_lhs] = STATE(631), + [sym_augmented_assignment_expression] = STATE(386), + [sym_ternary_expression] = STATE(386), + [sym_binary_expression] = STATE(386), + [sym_unary_expression] = STATE(386), + [sym_update_expression] = STATE(386), + [sym_string] = STATE(385), + [sym_template_string] = STATE(385), + [sym_regex] = STATE(385), + [sym_meta_property] = STATE(385), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1162), + [aux_sym_export_statement_repeat1] = STATE(790), + [sym_identifier] = ACTIONS(352), + [anon_sym_LBRACE] = ACTIONS(356), + [anon_sym_import] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(362), + [anon_sym_await] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_class] = ACTIONS(376), + [anon_sym_async] = ACTIONS(378), + [anon_sym_function] = ACTIONS(380), + [anon_sym_new] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(384), + [anon_sym_BANG] = ACTIONS(388), + [anon_sym_TILDE] = ACTIONS(388), + [anon_sym_typeof] = ACTIONS(390), + [anon_sym_void] = ACTIONS(390), + [anon_sym_delete] = ACTIONS(390), + [anon_sym_PLUS_PLUS] = ACTIONS(392), + [anon_sym_DASH_DASH] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(398), + [sym_number] = ACTIONS(400), + [sym_this] = ACTIONS(402), + [sym_super] = ACTIONS(402), + [sym_true] = ACTIONS(402), + [sym_false] = ACTIONS(402), + [sym_null] = ACTIONS(402), + [sym_undefined] = ACTIONS(402), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(404), + [anon_sym_get] = ACTIONS(404), + [anon_sym_set] = ACTIONS(404), + }, + [183] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(464), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -19603,63 +21136,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(1019), - [sym_this] = ACTIONS(1021), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(1021), - [sym_false] = ACTIONS(1021), - [sym_null] = ACTIONS(1021), - [sym_undefined] = ACTIONS(1021), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [167] = { - [sym_import] = STATE(413), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(413), - [sym_yield_expression] = STATE(413), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(413), - [sym_jsx_fragment] = STATE(413), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(413), - [sym_class] = STATE(413), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(413), - [sym_arrow_function] = STATE(413), - [sym_call_expression] = STATE(413), - [sym_new_expression] = STATE(413), - [sym_await_expression] = STATE(413), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(413), - [sym_augmented_assignment_expression] = STATE(413), - [sym_ternary_expression] = STATE(413), - [sym_binary_expression] = STATE(413), - [sym_unary_expression] = STATE(413), - [sym_update_expression] = STATE(413), - [sym_string] = STATE(413), - [sym_template_string] = STATE(413), - [sym_regex] = STATE(413), - [sym_meta_property] = STATE(413), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [184] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(462), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -19674,631 +21208,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(1023), - [sym_this] = ACTIONS(1025), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(1025), - [sym_false] = ACTIONS(1025), - [sym_null] = ACTIONS(1025), - [sym_undefined] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [168] = { - [sym_import] = STATE(353), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(353), - [sym_yield_expression] = STATE(353), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(353), - [sym_jsx_fragment] = STATE(353), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(353), - [sym_class] = STATE(353), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(353), - [sym_arrow_function] = STATE(353), - [sym_call_expression] = STATE(353), - [sym_new_expression] = STATE(353), - [sym_await_expression] = STATE(353), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(353), - [sym_augmented_assignment_expression] = STATE(353), - [sym_ternary_expression] = STATE(353), - [sym_binary_expression] = STATE(353), - [sym_unary_expression] = STATE(353), - [sym_update_expression] = STATE(353), - [sym_string] = STATE(353), - [sym_template_string] = STATE(353), - [sym_regex] = STATE(353), - [sym_meta_property] = STATE(353), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(1027), - [sym_this] = ACTIONS(1029), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [sym_null] = ACTIONS(1029), - [sym_undefined] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [169] = { - [sym_import] = STATE(329), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(329), - [sym_yield_expression] = STATE(329), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(329), - [sym_jsx_fragment] = STATE(329), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(329), - [sym_class] = STATE(329), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(329), - [sym_arrow_function] = STATE(329), - [sym_call_expression] = STATE(329), - [sym_new_expression] = STATE(329), - [sym_await_expression] = STATE(329), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(329), - [sym_augmented_assignment_expression] = STATE(329), - [sym_ternary_expression] = STATE(329), - [sym_binary_expression] = STATE(329), - [sym_unary_expression] = STATE(329), - [sym_update_expression] = STATE(329), - [sym_string] = STATE(329), - [sym_template_string] = STATE(329), - [sym_regex] = STATE(329), - [sym_meta_property] = STATE(329), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(1031), - [sym_this] = ACTIONS(1033), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(1033), - [sym_false] = ACTIONS(1033), - [sym_null] = ACTIONS(1033), - [sym_undefined] = ACTIONS(1033), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [170] = { - [sym_import] = STATE(325), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(325), - [sym_yield_expression] = STATE(325), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(325), - [sym_jsx_fragment] = STATE(325), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(325), - [sym_class] = STATE(325), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(325), - [sym_arrow_function] = STATE(325), - [sym_call_expression] = STATE(325), - [sym_new_expression] = STATE(325), - [sym_await_expression] = STATE(325), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(325), - [sym_augmented_assignment_expression] = STATE(325), - [sym_ternary_expression] = STATE(325), - [sym_binary_expression] = STATE(325), - [sym_unary_expression] = STATE(325), - [sym_update_expression] = STATE(325), - [sym_string] = STATE(325), - [sym_template_string] = STATE(325), - [sym_regex] = STATE(325), - [sym_meta_property] = STATE(325), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(1035), - [sym_this] = ACTIONS(1037), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(1037), - [sym_false] = ACTIONS(1037), - [sym_null] = ACTIONS(1037), - [sym_undefined] = ACTIONS(1037), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [171] = { - [sym_import] = STATE(346), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(346), - [sym_yield_expression] = STATE(346), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(346), - [sym_jsx_fragment] = STATE(346), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(346), - [sym_class] = STATE(346), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(346), - [sym_arrow_function] = STATE(346), - [sym_call_expression] = STATE(346), - [sym_new_expression] = STATE(346), - [sym_await_expression] = STATE(346), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(346), - [sym_augmented_assignment_expression] = STATE(346), - [sym_ternary_expression] = STATE(346), - [sym_binary_expression] = STATE(346), - [sym_unary_expression] = STATE(346), - [sym_update_expression] = STATE(346), - [sym_string] = STATE(346), - [sym_template_string] = STATE(346), - [sym_regex] = STATE(346), - [sym_meta_property] = STATE(346), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(1039), - [sym_this] = ACTIONS(1041), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(1041), - [sym_false] = ACTIONS(1041), - [sym_null] = ACTIONS(1041), - [sym_undefined] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [172] = { - [sym_import] = STATE(330), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(330), - [sym_yield_expression] = STATE(330), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(330), - [sym_jsx_fragment] = STATE(330), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(330), - [sym_class] = STATE(330), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(330), - [sym_arrow_function] = STATE(330), - [sym_call_expression] = STATE(330), - [sym_new_expression] = STATE(330), - [sym_await_expression] = STATE(330), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(330), - [sym_augmented_assignment_expression] = STATE(330), - [sym_ternary_expression] = STATE(330), - [sym_binary_expression] = STATE(330), - [sym_unary_expression] = STATE(330), - [sym_update_expression] = STATE(330), - [sym_string] = STATE(330), - [sym_template_string] = STATE(330), - [sym_regex] = STATE(330), - [sym_meta_property] = STATE(330), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(1043), - [sym_this] = ACTIONS(1045), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(1045), - [sym_false] = ACTIONS(1045), - [sym_null] = ACTIONS(1045), - [sym_undefined] = ACTIONS(1045), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [173] = { - [sym_import] = STATE(319), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(319), - [sym_yield_expression] = STATE(319), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(319), - [sym_jsx_fragment] = STATE(319), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(319), - [sym_class] = STATE(319), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(319), - [sym_arrow_function] = STATE(319), - [sym_call_expression] = STATE(319), - [sym_new_expression] = STATE(319), - [sym_await_expression] = STATE(319), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(319), - [sym_augmented_assignment_expression] = STATE(319), - [sym_ternary_expression] = STATE(319), - [sym_binary_expression] = STATE(319), - [sym_unary_expression] = STATE(319), - [sym_update_expression] = STATE(319), - [sym_string] = STATE(319), - [sym_template_string] = STATE(319), - [sym_regex] = STATE(319), - [sym_meta_property] = STATE(319), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(1047), - [sym_this] = ACTIONS(1049), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(1049), - [sym_false] = ACTIONS(1049), - [sym_null] = ACTIONS(1049), - [sym_undefined] = ACTIONS(1049), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [174] = { - [sym_import] = STATE(352), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(352), - [sym_yield_expression] = STATE(352), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(352), - [sym_jsx_fragment] = STATE(352), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(352), - [sym_class] = STATE(352), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(352), - [sym_arrow_function] = STATE(352), - [sym_call_expression] = STATE(352), - [sym_new_expression] = STATE(352), - [sym_await_expression] = STATE(352), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(352), - [sym_augmented_assignment_expression] = STATE(352), - [sym_ternary_expression] = STATE(352), - [sym_binary_expression] = STATE(352), - [sym_unary_expression] = STATE(352), - [sym_update_expression] = STATE(352), - [sym_string] = STATE(352), - [sym_template_string] = STATE(352), - [sym_regex] = STATE(352), - [sym_meta_property] = STATE(352), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(1051), - [sym_this] = ACTIONS(1053), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(1053), - [sym_false] = ACTIONS(1053), - [sym_null] = ACTIONS(1053), - [sym_undefined] = ACTIONS(1053), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [175] = { - [sym_import] = STATE(351), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(351), - [sym_yield_expression] = STATE(351), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(351), - [sym_jsx_fragment] = STATE(351), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(351), - [sym_class] = STATE(351), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(351), - [sym_arrow_function] = STATE(351), - [sym_call_expression] = STATE(351), - [sym_new_expression] = STATE(351), - [sym_await_expression] = STATE(351), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(351), - [sym_augmented_assignment_expression] = STATE(351), - [sym_ternary_expression] = STATE(351), - [sym_binary_expression] = STATE(351), - [sym_unary_expression] = STATE(351), - [sym_update_expression] = STATE(351), - [sym_string] = STATE(351), - [sym_template_string] = STATE(351), - [sym_regex] = STATE(351), - [sym_meta_property] = STATE(351), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(1055), - [sym_this] = ACTIONS(1057), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(1057), - [sym_false] = ACTIONS(1057), - [sym_null] = ACTIONS(1057), - [sym_undefined] = ACTIONS(1057), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [176] = { - [sym_import] = STATE(414), - [sym_parenthesized_expression] = STATE(305), - [sym__expression] = STATE(414), - [sym_yield_expression] = STATE(414), - [sym_object] = STATE(480), - [sym_array] = STATE(482), - [sym_jsx_element] = STATE(414), - [sym_jsx_fragment] = STATE(414), - [sym_jsx_opening_element] = STATE(659), - [sym_jsx_self_closing_element] = STATE(414), - [sym_class] = STATE(414), - [sym_function] = STATE(403), - [sym_generator_function] = STATE(414), - [sym_arrow_function] = STATE(414), - [sym_call_expression] = STATE(414), - [sym_new_expression] = STATE(414), - [sym_await_expression] = STATE(414), - [sym_member_expression] = STATE(305), - [sym_subscript_expression] = STATE(305), - [sym_assignment_expression] = STATE(414), - [sym_augmented_assignment_expression] = STATE(414), - [sym_ternary_expression] = STATE(414), - [sym_binary_expression] = STATE(414), - [sym_unary_expression] = STATE(414), - [sym_update_expression] = STATE(414), - [sym_string] = STATE(414), - [sym_template_string] = STATE(414), - [sym_regex] = STATE(414), - [sym_meta_property] = STATE(414), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1110), - [aux_sym_export_statement_repeat1] = STATE(791), - [sym_identifier] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_import] = ACTIONS(419), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [185] = { + [sym_import] = STATE(581), + [sym_parenthesized_expression] = STATE(318), + [sym__expression] = STATE(459), + [sym_yield_expression] = STATE(573), + [sym_object] = STATE(503), + [sym_array] = STATE(502), + [sym_jsx_element] = STATE(573), + [sym_jsx_fragment] = STATE(573), + [sym_jsx_opening_element] = STATE(684), + [sym_jsx_self_closing_element] = STATE(573), + [sym_class] = STATE(581), + [sym_function] = STATE(581), + [sym_generator_function] = STATE(581), + [sym_arrow_function] = STATE(581), + [sym_call_expression] = STATE(581), + [sym_new_expression] = STATE(573), + [sym_await_expression] = STATE(573), + [sym_member_expression] = STATE(318), + [sym_subscript_expression] = STATE(318), + [sym_assignment_expression] = STATE(573), + [sym__augmented_assignment_lhs] = STATE(633), + [sym_augmented_assignment_expression] = STATE(573), + [sym_ternary_expression] = STATE(573), + [sym_binary_expression] = STATE(573), + [sym_unary_expression] = STATE(573), + [sym_update_expression] = STATE(573), + [sym_string] = STATE(581), + [sym_template_string] = STATE(581), + [sym_regex] = STATE(581), + [sym_meta_property] = STATE(581), + [sym_decorator] = STATE(651), + [sym_formal_parameters] = STATE(1115), + [aux_sym_export_statement_repeat1] = STATE(811), + [sym_identifier] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(410), + [anon_sym_import] = ACTIONS(412), [anon_sym_LPAREN] = ACTIONS(27), [anon_sym_await] = ACTIONS(29), [anon_sym_yield] = ACTIONS(51), [anon_sym_LBRACK] = ACTIONS(53), [anon_sym_LT] = ACTIONS(55), [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_class] = ACTIONS(423), - [anon_sym_async] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), + [anon_sym_class] = ACTIONS(416), + [anon_sym_async] = ACTIONS(418), + [anon_sym_function] = ACTIONS(420), [anon_sym_new] = ACTIONS(65), [anon_sym_PLUS] = ACTIONS(67), [anon_sym_DASH] = ACTIONS(67), @@ -20313,483 +21280,611 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(77), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(79), - [sym_number] = ACTIONS(1059), - [sym_this] = ACTIONS(1061), - [sym_super] = ACTIONS(85), - [sym_true] = ACTIONS(1061), - [sym_false] = ACTIONS(1061), - [sym_null] = ACTIONS(1061), - [sym_undefined] = ACTIONS(1061), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(435), - [anon_sym_get] = ACTIONS(435), - [anon_sym_set] = ACTIONS(435), - }, - [177] = { - [sym_import] = STATE(332), - [sym_parenthesized_expression] = STATE(284), - [sym__expression] = STATE(332), - [sym_yield_expression] = STATE(332), - [sym_object] = STATE(360), - [sym_array] = STATE(362), - [sym_jsx_element] = STATE(332), - [sym_jsx_fragment] = STATE(332), - [sym_jsx_opening_element] = STATE(671), - [sym_jsx_self_closing_element] = STATE(332), - [sym_class] = STATE(332), - [sym_function] = STATE(344), - [sym_generator_function] = STATE(332), - [sym_arrow_function] = STATE(332), - [sym_call_expression] = STATE(332), - [sym_new_expression] = STATE(332), - [sym_await_expression] = STATE(332), - [sym_member_expression] = STATE(284), - [sym_subscript_expression] = STATE(284), - [sym_assignment_expression] = STATE(332), - [sym_augmented_assignment_expression] = STATE(332), - [sym_ternary_expression] = STATE(332), - [sym_binary_expression] = STATE(332), - [sym_unary_expression] = STATE(332), - [sym_update_expression] = STATE(332), - [sym_string] = STATE(332), - [sym_template_string] = STATE(332), - [sym_regex] = STATE(332), - [sym_meta_property] = STATE(332), - [sym_decorator] = STATE(635), - [sym_formal_parameters] = STATE(1121), - [aux_sym_export_statement_repeat1] = STATE(807), - [sym_identifier] = ACTIONS(357), - [anon_sym_LBRACE] = ACTIONS(361), - [anon_sym_import] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(367), - [anon_sym_await] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(379), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(393), - [anon_sym_TILDE] = ACTIONS(393), - [anon_sym_typeof] = ACTIONS(395), - [anon_sym_void] = ACTIONS(395), - [anon_sym_delete] = ACTIONS(395), - [anon_sym_PLUS_PLUS] = ACTIONS(397), - [anon_sym_DASH_DASH] = ACTIONS(397), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [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(83), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_static] = ACTIONS(424), + [anon_sym_get] = ACTIONS(424), + [anon_sym_set] = ACTIONS(424), + }, + [186] = { + [sym_string] = STATE(954), + [sym__property_name] = STATE(954), + [sym_computed_property_name] = STATE(954), + [aux_sym_object_repeat1] = STATE(893), + [sym_identifier] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(670), + [anon_sym_in] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_COLON] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_DOT] = ACTIONS(646), + [anon_sym_async] = ACTIONS(673), + [anon_sym_EQ_GT] = ACTIONS(652), + [anon_sym_QMARK_DOT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_STAR_STAR_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(656), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(656), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(637), + [anon_sym_GT_GT_GT] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(629), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_QMARK_QMARK] = ACTIONS(637), + [anon_sym_instanceof] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(403), - [sym_number] = ACTIONS(1063), - [sym_this] = ACTIONS(1065), - [sym_super] = ACTIONS(409), - [sym_true] = ACTIONS(1065), - [sym_false] = ACTIONS(1065), - [sym_null] = ACTIONS(1065), - [sym_undefined] = ACTIONS(1065), - [anon_sym_AT] = ACTIONS(87), - [anon_sym_static] = ACTIONS(411), - [anon_sym_get] = ACTIONS(411), - [anon_sym_set] = ACTIONS(411), - }, - [178] = { - [sym_string] = STATE(1015), - [sym_formal_parameters] = STATE(1126), - [sym__property_name] = STATE(1015), - [sym_computed_property_name] = STATE(1015), - [aux_sym_object_repeat1] = STATE(838), - [sym_identifier] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1069), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1074), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_in] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1072), - [anon_sym_COLON] = ACTIONS(1082), - [anon_sym_EQ] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_SLASH] = ACTIONS(1080), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_async] = ACTIONS(1092), - [anon_sym_function] = ACTIONS(1094), - [anon_sym_EQ_GT] = ACTIONS(1096), - [anon_sym_PLUS_EQ] = ACTIONS(1098), - [anon_sym_DASH_EQ] = ACTIONS(1098), - [anon_sym_STAR_EQ] = ACTIONS(1098), - [anon_sym_SLASH_EQ] = ACTIONS(1098), - [anon_sym_PERCENT_EQ] = ACTIONS(1098), - [anon_sym_CARET_EQ] = ACTIONS(1098), - [anon_sym_AMP_EQ] = ACTIONS(1098), - [anon_sym_PIPE_EQ] = ACTIONS(1098), - [anon_sym_GT_GT_EQ] = ACTIONS(1098), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1098), - [anon_sym_LT_LT_EQ] = ACTIONS(1098), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1098), - [anon_sym_QMARK] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1072), - [anon_sym_PIPE_PIPE] = ACTIONS(1072), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_GT_GT_GT] = ACTIONS(1080), - [anon_sym_LT_LT] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_CARET] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PERCENT] = ACTIONS(1080), - [anon_sym_STAR_STAR] = ACTIONS(1080), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1080), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1080), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_QMARK_QMARK] = ACTIONS(1072), - [anon_sym_instanceof] = ACTIONS(1080), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_BQUOTE] = ACTIONS(629), + [sym_number] = ACTIONS(658), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(675), + [anon_sym_set] = ACTIONS(675), + [sym__automatic_semicolon] = ACTIONS(629), + }, + [187] = { + [sym_string] = STATE(954), + [sym__property_name] = STATE(954), + [sym_computed_property_name] = STATE(954), + [aux_sym_object_repeat1] = STATE(893), + [sym_identifier] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(631), + [anon_sym_LPAREN] = ACTIONS(670), + [anon_sym_in] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_COLON] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_DOT] = ACTIONS(646), + [anon_sym_async] = ACTIONS(668), + [anon_sym_EQ_GT] = ACTIONS(652), + [anon_sym_QMARK_DOT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_STAR_STAR_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(656), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(656), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(637), + [anon_sym_GT_GT_GT] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(629), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_QMARK_QMARK] = ACTIONS(637), + [anon_sym_instanceof] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1072), - [sym_number] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_get] = ACTIONS(1102), - [anon_sym_set] = ACTIONS(1102), - [sym__automatic_semicolon] = ACTIONS(1072), - }, - [179] = { - [sym_string] = STATE(1015), - [sym_formal_parameters] = STATE(1126), - [sym__property_name] = STATE(1015), - [sym_computed_property_name] = STATE(1015), - [aux_sym_object_repeat1] = STATE(870), - [sym_identifier] = ACTIONS(1067), - [anon_sym_STAR] = ACTIONS(1069), - [anon_sym_COMMA] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1104), - [anon_sym_LPAREN] = ACTIONS(1076), - [anon_sym_in] = ACTIONS(1080), - [anon_sym_SEMI] = ACTIONS(1072), - [anon_sym_COLON] = ACTIONS(1082), - [anon_sym_EQ] = ACTIONS(1085), - [anon_sym_LBRACK] = ACTIONS(1087), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_SLASH] = ACTIONS(1080), - [anon_sym_DOT] = ACTIONS(1090), - [anon_sym_async] = ACTIONS(1092), - [anon_sym_function] = ACTIONS(1094), - [anon_sym_EQ_GT] = ACTIONS(1096), - [anon_sym_PLUS_EQ] = ACTIONS(1098), - [anon_sym_DASH_EQ] = ACTIONS(1098), - [anon_sym_STAR_EQ] = ACTIONS(1098), - [anon_sym_SLASH_EQ] = ACTIONS(1098), - [anon_sym_PERCENT_EQ] = ACTIONS(1098), - [anon_sym_CARET_EQ] = ACTIONS(1098), - [anon_sym_AMP_EQ] = ACTIONS(1098), - [anon_sym_PIPE_EQ] = ACTIONS(1098), - [anon_sym_GT_GT_EQ] = ACTIONS(1098), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1098), - [anon_sym_LT_LT_EQ] = ACTIONS(1098), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1098), - [anon_sym_QMARK] = ACTIONS(1080), - [anon_sym_AMP_AMP] = ACTIONS(1072), - [anon_sym_PIPE_PIPE] = ACTIONS(1072), - [anon_sym_GT_GT] = ACTIONS(1080), - [anon_sym_GT_GT_GT] = ACTIONS(1080), - [anon_sym_LT_LT] = ACTIONS(1080), - [anon_sym_AMP] = ACTIONS(1080), - [anon_sym_CARET] = ACTIONS(1080), - [anon_sym_PIPE] = ACTIONS(1080), - [anon_sym_PLUS] = ACTIONS(1080), - [anon_sym_DASH] = ACTIONS(1080), - [anon_sym_PERCENT] = ACTIONS(1080), - [anon_sym_STAR_STAR] = ACTIONS(1080), - [anon_sym_LT_EQ] = ACTIONS(1072), - [anon_sym_EQ_EQ] = ACTIONS(1080), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1072), - [anon_sym_BANG_EQ] = ACTIONS(1080), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1072), - [anon_sym_GT_EQ] = ACTIONS(1072), - [anon_sym_QMARK_QMARK] = ACTIONS(1072), - [anon_sym_instanceof] = ACTIONS(1080), - [anon_sym_PLUS_PLUS] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), + [anon_sym_BQUOTE] = ACTIONS(629), + [sym_number] = ACTIONS(658), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [sym__automatic_semicolon] = ACTIONS(629), + }, + [188] = { + [sym_string] = STATE(954), + [sym__property_name] = STATE(954), + [sym_computed_property_name] = STATE(954), + [aux_sym_object_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(637), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(670), + [anon_sym_in] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_COLON] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_DOT] = ACTIONS(646), + [anon_sym_async] = ACTIONS(668), + [anon_sym_EQ_GT] = ACTIONS(652), + [anon_sym_QMARK_DOT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_STAR_STAR_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(656), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(656), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(637), + [anon_sym_GT_GT_GT] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(629), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_QMARK_QMARK] = ACTIONS(637), + [anon_sym_instanceof] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1072), - [sym_number] = ACTIONS(1100), - [anon_sym_static] = ACTIONS(1092), - [anon_sym_get] = ACTIONS(1102), - [anon_sym_set] = ACTIONS(1102), - [sym__automatic_semicolon] = ACTIONS(1072), - }, - [180] = { - [ts_builtin_sym_end] = ACTIONS(437), - [sym_identifier] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_STAR] = ACTIONS(437), - [anon_sym_default] = ACTIONS(439), - [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_COMMA] = ACTIONS(437), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_import] = ACTIONS(439), - [anon_sym_var] = ACTIONS(439), - [anon_sym_let] = ACTIONS(439), - [anon_sym_const] = ACTIONS(439), - [anon_sym_if] = ACTIONS(439), - [anon_sym_else] = ACTIONS(439), - [anon_sym_switch] = ACTIONS(439), - [anon_sym_for] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(437), - [anon_sym_await] = ACTIONS(439), - [anon_sym_while] = ACTIONS(439), - [anon_sym_do] = ACTIONS(439), - [anon_sym_try] = ACTIONS(439), - [anon_sym_with] = ACTIONS(439), - [anon_sym_break] = ACTIONS(439), - [anon_sym_continue] = ACTIONS(439), - [anon_sym_debugger] = ACTIONS(439), - [anon_sym_return] = ACTIONS(439), - [anon_sym_throw] = ACTIONS(439), - [anon_sym_SEMI] = ACTIONS(437), - [anon_sym_case] = ACTIONS(439), - [anon_sym_catch] = ACTIONS(439), - [anon_sym_finally] = ACTIONS(439), - [anon_sym_yield] = ACTIONS(439), - [anon_sym_LBRACK] = ACTIONS(437), - [anon_sym_LT] = ACTIONS(437), - [anon_sym_SLASH] = ACTIONS(439), - [anon_sym_class] = ACTIONS(439), - [anon_sym_async] = ACTIONS(439), - [anon_sym_function] = ACTIONS(439), - [anon_sym_new] = ACTIONS(439), - [anon_sym_PLUS] = ACTIONS(439), - [anon_sym_DASH] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(437), - [anon_sym_TILDE] = ACTIONS(437), - [anon_sym_typeof] = ACTIONS(439), - [anon_sym_void] = ACTIONS(439), - [anon_sym_delete] = ACTIONS(439), - [anon_sym_PLUS_PLUS] = ACTIONS(437), - [anon_sym_DASH_DASH] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(437), - [anon_sym_SQUOTE] = ACTIONS(437), + [anon_sym_BQUOTE] = ACTIONS(629), + [sym_number] = ACTIONS(658), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(668), + [anon_sym_set] = ACTIONS(668), + [sym__automatic_semicolon] = ACTIONS(629), + }, + [189] = { + [sym_string] = STATE(954), + [sym__property_name] = STATE(954), + [sym_computed_property_name] = STATE(954), + [aux_sym_object_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_LPAREN] = ACTIONS(670), + [anon_sym_in] = ACTIONS(637), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_COLON] = ACTIONS(639), + [anon_sym_EQ] = ACTIONS(642), + [anon_sym_LBRACK] = ACTIONS(644), + [anon_sym_LT] = ACTIONS(637), + [anon_sym_GT] = ACTIONS(637), + [anon_sym_SLASH] = ACTIONS(637), + [anon_sym_DOT] = ACTIONS(646), + [anon_sym_async] = ACTIONS(673), + [anon_sym_EQ_GT] = ACTIONS(652), + [anon_sym_QMARK_DOT] = ACTIONS(654), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_STAR_STAR_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(656), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(656), + [anon_sym_QMARK] = ACTIONS(637), + [anon_sym_AMP_AMP] = ACTIONS(637), + [anon_sym_PIPE_PIPE] = ACTIONS(637), + [anon_sym_GT_GT] = ACTIONS(637), + [anon_sym_GT_GT_GT] = ACTIONS(637), + [anon_sym_LT_LT] = ACTIONS(637), + [anon_sym_AMP] = ACTIONS(637), + [anon_sym_CARET] = ACTIONS(637), + [anon_sym_PIPE] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(637), + [anon_sym_DASH] = ACTIONS(637), + [anon_sym_PERCENT] = ACTIONS(637), + [anon_sym_STAR_STAR] = ACTIONS(637), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_EQ_EQ] = ACTIONS(637), + [anon_sym_EQ_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(637), + [anon_sym_BANG_EQ_EQ] = ACTIONS(629), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_QMARK_QMARK] = ACTIONS(637), + [anon_sym_instanceof] = ACTIONS(637), + [anon_sym_PLUS_PLUS] = ACTIONS(629), + [anon_sym_DASH_DASH] = ACTIONS(629), + [anon_sym_DQUOTE] = ACTIONS(394), + [anon_sym_SQUOTE] = ACTIONS(396), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(437), - [sym_number] = ACTIONS(437), - [sym_this] = ACTIONS(439), - [sym_super] = ACTIONS(439), - [sym_true] = ACTIONS(439), - [sym_false] = ACTIONS(439), - [sym_null] = ACTIONS(439), - [sym_undefined] = ACTIONS(439), - [anon_sym_AT] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_get] = ACTIONS(439), - [anon_sym_set] = ACTIONS(439), - [sym_preproc] = ACTIONS(437), - [sym__automatic_semicolon] = ACTIONS(445), - }, - [181] = { - [ts_builtin_sym_end] = ACTIONS(539), - [sym_identifier] = ACTIONS(541), - [anon_sym_export] = ACTIONS(541), - [anon_sym_STAR] = ACTIONS(539), - [anon_sym_default] = ACTIONS(541), - [anon_sym_LBRACE] = ACTIONS(539), - [anon_sym_COMMA] = ACTIONS(539), - [anon_sym_RBRACE] = ACTIONS(539), - [anon_sym_import] = ACTIONS(541), - [anon_sym_var] = ACTIONS(541), - [anon_sym_let] = ACTIONS(541), - [anon_sym_const] = ACTIONS(541), - [anon_sym_if] = ACTIONS(541), - [anon_sym_else] = ACTIONS(541), - [anon_sym_switch] = ACTIONS(541), - [anon_sym_for] = ACTIONS(541), - [anon_sym_LPAREN] = ACTIONS(539), - [anon_sym_await] = ACTIONS(541), - [anon_sym_while] = ACTIONS(541), - [anon_sym_do] = ACTIONS(541), - [anon_sym_try] = ACTIONS(541), - [anon_sym_with] = 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_SEMI] = ACTIONS(539), - [anon_sym_case] = ACTIONS(541), - [anon_sym_catch] = ACTIONS(541), - [anon_sym_finally] = ACTIONS(541), - [anon_sym_yield] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(539), - [anon_sym_SLASH] = ACTIONS(541), - [anon_sym_class] = ACTIONS(541), - [anon_sym_async] = ACTIONS(541), - [anon_sym_function] = ACTIONS(541), - [anon_sym_new] = ACTIONS(541), - [anon_sym_PLUS] = ACTIONS(541), - [anon_sym_DASH] = ACTIONS(541), - [anon_sym_BANG] = ACTIONS(539), - [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), - [anon_sym_DQUOTE] = ACTIONS(539), - [anon_sym_SQUOTE] = ACTIONS(539), + [anon_sym_BQUOTE] = ACTIONS(629), + [sym_number] = ACTIONS(658), + [anon_sym_static] = ACTIONS(668), + [anon_sym_get] = ACTIONS(675), + [anon_sym_set] = ACTIONS(675), + [sym__automatic_semicolon] = ACTIONS(629), + }, + [190] = { + [ts_builtin_sym_end] = ACTIONS(426), + [sym_identifier] = ACTIONS(428), + [anon_sym_export] = ACTIONS(428), + [anon_sym_STAR] = ACTIONS(426), + [anon_sym_default] = ACTIONS(428), + [anon_sym_LBRACE] = ACTIONS(426), + [anon_sym_COMMA] = ACTIONS(426), + [anon_sym_RBRACE] = ACTIONS(426), + [anon_sym_import] = ACTIONS(428), + [anon_sym_var] = ACTIONS(428), + [anon_sym_let] = ACTIONS(428), + [anon_sym_const] = ACTIONS(428), + [anon_sym_else] = ACTIONS(428), + [anon_sym_if] = ACTIONS(428), + [anon_sym_switch] = ACTIONS(428), + [anon_sym_for] = ACTIONS(428), + [anon_sym_LPAREN] = ACTIONS(426), + [anon_sym_await] = ACTIONS(428), + [anon_sym_while] = ACTIONS(428), + [anon_sym_do] = ACTIONS(428), + [anon_sym_try] = ACTIONS(428), + [anon_sym_with] = ACTIONS(428), + [anon_sym_break] = ACTIONS(428), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_debugger] = ACTIONS(428), + [anon_sym_return] = ACTIONS(428), + [anon_sym_throw] = ACTIONS(428), + [anon_sym_SEMI] = ACTIONS(426), + [anon_sym_case] = ACTIONS(428), + [anon_sym_catch] = ACTIONS(428), + [anon_sym_finally] = ACTIONS(428), + [anon_sym_yield] = ACTIONS(428), + [anon_sym_LBRACK] = ACTIONS(426), + [anon_sym_LT] = ACTIONS(426), + [anon_sym_SLASH] = ACTIONS(428), + [anon_sym_class] = ACTIONS(428), + [anon_sym_async] = ACTIONS(428), + [anon_sym_function] = ACTIONS(428), + [anon_sym_new] = ACTIONS(428), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(426), + [anon_sym_TILDE] = ACTIONS(426), + [anon_sym_typeof] = ACTIONS(428), + [anon_sym_void] = ACTIONS(428), + [anon_sym_delete] = ACTIONS(428), + [anon_sym_PLUS_PLUS] = ACTIONS(426), + [anon_sym_DASH_DASH] = ACTIONS(426), + [anon_sym_DQUOTE] = ACTIONS(426), + [anon_sym_SQUOTE] = ACTIONS(426), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(539), - [sym_number] = ACTIONS(539), - [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(1106), + [anon_sym_BQUOTE] = ACTIONS(426), + [sym_number] = ACTIONS(426), + [sym_this] = ACTIONS(428), + [sym_super] = ACTIONS(428), + [sym_true] = ACTIONS(428), + [sym_false] = ACTIONS(428), + [sym_null] = ACTIONS(428), + [sym_undefined] = ACTIONS(428), + [anon_sym_AT] = ACTIONS(426), + [anon_sym_static] = ACTIONS(428), + [anon_sym_get] = ACTIONS(428), + [anon_sym_set] = ACTIONS(428), + [sym_preproc] = ACTIONS(426), + [sym__automatic_semicolon] = ACTIONS(434), + }, + [191] = { + [ts_builtin_sym_end] = ACTIONS(436), + [sym_identifier] = ACTIONS(438), + [anon_sym_export] = ACTIONS(438), + [anon_sym_STAR] = ACTIONS(436), + [anon_sym_default] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(436), + [anon_sym_COMMA] = ACTIONS(436), + [anon_sym_RBRACE] = ACTIONS(436), + [anon_sym_import] = ACTIONS(438), + [anon_sym_var] = ACTIONS(438), + [anon_sym_let] = ACTIONS(438), + [anon_sym_const] = ACTIONS(438), + [anon_sym_else] = ACTIONS(438), + [anon_sym_if] = ACTIONS(438), + [anon_sym_switch] = ACTIONS(438), + [anon_sym_for] = ACTIONS(438), + [anon_sym_LPAREN] = ACTIONS(436), + [anon_sym_await] = ACTIONS(438), + [anon_sym_while] = ACTIONS(438), + [anon_sym_do] = ACTIONS(438), + [anon_sym_try] = ACTIONS(438), + [anon_sym_with] = ACTIONS(438), + [anon_sym_break] = ACTIONS(438), + [anon_sym_continue] = ACTIONS(438), + [anon_sym_debugger] = ACTIONS(438), + [anon_sym_return] = ACTIONS(438), + [anon_sym_throw] = ACTIONS(438), + [anon_sym_SEMI] = ACTIONS(436), + [anon_sym_case] = ACTIONS(438), + [anon_sym_catch] = ACTIONS(438), + [anon_sym_finally] = ACTIONS(438), + [anon_sym_yield] = ACTIONS(438), + [anon_sym_LBRACK] = ACTIONS(436), + [anon_sym_LT] = ACTIONS(436), + [anon_sym_SLASH] = ACTIONS(438), + [anon_sym_class] = ACTIONS(438), + [anon_sym_async] = ACTIONS(438), + [anon_sym_function] = ACTIONS(438), + [anon_sym_new] = ACTIONS(438), + [anon_sym_PLUS] = ACTIONS(438), + [anon_sym_DASH] = ACTIONS(438), + [anon_sym_BANG] = ACTIONS(436), + [anon_sym_TILDE] = ACTIONS(436), + [anon_sym_typeof] = ACTIONS(438), + [anon_sym_void] = ACTIONS(438), + [anon_sym_delete] = ACTIONS(438), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_DQUOTE] = ACTIONS(436), + [anon_sym_SQUOTE] = ACTIONS(436), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(436), + [sym_number] = ACTIONS(436), + [sym_this] = ACTIONS(438), + [sym_super] = ACTIONS(438), + [sym_true] = ACTIONS(438), + [sym_false] = ACTIONS(438), + [sym_null] = ACTIONS(438), + [sym_undefined] = ACTIONS(438), + [anon_sym_AT] = ACTIONS(436), + [anon_sym_static] = ACTIONS(438), + [anon_sym_get] = ACTIONS(438), + [anon_sym_set] = ACTIONS(438), + [sym_preproc] = ACTIONS(436), + [sym__automatic_semicolon] = ACTIONS(677), + }, + [192] = { + [sym_arguments] = STATE(434), + [sym_formal_parameters] = STATE(1143), + [sym_identifier] = ACTIONS(679), + [anon_sym_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [anon_sym_COMMA] = ACTIONS(683), + [anon_sym_RBRACE] = ACTIONS(683), + [anon_sym_LPAREN] = ACTIONS(683), + [anon_sym_RPAREN] = ACTIONS(683), + [anon_sym_in] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(683), + [anon_sym_EQ] = ACTIONS(685), + [anon_sym_LBRACK] = ACTIONS(687), + [anon_sym_RBRACK] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(681), + [anon_sym_GT] = ACTIONS(681), + [anon_sym_SLASH] = ACTIONS(681), + [anon_sym_DOT] = ACTIONS(689), + [anon_sym_async] = ACTIONS(691), + [anon_sym_function] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(695), + [anon_sym_QMARK_DOT] = ACTIONS(697), + [anon_sym_PLUS_EQ] = ACTIONS(656), + [anon_sym_DASH_EQ] = ACTIONS(656), + [anon_sym_STAR_EQ] = ACTIONS(656), + [anon_sym_SLASH_EQ] = ACTIONS(656), + [anon_sym_PERCENT_EQ] = ACTIONS(656), + [anon_sym_CARET_EQ] = ACTIONS(656), + [anon_sym_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_EQ] = ACTIONS(656), + [anon_sym_GT_GT_EQ] = ACTIONS(656), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(656), + [anon_sym_LT_LT_EQ] = ACTIONS(656), + [anon_sym_STAR_STAR_EQ] = ACTIONS(656), + [anon_sym_AMP_AMP_EQ] = ACTIONS(656), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(656), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(656), + [anon_sym_QMARK] = ACTIONS(681), + [anon_sym_AMP_AMP] = ACTIONS(681), + [anon_sym_PIPE_PIPE] = ACTIONS(681), + [anon_sym_GT_GT] = ACTIONS(681), + [anon_sym_GT_GT_GT] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(681), + [anon_sym_AMP] = ACTIONS(681), + [anon_sym_CARET] = ACTIONS(681), + [anon_sym_PIPE] = ACTIONS(681), + [anon_sym_PLUS] = ACTIONS(681), + [anon_sym_DASH] = ACTIONS(681), + [anon_sym_PERCENT] = ACTIONS(681), + [anon_sym_STAR_STAR] = ACTIONS(681), + [anon_sym_LT_EQ] = ACTIONS(683), + [anon_sym_EQ_EQ] = ACTIONS(681), + [anon_sym_EQ_EQ_EQ] = ACTIONS(683), + [anon_sym_BANG_EQ] = ACTIONS(681), + [anon_sym_BANG_EQ_EQ] = ACTIONS(683), + [anon_sym_GT_EQ] = ACTIONS(683), + [anon_sym_QMARK_QMARK] = ACTIONS(681), + [anon_sym_instanceof] = ACTIONS(681), + [anon_sym_PLUS_PLUS] = ACTIONS(683), + [anon_sym_DASH_DASH] = ACTIONS(683), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(683), + [anon_sym_static] = ACTIONS(691), + [anon_sym_get] = ACTIONS(691), + [anon_sym_set] = ACTIONS(691), }, }; static uint16_t ts_small_parse_table[] = { - [0] = 20, + [0] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, - anon_sym_DQUOTE, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(1069), 1, + ACTIONS(508), 19, + ts_builtin_sym_end, anon_sym_STAR, - ACTIONS(1082), 1, - anon_sym_COLON, - ACTIONS(1085), 1, - anon_sym_EQ, - ACTIONS(1087), 1, - anon_sym_LBRACK, - ACTIONS(1090), 1, - anon_sym_DOT, - ACTIONS(1096), 1, - anon_sym_EQ_GT, - ACTIONS(1100), 1, - sym_number, - ACTIONS(1104), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1110), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_async, - STATE(870), 1, - aux_sym_object_repeat1, - ACTIONS(1108), 2, - sym_identifier, - anon_sym_static, - ACTIONS(1115), 2, - anon_sym_get, - anon_sym_set, - STATE(1015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1098), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 13, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(1080), 18, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(510), 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_catch, + anon_sym_finally, + anon_sym_yield, anon_sym_SLASH, - anon_sym_QMARK, - 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_instanceof, - [105] = 17, + 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] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, - anon_sym_DQUOTE, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(1082), 1, - anon_sym_COLON, - ACTIONS(1085), 1, + ACTIONS(679), 1, + sym_identifier, + ACTIONS(685), 1, anon_sym_EQ, - ACTIONS(1087), 1, + ACTIONS(687), 1, anon_sym_LBRACK, - ACTIONS(1090), 1, + ACTIONS(689), 1, anon_sym_DOT, - ACTIONS(1096), 1, + ACTIONS(693), 1, + anon_sym_function, + ACTIONS(695), 1, anon_sym_EQ_GT, - ACTIONS(1100), 1, - sym_number, - ACTIONS(1104), 1, - anon_sym_RBRACE, - ACTIONS(1110), 1, + ACTIONS(697), 1, + anon_sym_QMARK_DOT, + ACTIONS(699), 1, anon_sym_LPAREN, - STATE(870), 1, - aux_sym_object_repeat1, - STATE(1015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1108), 5, + STATE(1143), 1, + sym_formal_parameters, + ACTIONS(691), 4, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1098), 12, + ACTIONS(629), 13, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + 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(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -20802,27 +21897,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 13, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1080), 19, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -20835,15 +21921,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [204] = 3, + [164] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(539), 19, + ACTIONS(706), 1, + anon_sym_catch, + ACTIONS(708), 1, + anon_sym_finally, + STATE(198), 1, + sym_catch_clause, + STATE(250), 1, + sym_finally_clause, + ACTIONS(702), 17, ts_builtin_sym_end, - anon_sym_STAR, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -20859,15 +21952,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(541), 44, + ACTIONS(704), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -20881,8 +21974,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_catch, - anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -20904,20 +21995,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [275] = 7, + [243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1121), 1, - anon_sym_catch, - ACTIONS(1123), 1, - anon_sym_finally, - STATE(189), 1, - sym_catch_clause, - STATE(232), 1, - sym_finally_clause, - ACTIONS(1117), 17, + ACTIONS(436), 19, ts_builtin_sym_end, + anon_sym_STAR, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -20933,15 +22018,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1119), 42, + ACTIONS(438), 44, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -20955,6 +22040,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_catch, + anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -20976,14 +22063,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [354] = 3, + [314] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 19, - ts_builtin_sym_end, + ACTIONS(652), 1, + anon_sym_EQ_GT, + ACTIONS(654), 1, + anon_sym_QMARK_DOT, + ACTIONS(685), 1, + anon_sym_EQ, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(712), 1, + anon_sym_LBRACK, + ACTIONS(714), 1, + anon_sym_DOT, + ACTIONS(718), 1, + anon_sym_function, + STATE(550), 1, + sym_arguments, + STATE(1110), 1, + sym_formal_parameters, + ACTIONS(716), 4, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(683), 12, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + 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(656), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(681), 22, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [406] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(708), 1, + anon_sym_finally, + STATE(237), 1, + sym_finally_clause, + ACTIONS(720), 17, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -20999,15 +22166,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(527), 44, + ACTIONS(722), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -21021,8 +22188,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_catch, - anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -21044,42 +22209,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [425] = 17, + [479] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, - anon_sym_DQUOTE, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(1074), 1, - anon_sym_RBRACE, - ACTIONS(1082), 1, - anon_sym_COLON, - ACTIONS(1085), 1, - anon_sym_EQ, - ACTIONS(1087), 1, - anon_sym_LBRACK, - ACTIONS(1090), 1, - anon_sym_DOT, - ACTIONS(1096), 1, + ACTIONS(652), 1, anon_sym_EQ_GT, - ACTIONS(1100), 1, - sym_number, - ACTIONS(1110), 1, + ACTIONS(654), 1, + anon_sym_QMARK_DOT, + ACTIONS(699), 1, anon_sym_LPAREN, - STATE(838), 1, - aux_sym_object_repeat1, - STATE(1015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1108), 5, - anon_sym_async, + ACTIONS(710), 1, sym_identifier, + ACTIONS(712), 1, + anon_sym_LBRACK, + ACTIONS(714), 1, + anon_sym_DOT, + ACTIONS(724), 1, + anon_sym_COLON, + ACTIONS(726), 1, + anon_sym_EQ, + ACTIONS(728), 1, + anon_sym_function, + STATE(1110), 1, + sym_formal_parameters, + ACTIONS(716), 4, + anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1098), 12, + ACTIONS(629), 10, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + 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(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -21092,27 +22261,95 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 13, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [572] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(652), 1, + anon_sym_EQ_GT, + ACTIONS(654), 1, + anon_sym_QMARK_DOT, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(712), 1, + anon_sym_LBRACK, + ACTIONS(714), 1, + anon_sym_DOT, + ACTIONS(718), 1, + anon_sym_function, + ACTIONS(726), 1, + anon_sym_EQ, + STATE(1110), 1, + sym_formal_parameters, + ACTIONS(716), 4, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(629), 11, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1080), 19, + ACTIONS(656), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 22, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -21125,47 +22362,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [524] = 20, + [663] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, - anon_sym_DQUOTE, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(1069), 1, - anon_sym_STAR, - ACTIONS(1074), 1, - anon_sym_RBRACE, - ACTIONS(1082), 1, - anon_sym_COLON, - ACTIONS(1085), 1, - anon_sym_EQ, - ACTIONS(1087), 1, - anon_sym_LBRACK, - ACTIONS(1090), 1, - anon_sym_DOT, - ACTIONS(1096), 1, + ACTIONS(652), 1, anon_sym_EQ_GT, - ACTIONS(1100), 1, - sym_number, - ACTIONS(1110), 1, + ACTIONS(654), 1, + anon_sym_QMARK_DOT, + ACTIONS(699), 1, anon_sym_LPAREN, - ACTIONS(1113), 1, - anon_sym_async, - STATE(838), 1, - aux_sym_object_repeat1, - ACTIONS(1108), 2, + ACTIONS(710), 1, sym_identifier, + ACTIONS(712), 1, + anon_sym_LBRACK, + ACTIONS(714), 1, + anon_sym_DOT, + ACTIONS(718), 1, + anon_sym_function, + ACTIONS(726), 1, + anon_sym_EQ, + ACTIONS(730), 1, + anon_sym_in, + ACTIONS(733), 1, + anon_sym_of, + STATE(1110), 1, + sym_formal_parameters, + ACTIONS(716), 4, + anon_sym_async, anon_sym_static, - ACTIONS(1115), 2, anon_sym_get, anon_sym_set, - STATE(1015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1098), 12, + ACTIONS(629), 10, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + 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(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -21178,26 +22418,95 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 13, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 21, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [758] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(650), 1, + anon_sym_function, + ACTIONS(652), 1, + anon_sym_EQ_GT, + ACTIONS(654), 1, + anon_sym_QMARK_DOT, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(710), 1, + sym_identifier, + ACTIONS(712), 1, + anon_sym_LBRACK, + ACTIONS(714), 1, + anon_sym_DOT, + ACTIONS(726), 1, + anon_sym_EQ, + ACTIONS(735), 1, + anon_sym_COLON, + STATE(1110), 1, + sym_formal_parameters, + ACTIONS(716), 4, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(629), 10, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1080), 18, + ACTIONS(656), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 22, + anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -21210,15 +22519,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [629] = 5, + [851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1123), 1, - anon_sym_finally, - STATE(234), 1, - sym_finally_clause, - ACTIONS(1125), 17, + ACTIONS(436), 18, + sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21236,15 +22543,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1127), 42, + ACTIONS(438), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -21279,11 +22586,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [702] = 3, + [919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 18, + ACTIONS(496), 1, sym__automatic_semicolon, + ACTIONS(488), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21301,15 +22609,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(527), 42, + ACTIONS(490), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -21344,12 +22652,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [770] = 4, + [989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, - sym__automatic_semicolon, - ACTIONS(467), 17, + ACTIONS(737), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21367,15 +22673,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(469), 42, + ACTIONS(739), 43, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -21389,6 +22695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -21410,12 +22717,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [840] = 4, + [1057] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(679), 1, + sym_identifier, + ACTIONS(687), 1, + anon_sym_LBRACK, + ACTIONS(689), 1, + anon_sym_DOT, + ACTIONS(693), 1, + anon_sym_function, + ACTIONS(695), 1, + anon_sym_EQ_GT, + ACTIONS(697), 1, + anon_sym_QMARK_DOT, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(741), 1, + anon_sym_COMMA, + ACTIONS(744), 1, + anon_sym_RPAREN, + ACTIONS(747), 1, + anon_sym_EQ, + STATE(881), 1, + aux_sym_formal_parameters_repeat1, + STATE(1143), 1, + sym_formal_parameters, + ACTIONS(691), 4, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(629), 7, + 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(656), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [1153] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 1, + ACTIONS(464), 1, sym__automatic_semicolon, - ACTIONS(457), 17, + ACTIONS(456), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21433,15 +22819,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(459), 42, + ACTIONS(458), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -21476,12 +22862,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [910] = 4, + [1223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(455), 1, + ACTIONS(749), 1, sym__automatic_semicolon, - ACTIONS(447), 17, + ACTIONS(426), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21499,15 +22885,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(449), 42, + ACTIONS(428), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -21542,12 +22928,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [980] = 4, + [1293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1129), 1, - sym__automatic_semicolon, - ACTIONS(539), 17, + ACTIONS(751), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21565,15 +22949,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(541), 42, + ACTIONS(753), 43, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -21587,6 +22971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -21608,12 +22993,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1050] = 4, + [1361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 1, - sym__automatic_semicolon, - ACTIONS(477), 17, + ACTIONS(755), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21631,15 +23014,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(479), 42, + ACTIONS(757), 43, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -21653,6 +23036,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, + anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -21674,10 +23058,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1120] = 3, + [1429] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1131), 17, + ACTIONS(506), 1, + sym__automatic_semicolon, + ACTIONS(498), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21695,15 +23081,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1133), 43, + ACTIONS(500), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -21717,7 +23103,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -21739,86 +23124,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1188] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1141), 1, - anon_sym_EQ, - ACTIONS(1143), 1, - anon_sym_DOT, - ACTIONS(1147), 1, - anon_sym_function, - ACTIONS(1149), 1, - anon_sym_EQ_GT, - STATE(407), 1, - sym_arguments, - STATE(1099), 1, - sym_formal_parameters, - ACTIONS(1145), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1151), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1139), 18, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1137), 19, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_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_instanceof, - [1274] = 4, + [1499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(537), 1, + ACTIONS(484), 1, sym__automatic_semicolon, - ACTIONS(529), 17, + ACTIONS(476), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21836,15 +23147,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(531), 42, + ACTIONS(478), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -21879,12 +23190,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1344] = 4, + [1569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(523), 1, + ACTIONS(508), 18, sym__automatic_semicolon, - ACTIONS(515), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -21902,15 +23212,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(517), 42, + ACTIONS(510), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -21945,15 +23255,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1414] = 3, + [1637] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1153), 18, + ACTIONS(763), 1, + anon_sym_else, + STATE(254), 1, + sym_else_clause, + ACTIONS(759), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_LT, @@ -21967,7 +23280,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1155), 42, + ACTIONS(761), 41, anon_sym_export, anon_sym_default, anon_sym_import, @@ -21975,7 +23288,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_const, anon_sym_if, - anon_sym_else, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22010,12 +23322,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1482] = 4, + [1709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(520), 1, sym__automatic_semicolon, - ACTIONS(491), 17, + ACTIONS(512), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22033,15 +23345,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(493), 42, + ACTIONS(514), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22076,11 +23388,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1552] = 3, + [1779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(539), 18, + ACTIONS(530), 1, sym__automatic_semicolon, + ACTIONS(522), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22098,15 +23411,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(541), 42, + ACTIONS(524), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22141,16 +23454,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1620] = 4, + [1849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1157), 1, - sym__automatic_semicolon, - ACTIONS(437), 17, + ACTIONS(765), 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_LT, @@ -22164,15 +23476,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(439), 42, + ACTIONS(767), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22207,11 +23519,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1690] = 3, + [1917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(487), 18, + ACTIONS(450), 1, sym__automatic_semicolon, + ACTIONS(442), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22229,15 +23542,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(489), 42, + ACTIONS(444), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22272,10 +23585,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1758] = 3, + [1987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1159), 17, + ACTIONS(769), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22293,15 +23606,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1161), 43, + ACTIONS(771), 43, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22337,10 +23650,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1826] = 3, + [2055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1163), 18, + ACTIONS(773), 18, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22359,15 +23672,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1165), 42, + ACTIONS(775), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22402,10 +23715,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1894] = 3, + [2123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1167), 17, + ACTIONS(777), 1, + sym__automatic_semicolon, + ACTIONS(436), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22423,15 +23738,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1169), 43, + ACTIONS(438), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22445,7 +23760,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -22467,10 +23781,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [1962] = 3, + [2193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1171), 17, + ACTIONS(474), 1, + sym__automatic_semicolon, + ACTIONS(466), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22488,15 +23804,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1173), 43, + ACTIONS(468), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22510,7 +23826,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_throw, anon_sym_case, - anon_sym_finally, anon_sym_yield, anon_sym_SLASH, anon_sym_class, @@ -22532,10 +23847,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2030] = 3, + [2263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 18, + ACTIONS(532), 18, sym__automatic_semicolon, ts_builtin_sym_end, anon_sym_LBRACE, @@ -22554,15 +23869,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(503), 42, + ACTIONS(534), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22597,12 +23912,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2098] = 4, + [2331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(452), 18, sym__automatic_semicolon, - ACTIONS(505), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22620,15 +23934,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(507), 42, + ACTIONS(454), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22663,10 +23977,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2168] = 3, + [2399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1175), 17, + ACTIONS(779), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22684,15 +23998,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1177), 42, + ACTIONS(781), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22727,10 +24041,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2235] = 3, + [2466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1179), 17, + ACTIONS(783), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22748,15 +24062,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1181), 42, + ACTIONS(785), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22791,10 +24105,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2302] = 3, + [2533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1183), 17, + ACTIONS(787), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22812,15 +24126,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1185), 42, + ACTIONS(789), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22855,10 +24169,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2369] = 3, + [2600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1187), 17, + ACTIONS(791), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22876,15 +24190,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1189), 42, + ACTIONS(793), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22919,10 +24233,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2436] = 3, + [2667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1191), 17, + ACTIONS(795), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -22940,15 +24254,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1193), 42, + ACTIONS(797), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -22983,10 +24297,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2503] = 3, + [2734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1195), 17, + ACTIONS(799), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23004,15 +24318,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1197), 42, + ACTIONS(801), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23047,10 +24361,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2570] = 3, + [2801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1199), 17, + ACTIONS(803), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23068,15 +24382,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1201), 42, + ACTIONS(805), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23111,10 +24425,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2637] = 3, + [2868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1203), 17, + ACTIONS(807), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23132,15 +24446,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1205), 42, + ACTIONS(809), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23175,10 +24489,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2704] = 3, + [2935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1207), 17, + ACTIONS(811), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23196,15 +24510,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1209), 42, + ACTIONS(813), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23239,10 +24553,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2771] = 3, + [3002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1211), 17, + ACTIONS(815), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23260,15 +24574,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1213), 42, + ACTIONS(817), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23303,10 +24617,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2838] = 3, + [3069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1215), 17, + ACTIONS(819), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23324,15 +24638,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1217), 42, + ACTIONS(821), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23367,10 +24681,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2905] = 3, + [3136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1219), 17, + ACTIONS(823), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23388,15 +24702,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1221), 42, + ACTIONS(825), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23431,10 +24745,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [2972] = 3, + [3203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1223), 17, + ACTIONS(827), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23452,15 +24766,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1225), 42, + ACTIONS(829), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23495,10 +24809,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3039] = 3, + [3270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1227), 17, + ACTIONS(831), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23516,15 +24830,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1229), 42, + ACTIONS(833), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23559,10 +24873,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3106] = 3, + [3337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 17, + ACTIONS(835), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23580,15 +24894,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1233), 42, + ACTIONS(837), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23623,10 +24937,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3173] = 3, + [3404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 17, + ACTIONS(839), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23644,15 +24958,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1237), 42, + ACTIONS(841), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23687,10 +25001,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3240] = 3, + [3471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 17, + ACTIONS(843), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23708,15 +25022,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1241), 42, + ACTIONS(845), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23751,10 +25065,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3307] = 3, + [3538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1243), 17, + ACTIONS(847), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23772,15 +25086,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1245), 42, + ACTIONS(849), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23815,10 +25129,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3374] = 3, + [3605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1247), 17, + ACTIONS(851), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23836,15 +25150,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1249), 42, + ACTIONS(853), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23879,10 +25193,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3441] = 3, + [3672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 17, + ACTIONS(855), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23900,15 +25214,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1253), 42, + ACTIONS(857), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -23943,10 +25257,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3508] = 3, + [3739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1255), 17, + ACTIONS(859), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -23964,15 +25278,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1257), 42, + ACTIONS(861), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24007,10 +25321,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3575] = 3, + [3806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1259), 17, + ACTIONS(863), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24028,15 +25342,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1261), 42, + ACTIONS(865), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24071,10 +25385,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3642] = 3, + [3873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 17, + ACTIONS(867), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24092,15 +25406,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1265), 42, + ACTIONS(869), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24135,10 +25449,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3709] = 3, + [3940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1267), 17, + ACTIONS(871), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24156,15 +25470,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1269), 42, + ACTIONS(873), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24199,10 +25513,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3776] = 3, + [4007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1271), 17, + ACTIONS(875), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24220,15 +25534,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1273), 42, + ACTIONS(877), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24263,10 +25577,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3843] = 3, + [4074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1275), 17, + ACTIONS(879), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24284,15 +25598,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1277), 42, + ACTIONS(881), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24327,10 +25641,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3910] = 3, + [4141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1279), 17, + ACTIONS(883), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24348,15 +25662,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1281), 42, + ACTIONS(885), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24391,10 +25705,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [3977] = 3, + [4208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1283), 17, + ACTIONS(887), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24412,15 +25726,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1285), 42, + ACTIONS(889), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24455,10 +25769,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4044] = 3, + [4275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1287), 17, + ACTIONS(891), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24476,15 +25790,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1289), 42, + ACTIONS(893), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24519,83 +25833,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4111] = 12, + [4342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1141), 1, - anon_sym_EQ, - ACTIONS(1143), 1, - anon_sym_DOT, - ACTIONS(1147), 1, - anon_sym_function, - ACTIONS(1149), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, - anon_sym_LPAREN, - STATE(1099), 1, - sym_formal_parameters, - ACTIONS(1145), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1151), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 17, + ACTIONS(895), 17, + ts_builtin_sym_end, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(1080), 19, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(897), 42, + 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_SLASH, - anon_sym_QMARK, - 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_instanceof, - [4196] = 3, + 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, + [4409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 17, + ACTIONS(899), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24613,15 +25918,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1296), 42, + ACTIONS(901), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24656,10 +25961,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4263] = 3, + [4476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 17, + ACTIONS(903), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24677,15 +25982,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1300), 42, + ACTIONS(905), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24720,10 +26025,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4330] = 3, + [4543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 17, + ACTIONS(907), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24741,15 +26046,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1304), 42, + ACTIONS(909), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24784,10 +26089,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4397] = 3, + [4610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 17, + ACTIONS(911), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24805,15 +26110,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1308), 42, + ACTIONS(913), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24848,10 +26153,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4464] = 3, + [4677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 17, + ACTIONS(915), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24869,15 +26174,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1312), 42, + ACTIONS(917), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24912,10 +26217,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4531] = 3, + [4744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 17, + ACTIONS(919), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24933,15 +26238,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1316), 42, + ACTIONS(921), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -24976,10 +26281,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4598] = 3, + [4811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 17, + ACTIONS(923), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -24997,15 +26302,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1320), 42, + ACTIONS(925), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -25040,10 +26345,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4665] = 3, + [4878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 17, + ACTIONS(927), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25061,15 +26366,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1324), 42, + ACTIONS(929), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -25104,10 +26409,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4732] = 3, + [4945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 17, + ACTIONS(931), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25125,15 +26430,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1328), 42, + ACTIONS(933), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -25168,10 +26473,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4799] = 3, + [5012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 17, + ACTIONS(935), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25189,15 +26494,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1332), 42, + ACTIONS(937), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -25232,10 +26537,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4866] = 3, + [5079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 17, + ACTIONS(939), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25253,15 +26558,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1336), 42, + ACTIONS(941), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -25296,10 +26601,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [4933] = 3, + [5146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 17, + ACTIONS(943), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25317,15 +26622,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1340), 42, + ACTIONS(945), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -25360,12 +26665,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5000] = 4, + [5213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 1, - anon_sym_else, - ACTIONS(1342), 17, + ACTIONS(947), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25383,13 +26686,14 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1344), 41, + ACTIONS(949), 42, 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, @@ -25425,10 +26729,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5069] = 3, + [5280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 17, + ACTIONS(951), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25446,15 +26750,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1350), 42, + ACTIONS(953), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -25489,10 +26793,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5136] = 3, + [5347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 17, + ACTIONS(955), 17, ts_builtin_sym_end, anon_sym_LBRACE, anon_sym_RBRACE, @@ -25510,15 +26814,15 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1354), 42, + ACTIONS(957), 42, anon_sym_export, anon_sym_default, anon_sym_import, anon_sym_var, anon_sym_let, anon_sym_const, - anon_sym_if, anon_sym_else, + anon_sym_if, anon_sym_switch, anon_sym_for, anon_sym_await, @@ -25553,29 +26857,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [5203] = 12, + [5414] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1096), 1, - anon_sym_EQ_GT, - ACTIONS(1141), 1, - anon_sym_EQ, - ACTIONS(1356), 1, + ACTIONS(679), 1, sym_identifier, - ACTIONS(1358), 1, + ACTIONS(685), 1, + anon_sym_EQ, + ACTIONS(687), 1, + anon_sym_LBRACK, + ACTIONS(689), 1, anon_sym_DOT, - ACTIONS(1362), 1, + ACTIONS(693), 1, anon_sym_function, - STATE(535), 1, - sym_arguments, - STATE(1126), 1, + ACTIONS(695), 1, + anon_sym_EQ_GT, + ACTIONS(697), 1, + anon_sym_QMARK_DOT, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(959), 1, + anon_sym_in, + ACTIONS(962), 1, + anon_sym_of, + STATE(1143), 1, sym_formal_parameters, - ACTIONS(1360), 4, + ACTIONS(691), 4, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1151), 12, + ACTIONS(629), 7, + 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(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25588,30 +26908,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1139), 16, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1137), 19, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 21, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -25624,34 +26931,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [5287] = 14, + [5506] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1096), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, - anon_sym_LPAREN, - ACTIONS(1356), 1, + ACTIONS(679), 1, sym_identifier, - ACTIONS(1358), 1, + ACTIONS(685), 1, + anon_sym_EQ, + ACTIONS(687), 1, + anon_sym_LBRACK, + ACTIONS(689), 1, anon_sym_DOT, - ACTIONS(1362), 1, + ACTIONS(693), 1, anon_sym_function, - ACTIONS(1364), 1, + ACTIONS(695), 1, + anon_sym_EQ_GT, + ACTIONS(697), 1, + anon_sym_QMARK_DOT, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(730), 1, anon_sym_in, - ACTIONS(1367), 1, + ACTIONS(733), 1, anon_sym_of, - ACTIONS(1369), 1, - anon_sym_EQ, - STATE(1126), 1, + STATE(1143), 1, sym_formal_parameters, - ACTIONS(1360), 4, + ACTIONS(691), 4, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1098), 12, + ACTIONS(629), 7, + 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(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25664,27 +26984,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 14, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1080), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 21, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -25697,32 +27007,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [5374] = 13, + [5598] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 1, - anon_sym_function, - ACTIONS(1096), 1, + ACTIONS(685), 1, + anon_sym_EQ, + ACTIONS(687), 1, + anon_sym_LBRACK, + ACTIONS(689), 1, + anon_sym_DOT, + ACTIONS(695), 1, anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(697), 1, + anon_sym_QMARK_DOT, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1356), 1, - sym_identifier, - ACTIONS(1358), 1, - anon_sym_DOT, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(1371), 1, + STATE(434), 1, + sym_arguments, + ACTIONS(683), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(1126), 1, - sym_formal_parameters, - ACTIONS(1360), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1098), 12, + anon_sym_RBRACK, + anon_sym_LT_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(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25735,28 +27054,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 14, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1080), 19, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(681), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -25769,32 +27078,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - [5459] = 13, + anon_sym_QMARK_QMARK, + [5679] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1096), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1356), 1, - sym_identifier, - ACTIONS(1358), 1, - anon_sym_DOT, - ACTIONS(1369), 1, + ACTIONS(970), 1, anon_sym_EQ, - ACTIONS(1373), 1, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(976), 1, + anon_sym_EQ_GT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + STATE(435), 1, + sym_arguments, + ACTIONS(968), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(1375), 1, - anon_sym_function, - STATE(1126), 1, - sym_formal_parameters, - ACTIONS(1360), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1098), 12, + anon_sym_RBRACK, + anon_sym_LT_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(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25807,29 +27124,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 14, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1080), 19, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(966), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_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, @@ -25841,30 +27148,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - [5544] = 12, + anon_sym_QMARK_QMARK, + [5760] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1096), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1356), 1, - sym_identifier, - ACTIONS(1358), 1, - anon_sym_DOT, - ACTIONS(1362), 1, - anon_sym_function, - ACTIONS(1369), 1, + ACTIONS(970), 1, anon_sym_EQ, - STATE(1126), 1, - sym_formal_parameters, - ACTIONS(1360), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1098), 12, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + STATE(435), 1, + sym_arguments, + ACTIONS(968), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LT_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(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25877,29 +27192,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 15, - sym__automatic_semicolon, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(966), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [5838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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(984), 34, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1080), 19, + [5902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 22, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -25912,48 +27303,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - [5627] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1143), 1, - anon_sym_DOT, - ACTIONS(1147), 1, - anon_sym_function, - ACTIONS(1149), 1, - anon_sym_EQ_GT, - ACTIONS(1291), 1, - anon_sym_LPAREN, - ACTIONS(1377), 1, + anon_sym_QMARK_QMARK, + ACTIONS(988), 34, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(1380), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(1383), 1, - anon_sym_EQ, - STATE(817), 1, - aux_sym_formal_parameters_repeat1, - STATE(1099), 1, - sym_formal_parameters, - ACTIONS(1145), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1072), 11, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1151), 12, + [5966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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(992), 34, + 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, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -25966,13 +27389,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1080), 19, + 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, + [6030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 22, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -25985,164 +27425,143 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(996), 34, + 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, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, - [5715] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [6094] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1387), 15, - anon_sym_LBRACE, + ACTIONS(639), 1, + anon_sym_COLON, + ACTIONS(666), 1, + anon_sym_RBRACE, + ACTIONS(1002), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1005), 1, + anon_sym_EQ, + ACTIONS(1007), 1, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1011), 1, + anon_sym_EQ_GT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + STATE(862), 1, + aux_sym_object_repeat1, + ACTIONS(1000), 11, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_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(1385), 39, - 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_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, - [5777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1391), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(980), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 21, + anon_sym_STAR, + anon_sym_in, anon_sym_LT, - 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(1389), 39, - 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_GT, anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, - [5839] = 14, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6178] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1141), 1, + ACTIONS(685), 1, anon_sym_EQ, - ACTIONS(1143), 1, + ACTIONS(687), 1, + anon_sym_LBRACK, + ACTIONS(689), 1, anon_sym_DOT, - ACTIONS(1147), 1, - anon_sym_function, - ACTIONS(1149), 1, + ACTIONS(695), 1, anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(697), 1, + anon_sym_QMARK_DOT, + ACTIONS(629), 15, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1364), 1, - anon_sym_in, - ACTIONS(1367), 1, - anon_sym_of, - STATE(1099), 1, - sym_formal_parameters, - ACTIONS(1145), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1072), 11, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1151), 12, + ACTIONS(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -26155,12 +27574,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1080), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 21, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -26173,46 +27598,112 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - [5923] = 14, + anon_sym_QMARK_QMARK, + [6254] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1135), 1, - sym_identifier, - ACTIONS(1141), 1, + ACTIONS(970), 1, anon_sym_EQ, - ACTIONS(1143), 1, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, - ACTIONS(1147), 1, - anon_sym_function, - ACTIONS(1149), 1, + ACTIONS(976), 1, anon_sym_EQ_GT, - ACTIONS(1291), 1, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(980), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1000), 15, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1393), 1, - anon_sym_in, - ACTIONS(1396), 1, - anon_sym_of, - STATE(1099), 1, - sym_formal_parameters, - ACTIONS(1145), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1072), 11, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1151), 12, + ACTIONS(998), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [6330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1015), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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(1017), 34, + 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, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -26225,12 +27716,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1080), 18, + 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, + [6394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1019), 22, anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -26243,188 +27752,508 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - [6007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 15, + anon_sym_QMARK_QMARK, + ACTIONS(1021), 34, 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_LT, - 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(1398), 39, - 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_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, + [6458] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_RBRACE, + ACTIONS(639), 1, + anon_sym_COLON, + ACTIONS(1002), 1, + anon_sym_LPAREN, + ACTIONS(1005), 1, + anon_sym_EQ, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1011), 1, + anon_sym_EQ_GT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + STATE(893), 1, + aux_sym_object_repeat1, + ACTIONS(1000), 11, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LT_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(980), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [6542] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1023), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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(1025), 34, + 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, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, + [6606] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(652), 1, + anon_sym_EQ_GT, + ACTIONS(654), 1, + anon_sym_QMARK_DOT, + ACTIONS(685), 1, + anon_sym_EQ, + ACTIONS(712), 1, + anon_sym_LBRACK, + ACTIONS(714), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + STATE(550), 1, + sym_arguments, + ACTIONS(683), 12, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LT_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(656), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(681), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [6685] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 1, + anon_sym_EQ, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1011), 1, + anon_sym_EQ_GT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + STATE(522), 1, + sym_arguments, + ACTIONS(968), 12, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LT_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(980), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(966), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [6764] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 1, + anon_sym_EQ, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(980), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1000), 15, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LT_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(998), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [6837] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(976), 1, + anon_sym_EQ_GT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1031), 1, + anon_sym_in, + ACTIONS(1034), 1, + anon_sym_of, + ACTIONS(1036), 1, + anon_sym_EQ, + STATE(876), 1, + sym__initializer, + ACTIONS(1029), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1000), 9, + anon_sym_LPAREN, + anon_sym_LT_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(980), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 20, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, - [6069] = 3, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [6920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 15, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1015), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, anon_sym_LT, - 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(1402), 39, - 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_GT, anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, - [6131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 15, - anon_sym_LBRACE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(1017), 32, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1406), 39, - 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_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, - [6193] = 3, + [6982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 15, + ACTIONS(1040), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -26440,7 +28269,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1410), 39, + ACTIONS(1038), 39, anon_sym_export, anon_sym_import, anon_sym_var, @@ -26480,128 +28309,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6255] = 3, + [7044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 15, - anon_sym_LBRACE, + ACTIONS(1019), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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(1021), 32, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1414), 39, - 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_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, - [6317] = 3, + [7106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 15, - anon_sym_LBRACE, + ACTIONS(994), 22, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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(996), 32, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LT, - anon_sym_BANG, - anon_sym_TILDE, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - sym_preproc, - ACTIONS(1418), 39, - 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_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, - [6379] = 3, + [7168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 15, + ACTIONS(1044), 15, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -26617,7 +28446,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, anon_sym_AT, sym_preproc, - ACTIONS(1422), 39, + ACTIONS(1042), 39, anon_sym_export, anon_sym_import, anon_sym_var, @@ -26657,20 +28486,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [6441] = 9, + [7230] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, - anon_sym_EQ, - ACTIONS(1143), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1149), 1, + ACTIONS(1011), 1, anon_sym_EQ_GT, - ACTIONS(1426), 1, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1046), 1, + anon_sym_in, + ACTIONS(1049), 1, + anon_sym_of, + ACTIONS(1051), 1, + anon_sym_EQ, + ACTIONS(1000), 12, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_LPAREN, - STATE(407), 1, - sym_arguments, - ACTIONS(1151), 12, + anon_sym_SEMI, + anon_sym_LT_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(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -26683,13 +28529,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1137), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -26702,39 +28552,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1139), 18, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_QMARK_QMARK, + [7308] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(652), 1, + anon_sym_EQ_GT, + ACTIONS(654), 1, + anon_sym_QMARK_DOT, + ACTIONS(712), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(714), 1, + anon_sym_DOT, + ACTIONS(726), 1, + anon_sym_EQ, + ACTIONS(730), 1, + anon_sym_in, + ACTIONS(1053), 1, + anon_sym_of, + ACTIONS(629), 12, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [6514] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1432), 1, - anon_sym_EQ, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1436), 1, - anon_sym_EQ_GT, - STATE(406), 1, - sym_arguments, - ACTIONS(1438), 12, + ACTIONS(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -26747,13 +28596,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1428), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -26766,92 +28619,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1430), 18, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [6587] = 3, + [7386] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 19, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(1442), 33, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + ACTIONS(724), 1, anon_sym_COLON, + ACTIONS(1007), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1011), 1, + anon_sym_EQ_GT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1051), 1, + anon_sym_EQ, + ACTIONS(1000), 12, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [6647] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym_EQ, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1436), 1, - anon_sym_EQ_GT, - ACTIONS(1438), 12, + ACTIONS(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -26864,13 +28661,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1444), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -26883,30 +28685,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 19, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [6715] = 3, + [7462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1448), 19, + ACTIONS(1023), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -26914,6 +28697,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -26926,17 +28711,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1450), 33, - anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + ACTIONS(1025), 32, + sym__automatic_semicolon, 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, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -26949,27 +28734,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [6775] = 7, + [7524] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1141), 1, - anon_sym_EQ, - ACTIONS(1143), 1, - anon_sym_DOT, - ACTIONS(1149), 1, + ACTIONS(652), 1, anon_sym_EQ_GT, - ACTIONS(1151), 12, + ACTIONS(654), 1, + anon_sym_QMARK_DOT, + ACTIONS(712), 1, + anon_sym_LBRACK, + ACTIONS(714), 1, + anon_sym_DOT, + ACTIONS(726), 1, + anon_sym_EQ, + ACTIONS(735), 1, + anon_sym_COLON, + ACTIONS(629), 12, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LT_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(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -26982,13 +28786,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1080), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -27001,44 +28810,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1072), 19, - anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + [7600] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(652), 1, + anon_sym_EQ_GT, + ACTIONS(654), 1, + anon_sym_QMARK_DOT, + ACTIONS(712), 1, + anon_sym_LBRACK, + ACTIONS(714), 1, + anon_sym_DOT, + ACTIONS(726), 1, + anon_sym_EQ, + ACTIONS(629), 13, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [6843] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1082), 1, - anon_sym_COLON, - ACTIONS(1104), 1, - anon_sym_RBRACE, - ACTIONS(1452), 1, - anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_EQ, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1459), 1, - anon_sym_EQ_GT, - STATE(870), 1, - aux_sym_object_repeat1, - ACTIONS(1461), 12, + ACTIONS(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -27051,29 +28851,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 15, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1444), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -27086,17 +28875,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [6919] = 3, + anon_sym_QMARK_QMARK, + [7674] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 19, + ACTIONS(735), 1, + anon_sym_COLON, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1011), 1, + anon_sym_EQ_GT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1051), 1, + anon_sym_EQ, + ACTIONS(1000), 12, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LT_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(980), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 21, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -27109,17 +28941,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1391), 33, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_QMARK_QMARK, + [7750] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(652), 1, + anon_sym_EQ_GT, + ACTIONS(654), 1, + anon_sym_QMARK_DOT, + ACTIONS(712), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(714), 1, anon_sym_DOT, + ACTIONS(724), 1, + anon_sym_COLON, + ACTIONS(726), 1, + anon_sym_EQ, + ACTIONS(629), 12, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LT_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(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -27132,21 +28983,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [6979] = 3, + [7826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 19, + ACTIONS(982), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -27154,6 +29019,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -27166,17 +29033,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1465), 33, - anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + ACTIONS(984), 32, + sym__automatic_semicolon, 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, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -27189,111 +29056,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7039] = 11, + [7888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1074), 1, - anon_sym_RBRACE, - ACTIONS(1082), 1, - anon_sym_COLON, - ACTIONS(1452), 1, + ACTIONS(1057), 15, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(1455), 1, - anon_sym_EQ, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1459), 1, - anon_sym_EQ_GT, - STATE(838), 1, - aux_sym_object_repeat1, - ACTIONS(1461), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 15, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + anon_sym_LT, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(1444), 18, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(1055), 39, + 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_SLASH, - anon_sym_QMARK, - 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, - [7115] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1432), 1, - anon_sym_EQ, - STATE(406), 1, - sym_arguments, - ACTIONS(1438), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1428), 18, + 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, + [7950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 22, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -27306,32 +29151,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1430), 19, - anon_sym_LBRACE, + anon_sym_QMARK_QMARK, + ACTIONS(992), 32, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [7183] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym_EQ, - ACTIONS(1438), 12, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -27344,122 +29174,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1444), 18, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(1446), 20, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7246] = 9, + [8012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1096), 1, - anon_sym_EQ_GT, - ACTIONS(1141), 1, + ACTIONS(1061), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + 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(1059), 39, + 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_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, + [8074] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 1, anon_sym_EQ, - ACTIONS(1358), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1027), 1, anon_sym_LPAREN, - STATE(535), 1, + STATE(522), 1, sym_arguments, - ACTIONS(1151), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1139), 16, + ACTIONS(968), 12, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1137), 18, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_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, - [7317] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym_EQ, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1459), 1, - anon_sym_EQ_GT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - STATE(540), 1, - sym_arguments, - ACTIONS(1438), 12, + ACTIONS(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -27472,30 +29285,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1430), 16, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1428), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(966), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -27508,143 +29309,153 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [7388] = 11, + anon_sym_QMARK_QMARK, + [8150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1436), 1, - anon_sym_EQ_GT, - ACTIONS(1471), 1, - anon_sym_in, - ACTIONS(1474), 1, - anon_sym_of, - ACTIONS(1476), 1, - anon_sym_EQ, - STATE(839), 1, - sym__initializer, - ACTIONS(1469), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(1065), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(1438), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 13, + anon_sym_LBRACK, + anon_sym_LT, + 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(1063), 39, + 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_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, + [8212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 15, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + anon_sym_LT, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(1444), 17, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(1067), 39, + 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_SLASH, - anon_sym_QMARK, - 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, - [7463] = 7, + 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, + [8274] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1011), 1, + anon_sym_EQ_GT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1051), 1, anon_sym_EQ, - ACTIONS(1467), 1, - anon_sym_LPAREN, - STATE(540), 1, - sym_arguments, - ACTIONS(1438), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1430), 17, + ACTIONS(1000), 13, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1428), 18, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_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, - [7529] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1096), 1, - anon_sym_EQ_GT, - ACTIONS(1358), 1, - anon_sym_DOT, - ACTIONS(1364), 1, - anon_sym_in, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(1478), 1, - anon_sym_of, - ACTIONS(1098), 12, + ACTIONS(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -27657,29 +29468,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 16, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1080), 17, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 21, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -27692,130 +29492,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [7599] = 9, + anon_sym_QMARK_QMARK, + [8348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1459), 1, - anon_sym_EQ_GT, - ACTIONS(1480), 1, - anon_sym_in, - ACTIONS(1483), 1, - anon_sym_of, - ACTIONS(1485), 1, - anon_sym_EQ, - ACTIONS(1461), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 16, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(1073), 15, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + anon_sym_LT, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(1444), 17, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(1071), 39, + 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_SLASH, - anon_sym_QMARK, - 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, - [7669] = 7, + 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, + [8410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1096), 1, - anon_sym_EQ_GT, - ACTIONS(1358), 1, - anon_sym_DOT, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(1098), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 17, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(992), 15, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + anon_sym_LT, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(1080), 18, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + sym_number, + anon_sym_AT, + sym_preproc, + ACTIONS(990), 39, + 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_SLASH, - anon_sym_QMARK, - 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, - [7735] = 3, + 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, + [8472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1448), 19, + ACTIONS(986), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -27823,6 +29622,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -27835,7 +29636,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1450), 31, + anon_sym_QMARK_QMARK, + ACTIONS(988), 32, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -27844,6 +29646,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -27856,84 +29659,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7793] = 3, + [8534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 19, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, + ACTIONS(1077), 15, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_LT, - anon_sym_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(1075), 39, + 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_SLASH, - anon_sym_QMARK, - 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, - ACTIONS(1442), 31, + 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, + [8596] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1046), 1, + anon_sym_in, + ACTIONS(1049), 1, + anon_sym_of, + ACTIONS(1051), 1, + anon_sym_EQ, + ACTIONS(1000), 12, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [7851] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1371), 1, - anon_sym_COLON, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1459), 1, - anon_sym_EQ_GT, - ACTIONS(1485), 1, - anon_sym_EQ, - ACTIONS(1461), 12, + ACTIONS(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -27946,30 +29770,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 16, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1444), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -27982,16 +29793,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [7919] = 7, + anon_sym_QMARK_QMARK, + [8671] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 1, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, - ACTIONS(1459), 1, + ACTIONS(976), 1, anon_sym_EQ_GT, - ACTIONS(1485), 1, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1079), 1, + anon_sym_COMMA, + ACTIONS(1082), 1, + anon_sym_RPAREN, + ACTIONS(1085), 1, anon_sym_EQ, - ACTIONS(1461), 12, + STATE(895), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(1000), 9, + anon_sym_LPAREN, + anon_sym_LT_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(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28004,31 +29836,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 17, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1444), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -28041,54 +29860,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [7985] = 8, + anon_sym_QMARK_QMARK, + [8750] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1373), 1, - anon_sym_COLON, - ACTIONS(1457), 1, + ACTIONS(687), 1, + anon_sym_LBRACK, + ACTIONS(689), 1, anon_sym_DOT, - ACTIONS(1459), 1, + ACTIONS(695), 1, anon_sym_EQ_GT, - ACTIONS(1485), 1, - anon_sym_EQ, - ACTIONS(1461), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 16, - sym__automatic_semicolon, + ACTIONS(697), 1, + anon_sym_QMARK_DOT, + ACTIONS(741), 1, anon_sym_COMMA, + ACTIONS(744), 1, + anon_sym_RPAREN, + ACTIONS(747), 1, + anon_sym_EQ, + STATE(881), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(629), 9, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1444), 18, + ACTIONS(656), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -28101,38 +29927,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [8053] = 3, + anon_sym_QMARK_QMARK, + [8829] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1463), 19, - anon_sym_STAR, - anon_sym_in, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1051), 1, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_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, - ACTIONS(1465), 31, + ACTIONS(1000), 13, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_LT_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(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28145,21 +29966,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 21, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [8111] = 3, + [8900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1389), 19, + ACTIONS(982), 22, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -28167,6 +30002,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -28179,15 +30016,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1391), 31, + anon_sym_QMARK_QMARK, + ACTIONS(984), 30, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28200,89 +30037,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8169] = 8, + [8960] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1096), 1, - anon_sym_EQ_GT, - ACTIONS(1358), 1, - anon_sym_DOT, - ACTIONS(1369), 1, + ACTIONS(970), 1, anon_sym_EQ, - ACTIONS(1373), 1, - anon_sym_COLON, - ACTIONS(1098), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 16, - sym__automatic_semicolon, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(976), 1, + anon_sym_EQ_GT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1087), 2, anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1000), 9, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1080), 18, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_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, - [8237] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1096), 1, - anon_sym_EQ_GT, - ACTIONS(1358), 1, - anon_sym_DOT, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(1371), 1, - anon_sym_COLON, - ACTIONS(1098), 12, + ACTIONS(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28295,30 +30087,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 16, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1080), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 21, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -28331,70 +30111,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [8305] = 3, + anon_sym_QMARK_QMARK, + [9034] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 22, - anon_sym_export, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(685), 1, + anon_sym_EQ, + ACTIONS(687), 1, + anon_sym_LBRACK, + ACTIONS(689), 1, anon_sym_DOT, - anon_sym_class, - anon_sym_async, - anon_sym_QMARK, - 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, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1489), 27, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(695), 1, + anon_sym_EQ_GT, + ACTIONS(697), 1, + anon_sym_QMARK_DOT, + ACTIONS(730), 1, + anon_sym_in, + ACTIONS(1053), 1, + anon_sym_of, + ACTIONS(629), 9, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - 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_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - [8362] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1480), 1, - anon_sym_in, - ACTIONS(1483), 1, - anon_sym_of, - ACTIONS(1485), 1, - anon_sym_EQ, - ACTIONS(1461), 12, + ACTIONS(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28407,12 +30152,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1444), 17, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 20, anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -28425,94 +30175,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 17, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [9109] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 1, + anon_sym_EQ, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(976), 1, + anon_sym_EQ_GT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1046), 1, + anon_sym_in, + ACTIONS(1049), 1, + anon_sym_of, + ACTIONS(1000), 9, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 22, - anon_sym_export, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_DOT, - anon_sym_class, - anon_sym_async, - anon_sym_QMARK, - 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, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(1493), 27, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(980), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 20, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, anon_sym_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, + [9184] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(685), 1, + anon_sym_EQ, + ACTIONS(687), 1, + anon_sym_LBRACK, + ACTIONS(689), 1, + anon_sym_DOT, + ACTIONS(695), 1, + anon_sym_EQ_GT, + ACTIONS(697), 1, + anon_sym_QMARK_DOT, + ACTIONS(959), 1, + anon_sym_in, + ACTIONS(1090), 1, + anon_sym_of, + ACTIONS(629), 9, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - [8484] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1143), 1, - anon_sym_DOT, - ACTIONS(1149), 1, - anon_sym_EQ_GT, - ACTIONS(1377), 1, - anon_sym_COMMA, - ACTIONS(1380), 1, - anon_sym_RPAREN, - ACTIONS(1383), 1, - anon_sym_EQ, - STATE(817), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(1151), 12, + ACTIONS(656), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28525,27 +30280,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 13, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1080), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(637), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -28558,12 +30303,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [8555] = 5, + anon_sym_QMARK_QMARK, + [9259] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 1, + ACTIONS(970), 1, anon_sym_EQ, - ACTIONS(1461), 12, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(976), 1, + anon_sym_EQ_GT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1031), 1, + anon_sym_in, + ACTIONS(1034), 1, + anon_sym_of, + ACTIONS(1000), 9, + anon_sym_LPAREN, + anon_sym_LT_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(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28576,13 +30344,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1444), 18, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -28595,41 +30367,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 18, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [9334] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 1, + anon_sym_EQ, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1046), 1, + anon_sym_in, + ACTIONS(1049), 1, + anon_sym_of, + ACTIONS(1000), 9, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [8616] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1436), 1, - anon_sym_EQ_GT, - ACTIONS(1495), 1, - anon_sym_COMMA, - ACTIONS(1498), 1, - anon_sym_RPAREN, - ACTIONS(1501), 1, - anon_sym_EQ, - STATE(813), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(1438), 12, + ACTIONS(980), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -28642,27 +30406,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 13, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 20, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_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, + [9406] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(970), 1, + anon_sym_EQ, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1031), 1, + anon_sym_in, + ACTIONS(1034), 1, + anon_sym_of, + ACTIONS(1000), 9, + anon_sym_LPAREN, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1444), 18, + ACTIONS(980), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(998), 20, anon_sym_STAR, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, @@ -28675,10 +30491,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [8687] = 3, + anon_sym_QMARK_QMARK, + [9478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 22, + ACTIONS(1092), 22, anon_sym_export, anon_sym_STAR, anon_sym_in, @@ -28701,7 +30518,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(1505), 27, + ACTIONS(1094), 28, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -28710,6 +30527,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -28729,427 +30547,375 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - [8744] = 8, + [9536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, - anon_sym_EQ, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1436), 1, - anon_sym_EQ_GT, - ACTIONS(1507), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1438), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 13, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1444), 18, + ACTIONS(1096), 22, + anon_sym_export, anon_sym_STAR, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_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, - [8810] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1141), 1, - anon_sym_EQ, - ACTIONS(1143), 1, - anon_sym_DOT, - ACTIONS(1149), 1, - anon_sym_EQ_GT, - ACTIONS(1364), 1, - anon_sym_in, - ACTIONS(1478), 1, - anon_sym_of, - ACTIONS(1151), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 13, + anon_sym_instanceof, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1098), 28, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1080), 17, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, anon_sym_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, - [8877] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1141), 1, - anon_sym_EQ, - ACTIONS(1143), 1, - anon_sym_DOT, - ACTIONS(1149), 1, - anon_sym_EQ_GT, - ACTIONS(1393), 1, - anon_sym_in, - ACTIONS(1510), 1, - anon_sym_of, - ACTIONS(1151), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1072), 13, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(1080), 17, + sym_number, + anon_sym_AT, + [9594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1100), 22, + anon_sym_export, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_DOT, + anon_sym_class, + anon_sym_async, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_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, - [8944] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym_EQ, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1436), 1, - anon_sym_EQ_GT, - ACTIONS(1480), 1, - anon_sym_in, - ACTIONS(1483), 1, - anon_sym_of, - ACTIONS(1438), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 13, + anon_sym_instanceof, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1102), 28, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_BQUOTE, - ACTIONS(1444), 17, + sym_number, + anon_sym_AT, + [9652] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, + anon_sym_DQUOTE, + ACTIONS(77), 1, + anon_sym_SQUOTE, + ACTIONS(1104), 1, + sym_identifier, + ACTIONS(1106), 1, anon_sym_STAR, + ACTIONS(1108), 1, + anon_sym_LBRACE, + STATE(933), 1, + sym_string, + STATE(935), 1, + sym_import_clause, + STATE(1163), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(1112), 13, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_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, - [9011] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym_EQ, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1436), 1, - anon_sym_EQ_GT, - ACTIONS(1471), 1, - anon_sym_in, - ACTIONS(1474), 1, - anon_sym_of, - ACTIONS(1438), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 13, + anon_sym_instanceof, + ACTIONS(1110), 22, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_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(1444), 17, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + [9720] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1132), 1, anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [9078] = 7, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1116), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [9805] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, - anon_sym_EQ, - ACTIONS(1480), 1, - anon_sym_in, - ACTIONS(1483), 1, - anon_sym_of, - ACTIONS(1438), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 14, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1444), 17, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_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, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [9140] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym_EQ, - ACTIONS(1471), 1, - anon_sym_in, - ACTIONS(1474), 1, - anon_sym_of, - ACTIONS(1438), 12, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - ACTIONS(1446), 14, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1138), 5, anon_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(1144), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [9890] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1444), 17, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1146), 13, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1148), 19, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [9202] = 11, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [9953] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_DQUOTE, - ACTIONS(77), 1, - anon_sym_SQUOTE, - ACTIONS(1512), 1, - sym_identifier, - ACTIONS(1514), 1, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1146), 13, anon_sym_STAR, - ACTIONS(1516), 1, - anon_sym_LBRACE, - STATE(895), 1, - sym_string, - STATE(904), 1, - sym_import_clause, - STATE(1131), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(1520), 13, anon_sym_in, anon_sym_LT, anon_sym_GT, @@ -29162,14 +30928,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1518), 21, - sym__automatic_semicolon, + ACTIONS(1148), 19, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + 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, @@ -29182,24 +30947,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [9269] = 8, + anon_sym_instanceof, + [10016] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - STATE(418), 2, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1522), 13, + ACTIONS(1146), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -29213,7 +30981,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1524), 21, + ACTIONS(1148), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -29233,77 +31001,88 @@ static 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, - [9327] = 20, + [10079] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1530), 6, + ACTIONS(1150), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [9409] = 3, + [10164] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 14, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1152), 1, + anon_sym_EQ, + STATE(435), 1, + sym_arguments, + ACTIONS(966), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -29315,17 +31094,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1558), 26, + ACTIONS(968), 22, 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -29342,255 +31117,456 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9457] = 17, + [10225] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1536), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1548), 1, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1546), 2, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1562), 2, - anon_sym_QMARK, - anon_sym_PIPE, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1560), 9, + ACTIONS(1154), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [9533] = 20, + [10310] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1156), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [10395] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1158), 14, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1160), 27, + 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, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10444] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1162), 1, + anon_sym_EQ, + STATE(435), 1, + sym_arguments, + ACTIONS(966), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(968), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 14, anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(1540), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1166), 27, + 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, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1532), 5, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1168), 14, + anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1550), 5, + ACTIONS(1170), 27, + 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, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_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(1564), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [9615] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [10603] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1566), 6, + ACTIONS(1172), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [9697] = 20, + [10688] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1568), 6, + ACTIONS(1174), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [9779] = 3, + [10773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1570), 14, + ACTIONS(430), 14, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -29605,7 +31581,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1572), 26, + ACTIONS(432), 27, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -29616,6 +31592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -29632,10 +31609,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9827] = 3, + [10822] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1176), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [10907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1574), 14, + ACTIONS(1178), 14, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -29650,7 +31691,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1576), 26, + ACTIONS(1180), 27, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -29661,6 +31702,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -29677,354 +31719,321 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [9875] = 19, + [10956] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1536), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1562), 1, - anon_sym_QMARK, - ACTIONS(1538), 2, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1560), 7, + ACTIONS(1182), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [9955] = 20, + [11041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1184), 14, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1544), 1, anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1578), 6, + ACTIONS(1186), 27, 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, - [10037] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, + anon_sym_BQUOTE, + [11090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1188), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1580), 6, + ACTIONS(1190), 27, 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, - [10119] = 20, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [11139] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1582), 6, + ACTIONS(1192), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [10201] = 20, + [11224] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1584), 6, + ACTIONS(1194), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [10283] = 12, + [11309] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1196), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1562), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(1560), 15, + ACTIONS(1198), 21, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -30033,81 +32042,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [10349] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [11370] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 1, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_EQ, - STATE(406), 1, - sym_arguments, - ACTIONS(1428), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, + ACTIONS(1132), 1, anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1430), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10403] = 10, + ACTIONS(1200), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [11455] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1548), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1562), 13, + ACTIONS(1202), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -30121,7 +32154,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1560), 18, + ACTIONS(1204), 18, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -30140,18 +32173,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [10465] = 6, + [11520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_EQ, - STATE(406), 1, - sym_arguments, - ACTIONS(1428), 13, + ACTIONS(1206), 14, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -30163,15 +32191,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1430), 24, + ACTIONS(1208), 27, 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, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -30188,229 +32219,302 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10519] = 3, + [11569] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1590), 14, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1202), 8, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(1592), 26, + ACTIONS(1204), 15, 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10567] = 5, + [11640] = 16, ACTIONS(3), 1, sym_comment, - STATE(398), 1, - sym_arguments, - STATE(418), 1, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, sym_template_string, - ACTIONS(1428), 13, + sym_arguments, + ACTIONS(1114), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1202), 3, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1430), 25, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1204), 10, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10619] = 20, + [11715] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + ACTIONS(1202), 2, + anon_sym_QMARK, + anon_sym_PIPE, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1594), 6, + ACTIONS(1204), 9, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [10701] = 20, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [11794] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1202), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1204), 15, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(1596), 6, + [11863] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1202), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1204), 19, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [10783] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [11926] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 14, + ACTIONS(430), 1, + anon_sym_EQ, + ACTIONS(1210), 1, + sym__automatic_semicolon, + ACTIONS(428), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -30422,17 +32526,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(443), 26, + ACTIONS(426), 26, 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, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -30449,288 +32553,267 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [10831] = 20, + [11979] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1202), 1, + anon_sym_QMARK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1598), 6, + ACTIONS(1204), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [10913] = 3, + anon_sym_QMARK_QMARK, + [12062] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1600), 14, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1602), 26, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(972), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [10961] = 20, + ACTIONS(1212), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [12147] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(1604), 6, + ACTIONS(1214), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [11043] = 9, + [12232] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1606), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, + ACTIONS(1132), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1608), 19, - anon_sym_LBRACE, - 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, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [11103] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1554), 2, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1606), 13, + ACTIONS(1114), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1608), 19, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1216), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [11163] = 6, + [12317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1444), 13, + ACTIONS(1210), 1, + sym__automatic_semicolon, + ACTIONS(428), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -30744,15 +32827,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 23, + ACTIONS(426), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -30768,75 +32853,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [11217] = 9, + anon_sym_BQUOTE, + [12367] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1554), 2, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1606), 13, + ACTIONS(1114), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1608), 19, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1220), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [11277] = 9, + [12453] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1562), 13, + ACTIONS(1226), 1, + sym_regex_flags, + ACTIONS(1222), 14, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -30850,13 +32937,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1560), 19, + anon_sym_instanceof, + ACTIONS(1224), 25, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -30869,15 +32961,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [11337] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [12503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 1, - anon_sym_EQ, - ACTIONS(1610), 1, - sym__automatic_semicolon, - ACTIONS(439), 13, + ACTIONS(1228), 1, + anon_sym_EQ_GT, + ACTIONS(1092), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -30891,7 +32983,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(437), 25, + ACTIONS(1094), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -30901,6 +32993,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -30917,13 +33010,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11389] = 3, + [12553] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1612), 14, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + STATE(435), 1, + sym_arguments, + ACTIONS(966), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -30935,17 +33037,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1614), 26, + ACTIONS(968), 22, 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -30962,75 +33060,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11437] = 20, + [12611] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1616), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [11519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1618), 14, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1162), 1, + anon_sym_EQ, + ACTIONS(998), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -31042,17 +33085,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1620), 26, + ACTIONS(1000), 23, 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31069,310 +33109,149 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [11567] = 13, + [12667] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1152), 1, + anon_sym_EQ, + ACTIONS(998), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1562), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(1560), 15, + ACTIONS(1000), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [11635] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, + anon_sym_BQUOTE, + [12723] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1230), 1, + sym__automatic_semicolon, + ACTIONS(438), 13, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1562), 3, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1560), 10, + ACTIONS(436), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [11707] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, + anon_sym_STAR_STAR, anon_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(1622), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [11789] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [12773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1232), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1544), 1, anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1624), 6, + ACTIONS(1234), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, - [11871] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, + anon_sym_STAR_STAR, anon_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(1626), 6, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [11953] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [12820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1628), 1, - anon_sym_EQ_GT, - ACTIONS(1487), 13, + ACTIONS(1236), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -31386,7 +33265,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 25, + ACTIONS(1200), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -31396,6 +33275,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31412,12 +33292,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12002] = 4, + [12867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1630), 1, - sym__automatic_semicolon, - ACTIONS(541), 13, + ACTIONS(1238), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -31431,7 +33309,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(539), 25, + ACTIONS(1240), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -31441,6 +33319,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31457,12 +33336,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12051] = 4, + [12914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1636), 1, - sym_regex_flags, - ACTIONS(1632), 14, + ACTIONS(492), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -31476,8 +33353,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1634), 24, + ACTIONS(494), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -31487,6 +33363,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31499,77 +33376,76 @@ static 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, - [12100] = 21, + [12961] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(1007), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, - anon_sym_COMMA, - ACTIONS(1538), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1640), 4, + ACTIONS(1192), 4, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(1532), 5, + anon_sym_SEMI, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [12183] = 4, + [13044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1586), 1, - anon_sym_EQ, - ACTIONS(1444), 13, + ACTIONS(446), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -31583,7 +33459,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 25, + ACTIONS(448), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -31593,6 +33469,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31609,14 +33486,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12232] = 5, + [13091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 1, - anon_sym_LPAREN, - STATE(406), 1, - sym_arguments, - ACTIONS(1428), 13, + ACTIONS(460), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -31630,15 +33503,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1430), 24, + ACTIONS(462), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31655,12 +33530,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12283] = 4, + [13138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 1, - anon_sym_EQ, - ACTIONS(1444), 13, + ACTIONS(480), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -31674,7 +33547,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 25, + ACTIONS(482), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -31684,6 +33557,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31700,12 +33574,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12332] = 4, + [13185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 1, - sym__automatic_semicolon, - ACTIONS(439), 13, + ACTIONS(470), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -31719,7 +33591,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(437), 25, + ACTIONS(472), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -31729,6 +33601,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31745,10 +33618,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12381] = 3, + [13232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1642), 13, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(998), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -31762,16 +33641,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 25, + ACTIONS(1000), 23, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31788,14 +33665,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12427] = 5, + [13285] = 3, ACTIONS(3), 1, sym_comment, - STATE(418), 1, - sym_template_string, - STATE(547), 1, - sym_arguments, - ACTIONS(1428), 13, + ACTIONS(998), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -31809,14 +33682,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1430), 23, - sym__automatic_semicolon, + ACTIONS(1000), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31833,10 +33709,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12477] = 3, + [13332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1590), 14, + ACTIONS(434), 1, + sym__automatic_semicolon, + ACTIONS(426), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(430), 14, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -31851,15 +33732,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1592), 24, - sym__automatic_semicolon, + ACTIONS(432), 22, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31876,12 +33755,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12523] = 3, + [13383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(471), 13, + ACTIONS(1184), 14, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -31893,16 +33773,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(473), 25, - anon_sym_LBRACE, + ACTIONS(1186), 25, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -31919,72 +33799,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12569] = 20, + [13430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1270), 14, + anon_sym_STAR, + anon_sym_in, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1662), 1, anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1598), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1272), 25, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [12649] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 13, + ACTIONS(1178), 14, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -31996,16 +33861,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 25, - anon_sym_LBRACE, + ACTIONS(1180), 25, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32022,10 +33887,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12695] = 3, + [13524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 13, + ACTIONS(510), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32039,7 +33904,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(453), 25, + ACTIONS(508), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -32049,6 +33914,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32065,250 +33931,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [12741] = 20, + [13571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, - anon_sym_QMARK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1112), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1580), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1648), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [12821] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1662), 1, anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1564), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [12901] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, - anon_sym_QMARK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1604), 4, - sym__automatic_semicolon, + ACTIONS(1110), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [12981] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1652), 1, - anon_sym_QMARK, - ACTIONS(1654), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1594), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [13061] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [13618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1674), 13, + ACTIONS(438), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32322,7 +33992,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 25, + ACTIONS(436), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -32332,6 +34002,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32348,61 +34019,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13107] = 8, + [13665] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1680), 1, - anon_sym_in, - ACTIONS(1683), 1, - anon_sym_of, - ACTIONS(1685), 1, - anon_sym_EQ, - STATE(868), 1, - sym__initializer, - ACTIONS(1678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1444), 12, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, anon_sym_AMP, + ACTIONS(1258), 1, anon_sym_PIPE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1252), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1446), 19, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1182), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [13163] = 3, + [13748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 14, + ACTIONS(1274), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -32414,15 +34098,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(443), 24, - sym__automatic_semicolon, + ACTIONS(1276), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32439,23 +34125,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13209] = 8, + [13795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1689), 1, - anon_sym_in, - ACTIONS(1692), 1, - anon_sym_of, - ACTIONS(1694), 1, - anon_sym_EQ, - STATE(867), 1, - sym__initializer, - ACTIONS(1687), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1444), 12, + ACTIONS(1278), 13, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -32467,10 +34142,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 19, + ACTIONS(1280), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32487,10 +34169,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13265] = 3, + [13842] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1696), 13, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1162), 1, + anon_sym_EQ, + STATE(522), 1, + sym_arguments, + ACTIONS(966), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32504,16 +34198,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1530), 25, - anon_sym_LBRACE, + ACTIONS(968), 20, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32530,12 +34219,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13311] = 3, + [13901] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1698), 13, - anon_sym_STAR, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1284), 1, anon_sym_in, + ACTIONS(1287), 1, + anon_sym_of, + ACTIONS(1289), 1, + anon_sym_EQ, + STATE(878), 1, + sym__initializer, + ACTIONS(1282), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(998), 12, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -32547,16 +34253,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 25, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1000), 17, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32573,12 +34271,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13357] = 3, + [13964] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 13, - anon_sym_STAR, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1293), 1, anon_sym_in, + ACTIONS(1296), 1, + anon_sym_of, + ACTIONS(1298), 1, + anon_sym_EQ, + STATE(877), 1, + sym__initializer, + ACTIONS(1291), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(998), 12, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -32590,16 +34305,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(535), 25, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1000), 17, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32616,10 +34323,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13403] = 3, + [14027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 13, + ACTIONS(1300), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32633,7 +34340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(521), 25, + ACTIONS(1302), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -32643,6 +34350,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32659,13 +34367,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13449] = 3, + [14074] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1700), 14, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, + anon_sym_QMARK, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, + anon_sym_AMP, + ACTIONS(1258), 1, + anon_sym_PIPE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1252), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1144), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [14157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -32677,15 +34446,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1702), 24, - sym__automatic_semicolon, + ACTIONS(1306), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32702,73 +34473,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13495] = 20, + [14204] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1568), 4, + ACTIONS(1200), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1648), 5, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [13575] = 3, + [14287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1570), 14, + ACTIONS(1308), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -32780,15 +34552,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1572), 24, - sym__automatic_semicolon, + ACTIONS(1310), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32805,12 +34579,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13621] = 3, + [14334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 13, + ACTIONS(430), 14, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -32822,16 +34597,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(511), 25, - anon_sym_LBRACE, + ACTIONS(432), 25, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32848,13 +34623,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13667] = 3, + [14381] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1612), 14, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1202), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -32866,15 +34658,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1614), 24, + ACTIONS(1204), 16, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [14444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1314), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32891,70 +34719,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13713] = 20, + [14491] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(1007), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1704), 4, + ACTIONS(1174), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1532), 5, + anon_sym_SEMI, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [14574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1168), 14, + anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1550), 5, + ACTIONS(1170), 25, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [13793] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [14621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(495), 13, + ACTIONS(1316), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -32968,7 +34842,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(497), 25, + ACTIONS(1318), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -32978,6 +34852,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -32994,70 +34869,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13839] = 20, + [14668] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1582), 4, - sym__automatic_semicolon, + ACTIONS(1320), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1648), 5, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [13919] = 3, + [14751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1618), 14, + ACTIONS(1164), 14, anon_sym_STAR, anon_sym_in, anon_sym_EQ, @@ -33072,7 +34949,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1620), 24, + ACTIONS(1166), 25, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -33081,6 +34958,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -33097,218 +34975,313 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [13965] = 3, + [14798] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1706), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1202), 8, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(1708), 25, - anon_sym_LBRACE, + ACTIONS(1204), 13, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + 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, - [14011] = 20, + [14867] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1616), 4, + ACTIONS(1156), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1648), 5, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [14091] = 20, + [14950] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, - anon_sym_QMARK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1202), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1596), 4, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(1204), 8, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1648), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [15023] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, + anon_sym_AMP, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1202), 2, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [14171] = 5, + ACTIONS(1204), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [15100] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(445), 1, - sym__automatic_semicolon, - ACTIONS(437), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(441), 14, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1202), 10, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - 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(443), 21, + ACTIONS(1204), 13, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14221] = 3, + [15167] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1700), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1202), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33322,16 +35295,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1702), 25, - anon_sym_LBRACE, + ACTIONS(1204), 17, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -33345,56 +35313,195 @@ static 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, - [14267] = 3, + [15228] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1710), 13, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1202), 1, + anon_sym_QMARK, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, + anon_sym_AMP, + ACTIONS(1258), 1, + anon_sym_PIPE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1252), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1204), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [15309] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, anon_sym_AMP, + ACTIONS(1258), 1, anon_sym_PIPE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1252), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1712), 25, - anon_sym_LBRACE, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1212), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [15392] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1009), 1, anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, + anon_sym_QMARK, + ACTIONS(1250), 1, anon_sym_AMP_AMP, + ACTIONS(1256), 1, + anon_sym_AMP, + ACTIONS(1258), 1, + anon_sym_PIPE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1214), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14313] = 3, + [15475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1714), 13, + ACTIONS(454), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33408,7 +35515,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1716), 25, + ACTIONS(452), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -33418,6 +35525,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -33434,10 +35542,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14359] = 3, + [15522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1718), 13, + ACTIONS(1322), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33451,7 +35559,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1720), 25, + ACTIONS(1324), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -33461,6 +35569,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -33477,10 +35586,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14405] = 3, + [15569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1722), 13, + ACTIONS(1326), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33494,7 +35603,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1724), 25, + ACTIONS(1328), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -33504,6 +35613,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -33520,10 +35630,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14451] = 3, + [15616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1726), 13, + ACTIONS(1330), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33537,7 +35647,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 25, + ACTIONS(1194), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -33547,6 +35657,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -33563,10 +35674,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14497] = 3, + [15663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 13, + ACTIONS(526), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33580,7 +35691,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(487), 25, + ACTIONS(528), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -33590,6 +35701,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -33606,17 +35718,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14543] = 6, + [15710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1467), 1, - anon_sym_LPAREN, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1444), 13, + ACTIONS(516), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33630,13 +35735,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 21, - sym__automatic_semicolon, + ACTIONS(518), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -33652,163 +35761,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [14595] = 20, + anon_sym_BQUOTE, + [15757] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1626), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [14675] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1562), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1560), 16, + ACTIONS(1116), 4, sym__automatic_semicolon, 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, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [14735] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1714), 13, - anon_sym_STAR, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1716), 25, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP_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(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [14781] = 3, + [15840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1730), 13, + ACTIONS(502), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -33822,7 +35841,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1732), 25, + ACTIONS(504), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -33832,6 +35851,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -33848,301 +35868,160 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [14827] = 13, + [15887] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, + ACTIONS(1007), 1, anon_sym_LBRACK, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1562), 8, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1560), 13, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [14893] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1624), 4, + ACTIONS(1216), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1648), 5, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [14973] = 15, + [15970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1562), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1646), 3, + ACTIONS(1332), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1648), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1668), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1560), 8, - sym__automatic_semicolon, + ACTIONS(1334), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [15043] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(1654), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1562), 2, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(1664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(1560), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [15117] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1672), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, + anon_sym_BQUOTE, + [16017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1562), 10, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, + 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(1560), 13, - sym__automatic_semicolon, + ACTIONS(1338), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15181] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1672), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1562), 13, + anon_sym_BQUOTE, + [16064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34156,11 +36035,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1560), 17, - sym__automatic_semicolon, + ACTIONS(1342), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -34174,189 +36059,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15239] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1562), 1, + ACTIONS(1344), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1662), 1, anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1346), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1560), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15317] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1348), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1662), 1, anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1350), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1584), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15397] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1270), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1662), 1, anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1272), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1622), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15477] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 13, + ACTIONS(1352), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34370,7 +36211,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1736), 25, + ACTIONS(1354), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -34380,6 +36221,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -34396,10 +36238,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15523] = 3, + [16299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1738), 13, + ACTIONS(1356), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34413,7 +36255,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1740), 25, + ACTIONS(1358), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -34423,6 +36265,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -34439,73 +36282,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15569] = 20, + [16346] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1578), 4, + ACTIONS(1194), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1648), 5, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [15649] = 3, + [16429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1722), 14, + ACTIONS(1360), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -34517,15 +36361,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1724), 24, - sym__automatic_semicolon, + ACTIONS(1362), 26, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -34542,23 +36388,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [15695] = 8, + [16476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1364), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1216), 26, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1650), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1522), 13, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [16523] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 14, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -34570,11 +36450,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1524), 19, + ACTIONS(1280), 25, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -34590,24 +36475,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [15751] = 9, + anon_sym_BQUOTE, + [16570] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1606), 13, + ACTIONS(1196), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34621,7 +36506,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1608), 17, + ACTIONS(1198), 19, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -34639,24 +36524,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15809] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [16629] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1672), 2, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1606), 13, + ACTIONS(1146), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34670,7 +36559,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1608), 17, + ACTIONS(1148), 17, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -34688,84 +36577,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15867] = 20, + [16690] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, - anon_sym_QMARK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1146), 13, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(1658), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1530), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1148), 17, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [15947] = 9, + [16751] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1672), 2, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1606), 13, + ACTIONS(1146), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34779,7 +36661,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1608), 17, + ACTIONS(1148), 17, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -34797,10 +36679,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [16005] = 3, + [16812] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1742), 13, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1152), 1, + anon_sym_EQ, + STATE(522), 1, + sym_arguments, + ACTIONS(966), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34814,16 +36708,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1744), 25, - anon_sym_LBRACE, + ACTIONS(968), 20, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -34840,10 +36729,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16051] = 3, + [16871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 13, + ACTIONS(1366), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34857,7 +36746,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(483), 25, + ACTIONS(1368), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -34867,6 +36756,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -34883,18 +36773,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16097] = 6, + [16918] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1588), 1, - anon_sym_EQ, - STATE(540), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, + anon_sym_QMARK, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, + anon_sym_AMP, + ACTIONS(1258), 1, + anon_sym_PIPE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1252), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, sym_arguments, - ACTIONS(1428), 13, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1150), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [17001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1158), 14, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -34906,13 +36853,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1430), 22, + ACTIONS(1160), 25, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -34929,10 +36879,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16149] = 3, + [17048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(527), 13, + ACTIONS(1370), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34946,7 +36896,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(525), 25, + ACTIONS(1372), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -34956,6 +36906,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -34972,10 +36923,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16195] = 3, + [17095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(541), 13, + ACTIONS(1374), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -34989,7 +36940,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(539), 25, + ACTIONS(1376), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -34999,6 +36950,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35015,10 +36967,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16241] = 3, + [17142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 13, + ACTIONS(1378), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35032,7 +36984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1748), 25, + ACTIONS(1380), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35042,6 +36994,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35058,142 +37011,198 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16287] = 3, + [17189] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, anon_sym_AMP, + ACTIONS(1258), 1, anon_sym_PIPE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1252), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1578), 25, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1176), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + [17272] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, + anon_sym_QMARK, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, + anon_sym_AMP, + ACTIONS(1258), 1, + anon_sym_PIPE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1252), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16333] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1586), 1, - anon_sym_EQ, - STATE(540), 1, + STATE(580), 2, + sym_template_string, sym_arguments, - ACTIONS(1428), 13, + ACTIONS(1242), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1430), 22, + ACTIONS(1254), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1172), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_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(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16385] = 3, + [17355] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1520), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, anon_sym_AMP, + ACTIONS(1258), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1518), 25, - anon_sym_LBRACE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1382), 1, anon_sym_COMMA, + ACTIONS(1385), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(1192), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16431] = 3, + [17442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1752), 13, + ACTIONS(534), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35207,7 +37216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1754), 25, + ACTIONS(532), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35217,6 +37226,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35233,12 +37243,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16477] = 3, + [17489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1756), 13, + ACTIONS(1206), 14, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -35250,16 +37261,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1624), 25, - anon_sym_LBRACE, + ACTIONS(1208), 25, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35276,113 +37287,136 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16523] = 3, + [17536] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1556), 14, - anon_sym_STAR, - anon_sym_in, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, anon_sym_AMP, + ACTIONS(1258), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1558), 24, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1385), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, + ACTIONS(1387), 1, + anon_sym_COMMA, + ACTIONS(1144), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16569] = 20, + [17623] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1566), 4, + ACTIONS(1154), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(1648), 5, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [16649] = 3, + [17706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1758), 13, + ACTIONS(1390), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35396,7 +37430,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1626), 25, + ACTIONS(1176), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35406,6 +37440,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35422,55 +37457,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16695] = 3, + [17753] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, anon_sym_AMP, + ACTIONS(1258), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1762), 25, - anon_sym_LBRACE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1392), 1, anon_sym_COMMA, + ACTIONS(1395), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(1212), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16741] = 3, + [17840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 13, + ACTIONS(1188), 14, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -35482,16 +37539,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1766), 25, - anon_sym_LBRACE, + ACTIONS(1190), 25, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35508,53 +37565,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16787] = 3, + [17887] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, anon_sym_AMP, + ACTIONS(1258), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(501), 25, - anon_sym_LBRACE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1397), 1, anon_sym_COMMA, + ACTIONS(1400), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(1214), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [16833] = 3, + [17974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1768), 13, + ACTIONS(1402), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35568,7 +37646,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1770), 25, + ACTIONS(1404), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35578,6 +37656,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35594,10 +37673,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16879] = 3, + [18021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1772), 13, + ACTIONS(1406), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35611,7 +37690,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1774), 25, + ACTIONS(1172), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35621,6 +37700,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35637,10 +37717,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16925] = 3, + [18068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1776), 13, + ACTIONS(1408), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35654,7 +37734,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1778), 25, + ACTIONS(1154), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35664,6 +37744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35680,10 +37761,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [16971] = 3, + [18115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1780), 13, + ACTIONS(1410), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35697,7 +37778,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 25, + ACTIONS(1412), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -35707,6 +37788,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35723,10 +37805,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17017] = 3, + [18162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 13, + ACTIONS(520), 1, + sym__automatic_semicolon, + ACTIONS(512), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(516), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35740,16 +37827,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1786), 25, - anon_sym_LBRACE, + ACTIONS(518), 22, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35766,10 +37850,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17063] = 3, + [18212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1788), 13, + ACTIONS(1228), 1, + anon_sym_EQ_GT, + ACTIONS(1092), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35783,16 +37869,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1790), 25, - anon_sym_LBRACE, + ACTIONS(1094), 24, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35809,72 +37894,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17109] = 22, + [18260] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, - anon_sym_QMARK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1792), 1, - anon_sym_COMMA, - ACTIONS(1795), 1, - anon_sym_RBRACE, - ACTIONS(1622), 2, + ACTIONS(530), 1, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [17193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1797), 13, + ACTIONS(522), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(526), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -35888,16 +37916,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1799), 25, - anon_sym_LBRACE, + ACTIONS(528), 22, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -35914,75 +37939,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17239] = 22, + [18310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, - anon_sym_QMARK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, - anon_sym_AMP, - ACTIONS(1662), 1, - anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1801), 1, - anon_sym_COMMA, - ACTIONS(1804), 1, - anon_sym_RBRACE, - ACTIONS(1598), 2, + ACTIONS(506), 1, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [17323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1600), 14, + ACTIONS(498), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(502), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -35994,15 +37961,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1602), 24, - sym__automatic_semicolon, + ACTIONS(504), 22, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -36019,74 +37984,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17369] = 22, + [18360] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1804), 1, - anon_sym_RBRACE, - ACTIONS(1806), 1, - anon_sym_COMMA, - ACTIONS(1582), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1656), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1648), 5, + ACTIONS(1385), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [17453] = 3, + [18442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 13, + ACTIONS(1414), 1, + anon_sym_LPAREN, + ACTIONS(1417), 1, + anon_sym_COLON, + ACTIONS(1184), 14, anon_sym_STAR, anon_sym_in, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -36098,16 +38067,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1604), 25, - anon_sym_LBRACE, + ACTIONS(1186), 22, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -36124,13 +38090,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17499] = 3, + [18492] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1574), 14, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + STATE(522), 1, + sym_arguments, + ACTIONS(966), 13, anon_sym_STAR, anon_sym_in, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -36142,15 +38117,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1576), 24, + ACTIONS(968), 20, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -36167,434 +38138,385 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [17545] = 22, + [18548] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1811), 1, - anon_sym_COMMA, - ACTIONS(1814), 1, - anon_sym_RBRACE, - ACTIONS(1584), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(1656), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1648), 5, + ACTIONS(1419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [17629] = 22, + [18630] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(557), 1, + ACTIONS(546), 1, anon_sym_COMMA, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1816), 1, + ACTIONS(1421), 1, anon_sym_RBRACK, - STATE(865), 1, + STATE(910), 1, aux_sym_array_repeat1, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [17712] = 20, + [18716] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1818), 3, - sym__automatic_semicolon, + ACTIONS(1395), 3, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [17791] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(537), 1, - sym__automatic_semicolon, - ACTIONS(529), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(533), 13, - anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(535), 21, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17840] = 22, + [18798] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(557), 1, - anon_sym_COMMA, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1820), 1, - anon_sym_RBRACK, - STATE(825), 1, - aux_sym_array_repeat1, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1400), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [17923] = 5, + [18880] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(523), 1, - sym__automatic_semicolon, - ACTIONS(515), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(519), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, anon_sym_AMP, + ACTIONS(1258), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(521), 21, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1423), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_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(1260), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [17972] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(455), 1, + ACTIONS(1425), 2, sym__automatic_semicolon, - ACTIONS(447), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(451), 13, + anon_sym_SEMI, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(453), 21, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18021] = 5, + [18964] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(465), 1, - sym__automatic_semicolon, - ACTIONS(457), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(461), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(79), 1, + anon_sym_BQUOTE, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1250), 1, + anon_sym_AMP_AMP, + ACTIONS(1256), 1, anon_sym_AMP, + ACTIONS(1258), 1, anon_sym_PIPE, + ACTIONS(1262), 1, + anon_sym_STAR_STAR, + ACTIONS(1266), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1423), 1, + anon_sym_COMMA, + ACTIONS(1252), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(463), 21, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(1268), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1427), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(580), 2, + sym_template_string, + sym_arguments, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18070] = 5, + [19048] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(474), 1, sym__automatic_semicolon, - ACTIONS(505), 2, + ACTIONS(466), 2, anon_sym_else, anon_sym_while, - ACTIONS(509), 13, + ACTIONS(470), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36608,12 +38530,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(511), 21, + ACTIONS(472), 22, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -36630,73 +38553,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18119] = 20, + [19098] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(1007), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1423), 1, + anon_sym_COMMA, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + ACTIONS(1429), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1822), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1532), 5, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [18198] = 5, + [19182] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, - anon_sym_LPAREN, - STATE(540), 1, - sym_arguments, - ACTIONS(1428), 13, + ACTIONS(484), 1, + sym__automatic_semicolon, + ACTIONS(476), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(480), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36710,13 +38637,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1430), 22, - sym__automatic_semicolon, + ACTIONS(482), 22, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -36733,58 +38660,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18247] = 5, + [19232] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - sym__automatic_semicolon, - ACTIONS(491), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(495), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(497), 21, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(546), 1, anon_sym_COMMA, + ACTIONS(964), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1431), 1, + anon_sym_RBRACK, + STATE(910), 1, + aux_sym_array_repeat1, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [18296] = 5, + [19318] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(441), 1, - anon_sym_EQ, - ACTIONS(545), 1, + ACTIONS(464), 1, sym__automatic_semicolon, - ACTIONS(439), 13, + ACTIONS(456), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(460), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36798,13 +38745,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(437), 22, + ACTIONS(462), 22, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -36821,135 +38768,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18345] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(557), 1, - anon_sym_COMMA, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1824), 1, - anon_sym_RBRACK, - STATE(865), 1, - aux_sym_array_repeat1, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [18428] = 20, + [19368] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(546), 1, + anon_sym_COMMA, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1433), 1, + anon_sym_RPAREN, + STATE(851), 1, + aux_sym_array_repeat1, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1818), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1648), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [18507] = 5, + [19454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 1, + ACTIONS(496), 1, sym__automatic_semicolon, - ACTIONS(467), 2, + ACTIONS(488), 2, anon_sym_else, anon_sym_while, - ACTIONS(471), 13, + ACTIONS(492), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -36963,12 +38853,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(473), 21, + ACTIONS(494), 22, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -36985,75 +38876,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18556] = 21, + [19504] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1826), 1, + ACTIONS(1423), 1, anon_sym_COMMA, - ACTIONS(1640), 2, + ACTIONS(1220), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(1656), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1648), 5, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [18637] = 5, + [19588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 1, + ACTIONS(450), 1, sym__automatic_semicolon, - ACTIONS(477), 2, + ACTIONS(442), 2, anon_sym_else, anon_sym_while, - ACTIONS(481), 13, + ACTIONS(446), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37067,12 +38960,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(483), 21, + ACTIONS(448), 22, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -37089,17 +38983,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18686] = 5, + [19638] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1828), 1, - anon_sym_LPAREN, - ACTIONS(1831), 1, - anon_sym_COLON, - ACTIONS(1590), 14, - anon_sym_STAR, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1435), 1, anon_sym_in, + ACTIONS(1438), 1, + anon_sym_of, + ACTIONS(1440), 1, anon_sym_EQ, + ACTIONS(998), 12, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -37111,12 +39011,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1592), 21, + ACTIONS(1000), 20, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -37133,14 +39032,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18735] = 4, + [19696] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1833), 1, - sym_regex_flags, - ACTIONS(1632), 14, - anon_sym_STAR, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1442), 1, anon_sym_in, + ACTIONS(1445), 1, + anon_sym_of, + ACTIONS(1447), 1, + anon_sym_EQ, + ACTIONS(998), 12, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -37152,15 +39060,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(1634), 22, + ACTIONS(1000), 20, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -37173,15 +39077,18 @@ static 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, - [18782] = 4, + [19754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1628), 1, - anon_sym_EQ_GT, - ACTIONS(1487), 13, + ACTIONS(430), 1, + anon_sym_EQ, + ACTIONS(486), 1, + sym__automatic_semicolon, + ACTIONS(428), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -37195,14 +39102,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1489), 23, - sym__automatic_semicolon, + ACTIONS(426), 23, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -37219,701 +39126,709 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [18829] = 22, + [19804] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(557), 1, - anon_sym_COMMA, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(1007), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1835), 1, - anon_sym_RPAREN, - STATE(854), 1, - aux_sym_array_repeat1, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [18912] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(557), 1, - anon_sym_COMMA, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1837), 1, - anon_sym_RPAREN, - STATE(871), 1, - aux_sym_array_repeat1, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [18995] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(557), 1, - anon_sym_COMMA, - ACTIONS(1426), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1839), 1, - anon_sym_RBRACK, - STATE(825), 1, - aux_sym_array_repeat1, - ACTIONS(1538), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [19078] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1841), 1, - anon_sym_EQ, - ACTIONS(1444), 13, - anon_sym_STAR, + ACTIONS(1419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1446), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_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(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19125] = 21, + [19886] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1826), 1, - anon_sym_COMMA, - ACTIONS(1656), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1843), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [19206] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1845), 1, - anon_sym_EQ, - ACTIONS(1444), 13, - anon_sym_STAR, + ACTIONS(1419), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1446), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_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(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [19253] = 20, + anon_sym_instanceof, + [19968] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1818), 3, + ACTIONS(1419), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(1648), 5, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19332] = 20, + [20050] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(546), 1, + anon_sym_COMMA, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1449), 1, + anon_sym_RBRACK, + STATE(890), 1, + aux_sym_array_repeat1, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(541), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1818), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(1648), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19411] = 20, + [20136] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(546), 1, + anon_sym_COMMA, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1451), 1, + anon_sym_RBRACK, + STATE(890), 1, + aux_sym_array_repeat1, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1804), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19490] = 20, + [20222] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(546), 1, + anon_sym_COMMA, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1453), 1, + anon_sym_RPAREN, + STATE(886), 1, + aux_sym_array_repeat1, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1814), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19569] = 20, + [20308] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1795), 3, + ACTIONS(1455), 3, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, - ACTIONS(1532), 5, + anon_sym_RBRACK, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19648] = 21, + [20390] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, ACTIONS(1457), 1, + sym_regex_flags, + ACTIONS(1222), 14, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1224), 23, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + 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, + [20438] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1447), 1, + anon_sym_EQ, + ACTIONS(998), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1000), 21, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1650), 1, + 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, + [20492] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1007), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1440), 1, + anon_sym_EQ, + ACTIONS(998), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1000), 21, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [20546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(516), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(518), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [20591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1358), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [20636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(480), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1654), 1, - anon_sym_AMP_AMP, - ACTIONS(1660), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1662), 1, anon_sym_PIPE, - ACTIONS(1666), 1, - anon_sym_STAR_STAR, - ACTIONS(1670), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1826), 1, - anon_sym_COMMA, - ACTIONS(1656), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1847), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(482), 24, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - STATE(541), 2, - sym_template_string, - sym_arguments, - ACTIONS(1646), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1658), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [19729] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [20681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1845), 1, - anon_sym_EQ, - ACTIONS(1849), 1, - anon_sym_in, - ACTIONS(1852), 1, - anon_sym_of, - ACTIONS(1444), 12, + ACTIONS(460), 13, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -37925,13 +39840,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 22, + ACTIONS(462), 24, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -37948,17 +39865,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19780] = 6, + [20726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1841), 1, - anon_sym_EQ, - ACTIONS(1854), 1, - anon_sym_in, - ACTIONS(1857), 1, - anon_sym_of, - ACTIONS(1444), 12, + ACTIONS(492), 13, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -37970,13 +39882,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 22, + ACTIONS(494), 24, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -37993,70 +39907,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19831] = 21, + [20771] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1826), 1, + ACTIONS(1218), 1, anon_sym_COMMA, - ACTIONS(1656), 2, + ACTIONS(1459), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1859), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(541), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1648), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [19912] = 3, + [20854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1797), 13, + ACTIONS(446), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38070,7 +39985,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1799), 23, + ACTIONS(448), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -38078,6 +39993,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38094,10 +40010,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [19956] = 3, + [20899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1768), 13, + ACTIONS(1112), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38111,7 +40027,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1770), 23, + ACTIONS(1110), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -38119,6 +40035,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38135,18 +40052,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20000] = 7, + [20944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_COMMA, - ACTIONS(1864), 1, - anon_sym_RPAREN, - ACTIONS(1867), 1, - anon_sym_EQ, - STATE(888), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(1444), 13, + ACTIONS(1326), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38160,10 +40069,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 19, + ACTIONS(1328), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38180,360 +40094,246 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20052] = 21, + [20989] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, + ACTIONS(1218), 1, anon_sym_COMMA, - ACTIONS(1869), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, + ACTIONS(1461), 1, + anon_sym_RBRACK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [20132] = 21, + [21072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1330), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1544), 1, anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, - anon_sym_COMMA, - ACTIONS(1871), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [20212] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1194), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1801), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20290] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1332), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1544), 1, anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1806), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1334), 24, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20368] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1312), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1544), 1, anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1811), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1314), 24, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20446] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21207] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1792), 2, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1463), 1, anon_sym_COMMA, + ACTIONS(1466), 1, anon_sym_RPAREN, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1469), 1, + anon_sym_EQ, + STATE(897), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(998), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1550), 5, + ACTIONS(1000), 17, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20524] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(481), 13, + ACTIONS(1336), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38547,7 +40347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(483), 23, + ACTIONS(1338), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -38555,6 +40355,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38571,245 +40372,185 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20568] = 21, + [21311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1340), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1544), 1, anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, - anon_sym_COMMA, - ACTIONS(1873), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1342), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20648] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1274), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1544), 1, anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, - anon_sym_COMMA, - ACTIONS(1875), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1276), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20728] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21401] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1471), 1, anon_sym_COMMA, - ACTIONS(1877), 1, + ACTIONS(1474), 1, anon_sym_RPAREN, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1477), 1, + anon_sym_EQ, + STATE(899), 1, + aux_sym_formal_parameters_repeat1, + ACTIONS(998), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1550), 5, + ACTIONS(1000), 17, + anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20808] = 20, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1348), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1544), 1, anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(1879), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1350), 24, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [20886] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [21505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(471), 13, + ACTIONS(526), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38823,7 +40564,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(473), 23, + ACTIONS(528), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -38831,6 +40572,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38847,10 +40589,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20930] = 3, + [21550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(461), 13, + ACTIONS(470), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38864,7 +40606,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(463), 23, + ACTIONS(472), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -38872,6 +40614,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38888,10 +40631,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [20974] = 3, + [21595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(451), 13, + ACTIONS(502), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -38905,7 +40648,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(453), 23, + ACTIONS(504), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -38913,6 +40656,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -38929,128 +40673,139 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21018] = 21, + [21640] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, + ACTIONS(1218), 1, anon_sym_COMMA, - ACTIONS(1881), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, + ACTIONS(1479), 1, + anon_sym_RBRACE, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21098] = 21, + [21723] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + ACTIONS(1397), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21178] = 3, + [21804] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1788), 13, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1481), 1, + anon_sym_EQ, + ACTIONS(998), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39064,14 +40819,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1790), 23, + ACTIONS(1000), 20, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39088,69 +40840,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21222] = 21, + [21857] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, + ACTIONS(1218), 1, anon_sym_COMMA, - ACTIONS(1885), 1, - anon_sym_COLON, - ACTIONS(1538), 2, + ACTIONS(1483), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21302] = 3, + [21940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1710), 13, + ACTIONS(1374), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39164,7 +40918,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1712), 23, + ACTIONS(1376), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -39172,6 +40926,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39188,10 +40943,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21346] = 3, + [21985] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 13, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1485), 1, + anon_sym_EQ, + ACTIONS(998), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39205,14 +40968,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1786), 23, + ACTIONS(1000), 20, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39229,51 +40989,191 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21390] = 3, + [22038] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1780), 13, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1487), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, - anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [22121] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, + ACTIONS(1132), 1, anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1392), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1782), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [22202] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1387), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21434] = 3, + [22283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 13, + ACTIONS(1352), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39287,7 +41187,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1505), 23, + ACTIONS(1354), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -39295,6 +41195,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39311,51 +41212,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21478] = 3, + [22328] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(533), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(535), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1489), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21522] = 3, + [22411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1809), 13, + ACTIONS(1378), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39369,7 +41290,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1604), 23, + ACTIONS(1380), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -39377,6 +41298,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39393,110 +41315,203 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21566] = 3, + [22456] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, + ACTIONS(1132), 1, anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1491), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1766), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [22539] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1493), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [21610] = 21, + [22622] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, + ACTIONS(1218), 1, anon_sym_COMMA, - ACTIONS(1887), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, + ACTIONS(1495), 1, + anon_sym_RBRACK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21690] = 3, + [22705] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1776), 13, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(1497), 1, + anon_sym_LPAREN, + ACTIONS(1500), 1, + anon_sym_COLON, + ACTIONS(998), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39510,14 +41525,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1778), 23, + ACTIONS(1000), 19, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39534,10 +41545,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21734] = 3, + [22760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(519), 13, + ACTIONS(1236), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39551,7 +41562,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(521), 23, + ACTIONS(1200), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -39559,6 +41570,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39575,10 +41587,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21778] = 3, + [22805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1718), 13, + ACTIONS(1316), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39592,7 +41604,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1720), 23, + ACTIONS(1318), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -39600,6 +41612,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39616,69 +41629,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21822] = 21, + [22850] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, - anon_sym_COMMA, - ACTIONS(1889), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + ACTIONS(1382), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [21902] = 3, + [22931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 13, + ACTIONS(1238), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39692,7 +41706,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(511), 23, + ACTIONS(1240), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -39700,6 +41714,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39716,10 +41731,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21946] = 3, + [22976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(495), 13, + ACTIONS(1390), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39733,7 +41748,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(497), 23, + ACTIONS(1176), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -39741,6 +41756,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39757,116 +41773,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [21990] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, - anon_sym_COMMA, - ACTIONS(1891), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [22070] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1893), 1, - anon_sym_COMMA, - ACTIONS(1896), 1, - anon_sym_RPAREN, - ACTIONS(1899), 1, - anon_sym_EQ, - STATE(824), 1, - aux_sym_formal_parameters_repeat1, - ACTIONS(1444), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1446), 19, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22122] = 4, + [23021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1901), 1, - anon_sym_EQ, - ACTIONS(1444), 13, + ACTIONS(1092), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39880,13 +41790,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 22, + ACTIONS(1094), 24, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39903,10 +41815,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22168] = 3, + [23066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1726), 13, + ACTIONS(1100), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -39920,7 +41832,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1728), 23, + ACTIONS(1102), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -39928,6 +41840,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -39944,71 +41857,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22212] = 21, + [23111] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, + ACTIONS(1218), 1, anon_sym_COMMA, - ACTIONS(1903), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, + ACTIONS(1502), 1, + anon_sym_RBRACE, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [22292] = 4, + [23194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_EQ, - ACTIONS(1444), 13, + ACTIONS(1344), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40022,13 +41935,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 22, + ACTIONS(1346), 24, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40045,10 +41960,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22338] = 3, + [23239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1696), 13, + ACTIONS(1402), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40062,7 +41977,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1530), 23, + ACTIONS(1404), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -40070,6 +41985,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40086,94 +42002,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22382] = 5, + [23284] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1910), 1, - anon_sym_COLON, - ACTIONS(1444), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, + ACTIONS(1132), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1446), 21, - sym__automatic_semicolon, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, + ACTIONS(1504), 1, + anon_sym_RBRACK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_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(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1730), 13, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, anon_sym_SLASH, - anon_sym_QMARK, 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(1732), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22474] = 3, + [23367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1674), 13, + ACTIONS(1232), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40187,7 +42080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1676), 23, + ACTIONS(1234), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -40195,6 +42088,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40211,10 +42105,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22518] = 3, + [23412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1734), 13, + ACTIONS(1406), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40228,7 +42122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1736), 23, + ACTIONS(1172), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -40236,6 +42130,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40252,10 +42147,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22562] = 3, + [23457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 13, + ACTIONS(1322), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40269,7 +42164,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1578), 23, + ACTIONS(1324), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -40277,85 +42172,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [22606] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, - anon_sym_COMMA, - ACTIONS(1912), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [22686] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [23502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1714), 13, + ACTIONS(1408), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40369,7 +42206,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1716), 23, + ACTIONS(1154), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -40377,6 +42214,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40393,10 +42231,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22730] = 3, + [23547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1738), 13, + ACTIONS(1366), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40410,7 +42248,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1740), 23, + ACTIONS(1368), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -40418,6 +42256,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40434,69 +42273,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22774] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, - anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, - anon_sym_AMP, - ACTIONS(1544), 1, - anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, - anon_sym_COMMA, - ACTIONS(1914), 1, - anon_sym_RBRACE, - ACTIONS(1538), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1550), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [22854] = 3, + [23592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1642), 13, + ACTIONS(1360), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40510,7 +42290,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1644), 23, + ACTIONS(1362), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -40518,6 +42298,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40534,10 +42315,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22898] = 3, + [23637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1756), 13, + ACTIONS(1410), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40551,7 +42332,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1624), 23, + ACTIONS(1412), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -40559,6 +42340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40575,110 +42357,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [22942] = 21, + [23682] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, + ACTIONS(1218), 1, anon_sym_COMMA, - ACTIONS(1916), 1, - anon_sym_RPAREN, - ACTIONS(1538), 2, + ACTIONS(1506), 1, + anon_sym_RBRACK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23022] = 3, + [23765] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1758), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1626), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1508), 1, + anon_sym_RBRACK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23066] = 3, + [23848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1714), 13, + ACTIONS(1364), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40692,7 +42496,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1716), 23, + ACTIONS(1216), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -40700,6 +42504,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40716,151 +42521,315 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23110] = 21, + [23893] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, + ACTIONS(1218), 1, anon_sym_COMMA, - ACTIONS(1918), 1, + ACTIONS(1510), 1, anon_sym_RBRACE, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23190] = 3, + [23976] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1760), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, + ACTIONS(1132), 1, anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1512), 1, + anon_sym_RBRACK, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1762), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [24059] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1514), 1, + anon_sym_RBRACK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23234] = 3, + [24142] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1752), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, + ACTIONS(1132), 1, anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1516), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1754), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [24225] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1518), 1, + anon_sym_RBRACK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23278] = 3, + anon_sym_instanceof, + [24308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1706), 13, + ACTIONS(1096), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40874,7 +42843,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1708), 23, + ACTIONS(1098), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -40882,6 +42851,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -40898,92 +42868,254 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23322] = 3, + [24353] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1742), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, + ACTIONS(1132), 1, anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1520), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1744), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [24436] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1522), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23366] = 3, + [24519] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, + ACTIONS(1132), 1, anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1524), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1748), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [24602] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1526), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23410] = 3, + [24685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 13, + ACTIONS(998), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -40997,7 +43129,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1493), 23, + ACTIONS(1000), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -41005,6 +43137,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41021,168 +43154,295 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23454] = 3, + [24730] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1772), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, + ACTIONS(1132), 1, anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1528), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1774), 23, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1138), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [24813] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, + anon_sym_QMARK, + ACTIONS(1124), 1, anon_sym_AMP_AMP, + ACTIONS(1130), 1, + anon_sym_AMP, + ACTIONS(1132), 1, + anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1530), 1, + anon_sym_RPAREN, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [23498] = 20, + [24896] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1920), 2, + ACTIONS(1532), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(541), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1242), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1254), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(1244), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1264), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [24977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1300), 13, anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(1658), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1302), 24, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(1648), 5, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1668), 5, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23576] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25022] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, + ACTIONS(1218), 1, anon_sym_COMMA, - ACTIONS(1922), 1, - anon_sym_RBRACK, - ACTIONS(1538), 2, + ACTIONS(1534), 1, + anon_sym_COLON, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23656] = 3, + [25105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1520), 13, + ACTIONS(1370), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41196,7 +43456,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1518), 23, + ACTIONS(1372), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -41204,6 +43464,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41220,186 +43481,218 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23700] = 21, + [25150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1304), 13, + anon_sym_STAR, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1536), 1, - anon_sym_AMP_AMP, - ACTIONS(1542), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(1544), 1, anon_sym_PIPE, - ACTIONS(1548), 1, - anon_sym_STAR_STAR, - ACTIONS(1552), 1, - anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1306), 24, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(1924), 1, - anon_sym_RBRACK, - ACTIONS(1538), 2, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(1546), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1554), 2, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, - sym_template_string, - sym_arguments, - ACTIONS(1528), 3, + anon_sym_BQUOTE, + [25195] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1013), 1, + anon_sym_QMARK_DOT, + ACTIONS(998), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(1540), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(1532), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1550), 5, + ACTIONS(1000), 21, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [23780] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [25246] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(1007), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(1009), 1, + anon_sym_DOT, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1248), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1250), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1256), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1258), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1262), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1266), 1, anon_sym_QMARK_QMARK, - ACTIONS(1638), 1, - anon_sym_COMMA, - ACTIONS(1926), 1, - anon_sym_RBRACE, - ACTIONS(1538), 2, + ACTIONS(1252), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1260), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1268), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + ACTIONS(1536), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1242), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1254), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1244), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1264), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23860] = 20, + [25327] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1650), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1652), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1654), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1660), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1662), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1666), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1670), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1656), 2, + ACTIONS(1218), 1, + anon_sym_COMMA, + ACTIONS(1538), 1, + anon_sym_RBRACK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1664), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1672), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(1928), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(541), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1646), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1658), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1648), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1668), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [23938] = 3, + [25410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1698), 13, + ACTIONS(1308), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41413,7 +43706,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1616), 23, + ACTIONS(1310), 24, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -41421,6 +43714,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41437,269 +43731,258 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [23982] = 3, + [25455] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(398), 1, + anon_sym_BQUOTE, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(1124), 1, + anon_sym_AMP_AMP, + ACTIONS(1130), 1, anon_sym_AMP, + ACTIONS(1132), 1, anon_sym_PIPE, + ACTIONS(1136), 1, + anon_sym_STAR_STAR, + ACTIONS(1140), 1, + anon_sym_QMARK_QMARK, + ACTIONS(1126), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1489), 23, - sym__automatic_semicolon, + ACTIONS(1142), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1540), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(402), 2, + sym_template_string, + sym_arguments, + ACTIONS(1114), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1118), 5, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24026] = 20, + [25536] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1930), 1, - anon_sym_LBRACE, - ACTIONS(1538), 2, + ACTIONS(1542), 1, + anon_sym_RBRACK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24103] = 20, + [25616] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1932), 1, - anon_sym_RBRACK, - ACTIONS(1538), 2, + ACTIONS(1544), 1, + anon_sym_LBRACE, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24180] = 5, + [25696] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1586), 1, - anon_sym_EQ, - ACTIONS(1934), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1444), 13, - anon_sym_STAR, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - 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(1446), 19, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [24227] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1937), 1, + ACTIONS(1546), 1, anon_sym_COLON, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24304] = 5, + [25776] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 1, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1162), 1, anon_sym_EQ, - ACTIONS(1939), 2, + ACTIONS(1548), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1444), 13, + ACTIONS(998), 13, anon_sym_STAR, anon_sym_in, anon_sym_LT, @@ -41713,10 +43996,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 19, + ACTIONS(1000), 17, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41733,131 +44014,141 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24351] = 20, + [25830] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1942), 1, - anon_sym_COLON, - ACTIONS(1538), 2, + ACTIONS(1551), 1, + anon_sym_RBRACK, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24428] = 20, + [25910] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1944), 1, - anon_sym_RBRACK, - ACTIONS(1538), 2, + ACTIONS(1553), 1, + anon_sym_COLON, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24505] = 6, + [25990] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1586), 1, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1152), 1, anon_sym_EQ, - ACTIONS(1854), 1, - anon_sym_in, - ACTIONS(1857), 1, - anon_sym_of, - ACTIONS(1444), 12, + ACTIONS(1555), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(998), 13, anon_sym_STAR, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -41869,10 +44160,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 19, + ACTIONS(1000), 17, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41889,16 +44178,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24553] = 6, + [26044] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1586), 1, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1162), 1, anon_sym_EQ, - ACTIONS(1689), 1, + ACTIONS(1293), 1, anon_sym_in, - ACTIONS(1692), 1, + ACTIONS(1296), 1, anon_sym_of, - ACTIONS(1444), 12, + ACTIONS(998), 12, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41911,10 +44206,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 19, + ACTIONS(1000), 17, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41931,16 +44224,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24601] = 6, + [26099] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 1, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1152), 1, anon_sym_EQ, - ACTIONS(1680), 1, + ACTIONS(1284), 1, anon_sym_in, - ACTIONS(1683), 1, + ACTIONS(1287), 1, anon_sym_of, - ACTIONS(1444), 12, + ACTIONS(998), 12, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -41953,10 +44252,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 19, + ACTIONS(1000), 17, anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [26154] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(972), 1, anon_sym_LBRACK, + ACTIONS(974), 1, anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1162), 1, + anon_sym_EQ, + ACTIONS(1435), 1, + anon_sym_in, + ACTIONS(1438), 1, + anon_sym_of, + ACTIONS(998), 12, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + 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(1000), 17, + anon_sym_LPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -41973,71 +44316,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24649] = 19, + [26209] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(398), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, + ACTIONS(972), 1, anon_sym_LBRACK, - ACTIONS(1534), 1, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(1120), 1, + anon_sym_QMARK_DOT, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1538), 2, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(402), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24723] = 6, + [26286] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1588), 1, + ACTIONS(972), 1, + anon_sym_LBRACK, + ACTIONS(974), 1, + anon_sym_DOT, + ACTIONS(978), 1, + anon_sym_QMARK_DOT, + ACTIONS(1152), 1, anon_sym_EQ, - ACTIONS(1849), 1, + ACTIONS(1442), 1, anon_sym_in, - ACTIONS(1852), 1, + ACTIONS(1445), 1, anon_sym_of, - ACTIONS(1444), 12, + ACTIONS(998), 12, anon_sym_STAR, anon_sym_LT, anon_sym_GT, @@ -42050,10 +44401,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1446), 19, + ACTIONS(1000), 17, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -42070,1142 +44419,1120 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [24771] = 19, + [26341] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, + ACTIONS(79), 1, anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1007), 1, + anon_sym_LBRACK, + ACTIONS(1009), 1, anon_sym_DOT, - ACTIONS(1534), 1, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1122), 1, anon_sym_QMARK, - ACTIONS(1536), 1, + ACTIONS(1124), 1, anon_sym_AMP_AMP, - ACTIONS(1542), 1, + ACTIONS(1130), 1, anon_sym_AMP, - ACTIONS(1544), 1, + ACTIONS(1132), 1, anon_sym_PIPE, - ACTIONS(1548), 1, + ACTIONS(1136), 1, anon_sym_STAR_STAR, - ACTIONS(1552), 1, + ACTIONS(1140), 1, anon_sym_QMARK_QMARK, - ACTIONS(1650), 1, - anon_sym_LBRACK, - ACTIONS(1538), 2, + ACTIONS(1246), 1, + anon_sym_QMARK_DOT, + ACTIONS(1126), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(1546), 2, + ACTIONS(1134), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1554), 2, + ACTIONS(1142), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(418), 2, + STATE(580), 2, sym_template_string, sym_arguments, - ACTIONS(1528), 3, + ACTIONS(1114), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(1540), 3, + ACTIONS(1128), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(1532), 5, + ACTIONS(1118), 5, anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1550), 5, + ACTIONS(1138), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [24845] = 22, + [26418] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(95), 1, + ACTIONS(93), 1, anon_sym_STAR, - ACTIONS(97), 1, + ACTIONS(95), 1, anon_sym_COMMA, - ACTIONS(105), 1, + ACTIONS(103), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(361), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1946), 1, + ACTIONS(1558), 1, sym_identifier, - ACTIONS(1948), 1, + ACTIONS(1560), 1, anon_sym_RBRACE, - ACTIONS(1950), 1, + ACTIONS(1562), 1, anon_sym_LBRACK, - ACTIONS(1952), 1, + ACTIONS(1564), 1, anon_sym_async, - ACTIONS(1954), 1, + ACTIONS(1566), 1, sym_number, - ACTIONS(1956), 1, + ACTIONS(1568), 1, anon_sym_static, - STATE(602), 1, + STATE(624), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, + STATE(651), 1, sym_decorator, - STATE(885), 1, + STATE(906), 1, aux_sym_object_repeat1, - STATE(1052), 1, - sym_object, - STATE(1056), 1, + STATE(1087), 1, sym_array, - ACTIONS(1958), 2, + STATE(1167), 1, + sym_object, + ACTIONS(1570), 2, anon_sym_get, anon_sym_set, - STATE(890), 3, + STATE(918), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(809), 4, + STATE(916), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - [24918] = 22, + [26491] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(95), 1, + ACTIONS(93), 1, anon_sym_STAR, - ACTIONS(97), 1, + ACTIONS(95), 1, anon_sym_COMMA, - ACTIONS(105), 1, + ACTIONS(103), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(361), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1950), 1, + ACTIONS(1562), 1, anon_sym_LBRACK, - ACTIONS(1954), 1, + ACTIONS(1566), 1, sym_number, - ACTIONS(1960), 1, + ACTIONS(1572), 1, sym_identifier, - ACTIONS(1962), 1, + ACTIONS(1574), 1, anon_sym_RBRACE, - ACTIONS(1964), 1, + ACTIONS(1576), 1, anon_sym_async, - ACTIONS(1966), 1, + ACTIONS(1578), 1, anon_sym_static, - STATE(602), 1, + STATE(624), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, + STATE(651), 1, sym_decorator, - STATE(889), 1, + STATE(904), 1, aux_sym_object_repeat1, - STATE(1052), 1, - sym_object, - STATE(1056), 1, + STATE(1087), 1, sym_array, - ACTIONS(1968), 2, + STATE(1167), 1, + sym_object, + ACTIONS(1580), 2, anon_sym_get, anon_sym_set, - STATE(890), 3, + STATE(918), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(884), 4, + STATE(835), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - [24991] = 20, + [26564] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(95), 1, + ACTIONS(93), 1, anon_sym_STAR, - ACTIONS(105), 1, + ACTIONS(103), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(361), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1950), 1, + ACTIONS(1562), 1, anon_sym_LBRACK, - ACTIONS(1954), 1, + ACTIONS(1566), 1, sym_number, - ACTIONS(1970), 1, + ACTIONS(1582), 1, sym_identifier, - ACTIONS(1974), 1, + ACTIONS(1586), 1, anon_sym_async, - ACTIONS(1976), 1, + ACTIONS(1588), 1, anon_sym_static, - STATE(602), 1, + STATE(624), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, + STATE(651), 1, sym_decorator, - STATE(1052), 1, - sym_object, - STATE(1056), 1, + STATE(1087), 1, sym_array, - ACTIONS(1972), 2, + STATE(1167), 1, + sym_object, + ACTIONS(1584), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1978), 2, + ACTIONS(1590), 2, anon_sym_get, anon_sym_set, - STATE(890), 3, + STATE(918), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(1024), 4, + STATE(1042), 4, sym_assignment_pattern, sym_spread_element, sym_method_definition, sym_pair, - [25059] = 18, + [26632] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, anon_sym_DQUOTE, ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(95), 1, + ACTIONS(93), 1, anon_sym_STAR, - ACTIONS(1980), 1, + ACTIONS(1592), 1, sym_identifier, - ACTIONS(1982), 1, + ACTIONS(1594), 1, anon_sym_RBRACE, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_async, - ACTIONS(1988), 1, + ACTIONS(1600), 1, sym_number, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_static, - STATE(585), 1, + STATE(603), 1, aux_sym_class_body_repeat1, - STATE(602), 1, + STATE(624), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, - sym_decorator, - STATE(636), 1, + STATE(645), 1, sym_method_definition, - STATE(960), 1, - sym_public_field_definition, - ACTIONS(1992), 2, - anon_sym_get, - anon_sym_set, - STATE(684), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [25117] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(75), 1, - anon_sym_DQUOTE, - ACTIONS(77), 1, - anon_sym_SQUOTE, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(95), 1, - anon_sym_STAR, - ACTIONS(1980), 1, - sym_identifier, - ACTIONS(1984), 1, - anon_sym_LBRACK, - ACTIONS(1986), 1, - anon_sym_async, - ACTIONS(1988), 1, - sym_number, - ACTIONS(1990), 1, - anon_sym_static, - ACTIONS(1994), 1, - anon_sym_RBRACE, - STATE(585), 1, - aux_sym_class_body_repeat1, - STATE(602), 1, - aux_sym_export_statement_repeat1, - STATE(635), 1, + STATE(651), 1, sym_decorator, - STATE(636), 1, - sym_method_definition, - STATE(960), 1, + STATE(928), 1, sym_public_field_definition, - ACTIONS(1992), 2, + ACTIONS(1604), 2, anon_sym_get, anon_sym_set, - STATE(684), 3, + STATE(716), 3, sym_string, sym__property_name, sym_computed_property_name, - [25175] = 18, + [26690] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, anon_sym_DQUOTE, ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(95), 1, + ACTIONS(93), 1, anon_sym_STAR, - ACTIONS(1980), 1, + ACTIONS(1592), 1, sym_identifier, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_async, - ACTIONS(1988), 1, + ACTIONS(1600), 1, sym_number, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_static, - ACTIONS(1996), 1, + ACTIONS(1606), 1, anon_sym_RBRACE, - STATE(581), 1, + STATE(606), 1, aux_sym_class_body_repeat1, - STATE(602), 1, + STATE(624), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, - sym_decorator, - STATE(636), 1, + STATE(645), 1, sym_method_definition, - STATE(960), 1, + STATE(651), 1, + sym_decorator, + STATE(928), 1, sym_public_field_definition, - ACTIONS(1992), 2, + ACTIONS(1604), 2, anon_sym_get, anon_sym_set, - STATE(684), 3, + STATE(716), 3, sym_string, sym__property_name, sym_computed_property_name, - [25233] = 18, + [26748] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, anon_sym_DQUOTE, ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(95), 1, + ACTIONS(93), 1, anon_sym_STAR, - ACTIONS(1980), 1, + ACTIONS(1592), 1, sym_identifier, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_async, - ACTIONS(1988), 1, + ACTIONS(1600), 1, sym_number, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_static, - ACTIONS(1998), 1, + ACTIONS(1608), 1, anon_sym_RBRACE, - STATE(584), 1, + STATE(606), 1, aux_sym_class_body_repeat1, - STATE(602), 1, + STATE(624), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, - sym_decorator, - STATE(636), 1, + STATE(645), 1, sym_method_definition, - STATE(960), 1, + STATE(651), 1, + sym_decorator, + STATE(928), 1, sym_public_field_definition, - ACTIONS(1992), 2, + ACTIONS(1604), 2, anon_sym_get, anon_sym_set, - STATE(684), 3, + STATE(716), 3, sym_string, sym__property_name, sym_computed_property_name, - [25291] = 18, + [26806] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, anon_sym_DQUOTE, ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(95), 1, + ACTIONS(93), 1, anon_sym_STAR, - ACTIONS(1980), 1, + ACTIONS(1592), 1, sym_identifier, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_async, - ACTIONS(1988), 1, + ACTIONS(1600), 1, sym_number, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_static, - ACTIONS(2000), 1, + ACTIONS(1610), 1, anon_sym_RBRACE, - STATE(585), 1, + STATE(604), 1, aux_sym_class_body_repeat1, - STATE(602), 1, + STATE(624), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, - sym_decorator, - STATE(636), 1, + STATE(645), 1, sym_method_definition, - STATE(960), 1, + STATE(651), 1, + sym_decorator, + STATE(928), 1, sym_public_field_definition, - ACTIONS(1992), 2, + ACTIONS(1604), 2, anon_sym_get, anon_sym_set, - STATE(684), 3, + STATE(716), 3, sym_string, sym__property_name, sym_computed_property_name, - [25349] = 18, + [26864] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(1612), 1, sym_identifier, - ACTIONS(2005), 1, + ACTIONS(1615), 1, anon_sym_STAR, - ACTIONS(2008), 1, + ACTIONS(1618), 1, anon_sym_RBRACE, - ACTIONS(2010), 1, + ACTIONS(1620), 1, anon_sym_LBRACK, - ACTIONS(2013), 1, + ACTIONS(1623), 1, anon_sym_async, - ACTIONS(2016), 1, + ACTIONS(1626), 1, anon_sym_DQUOTE, - ACTIONS(2019), 1, + ACTIONS(1629), 1, anon_sym_SQUOTE, - ACTIONS(2022), 1, + ACTIONS(1632), 1, sym_number, - ACTIONS(2025), 1, + ACTIONS(1635), 1, anon_sym_AT, - ACTIONS(2028), 1, + ACTIONS(1638), 1, anon_sym_static, - STATE(585), 1, + STATE(606), 1, aux_sym_class_body_repeat1, - STATE(602), 1, + STATE(624), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, - sym_decorator, - STATE(636), 1, + STATE(645), 1, sym_method_definition, - STATE(960), 1, + STATE(651), 1, + sym_decorator, + STATE(928), 1, sym_public_field_definition, - ACTIONS(2031), 2, + ACTIONS(1641), 2, anon_sym_get, anon_sym_set, - STATE(684), 3, + STATE(716), 3, sym_string, sym__property_name, sym_computed_property_name, - [25407] = 18, + [26922] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, anon_sym_DQUOTE, ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(95), 1, + ACTIONS(93), 1, anon_sym_STAR, - ACTIONS(1980), 1, + ACTIONS(1592), 1, sym_identifier, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(1986), 1, + ACTIONS(1598), 1, anon_sym_async, - ACTIONS(1988), 1, + ACTIONS(1600), 1, sym_number, - ACTIONS(1990), 1, + ACTIONS(1602), 1, anon_sym_static, - ACTIONS(2034), 1, + ACTIONS(1644), 1, anon_sym_RBRACE, - STATE(580), 1, + STATE(608), 1, aux_sym_class_body_repeat1, - STATE(602), 1, + STATE(624), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, - sym_decorator, - STATE(636), 1, + STATE(645), 1, sym_method_definition, - STATE(960), 1, + STATE(651), 1, + sym_decorator, + STATE(928), 1, sym_public_field_definition, - ACTIONS(1992), 2, + ACTIONS(1604), 2, anon_sym_get, anon_sym_set, - STATE(684), 3, + STATE(716), 3, sym_string, sym__property_name, sym_computed_property_name, - [25465] = 15, + [26980] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(399), 1, + ACTIONS(75), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(1074), 1, - anon_sym_RBRACE, - ACTIONS(1100), 1, - sym_number, - ACTIONS(1113), 1, - anon_sym_async, - ACTIONS(2036), 1, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(93), 1, anon_sym_STAR, - ACTIONS(2040), 1, - anon_sym_EQ, - ACTIONS(2042), 1, - anon_sym_LBRACK, - STATE(838), 1, - aux_sym_object_repeat1, - ACTIONS(1108), 2, + ACTIONS(1592), 1, sym_identifier, - anon_sym_static, - ACTIONS(1115), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2038), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [25516] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(399), 1, - anon_sym_DQUOTE, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(1100), 1, - sym_number, - ACTIONS(1104), 1, - anon_sym_RBRACE, - ACTIONS(1113), 1, - anon_sym_async, - ACTIONS(2036), 1, - anon_sym_STAR, - ACTIONS(2040), 1, - anon_sym_EQ, - ACTIONS(2042), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - STATE(870), 1, - aux_sym_object_repeat1, - ACTIONS(1108), 2, - sym_identifier, + ACTIONS(1598), 1, + anon_sym_async, + ACTIONS(1600), 1, + sym_number, + ACTIONS(1602), 1, anon_sym_static, - ACTIONS(1115), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(2038), 2, - anon_sym_LPAREN, - anon_sym_COLON, - STATE(1015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - [25567] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(399), 1, - anon_sym_DQUOTE, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(1074), 1, + ACTIONS(1646), 1, anon_sym_RBRACE, - ACTIONS(1100), 1, - sym_number, - ACTIONS(2036), 1, - anon_sym_STAR, - ACTIONS(2040), 1, - anon_sym_EQ, - ACTIONS(2042), 1, - anon_sym_LBRACK, - STATE(838), 1, - aux_sym_object_repeat1, - ACTIONS(1115), 2, + STATE(606), 1, + aux_sym_class_body_repeat1, + STATE(624), 1, + aux_sym_export_statement_repeat1, + STATE(645), 1, + sym_method_definition, + STATE(651), 1, + sym_decorator, + STATE(928), 1, + sym_public_field_definition, + ACTIONS(1604), 2, anon_sym_get, anon_sym_set, - ACTIONS(2038), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(1108), 3, - anon_sym_async, - sym_identifier, - anon_sym_static, - STATE(1015), 3, + STATE(716), 3, sym_string, sym__property_name, sym_computed_property_name, - [25616] = 14, + [27038] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(2044), 1, + ACTIONS(1648), 1, anon_sym_STAR, - ACTIONS(2046), 1, + ACTIONS(1650), 1, anon_sym_default, - ACTIONS(2048), 1, + ACTIONS(1652), 1, anon_sym_LBRACE, - ACTIONS(2050), 1, + ACTIONS(1654), 1, anon_sym_var, - ACTIONS(2054), 1, + ACTIONS(1658), 1, anon_sym_class, - ACTIONS(2056), 1, + ACTIONS(1660), 1, anon_sym_async, - ACTIONS(2058), 1, + ACTIONS(1662), 1, anon_sym_function, - STATE(635), 1, + STATE(262), 1, + sym__declaration, + STATE(651), 1, sym_decorator, - STATE(752), 1, - sym_export_clause, - STATE(803), 1, + STATE(773), 1, aux_sym_export_statement_repeat1, - ACTIONS(2052), 2, + STATE(776), 1, + sym_export_clause, + ACTIONS(1656), 2, anon_sym_let, anon_sym_const, - STATE(243), 6, - sym__declaration, + STATE(230), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [25665] = 14, + [27089] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(95), 1, anon_sym_COMMA, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1100), 1, - sym_number, - ACTIONS(1104), 1, + ACTIONS(631), 1, anon_sym_RBRACE, - ACTIONS(2036), 1, + ACTIONS(658), 1, + sym_number, + ACTIONS(1664), 1, anon_sym_STAR, - ACTIONS(2040), 1, + ACTIONS(1668), 1, anon_sym_EQ, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - STATE(870), 1, + STATE(893), 1, aux_sym_object_repeat1, - ACTIONS(1115), 2, + ACTIONS(675), 2, anon_sym_get, anon_sym_set, - ACTIONS(2038), 2, + ACTIONS(1666), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(1108), 3, + ACTIONS(668), 3, anon_sym_async, sym_identifier, anon_sym_static, - STATE(1015), 3, + STATE(954), 3, sym_string, sym__property_name, sym_computed_property_name, - [25714] = 14, + [27138] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(2044), 1, + ACTIONS(1648), 1, anon_sym_STAR, - ACTIONS(2046), 1, + ACTIONS(1650), 1, anon_sym_default, - ACTIONS(2048), 1, + ACTIONS(1652), 1, anon_sym_LBRACE, - ACTIONS(2050), 1, + ACTIONS(1654), 1, anon_sym_var, - ACTIONS(2060), 1, + ACTIONS(1672), 1, anon_sym_class, - ACTIONS(2062), 1, + ACTIONS(1674), 1, anon_sym_async, - ACTIONS(2064), 1, + ACTIONS(1676), 1, anon_sym_function, - STATE(635), 1, + STATE(262), 1, + sym__declaration, + STATE(651), 1, sym_decorator, - STATE(752), 1, + STATE(776), 1, sym_export_clause, - STATE(753), 1, + STATE(826), 1, aux_sym_export_statement_repeat1, - ACTIONS(2052), 2, + ACTIONS(1656), 2, anon_sym_let, anon_sym_const, - STATE(243), 6, - sym__declaration, + STATE(230), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [25763] = 13, + [27189] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(95), 1, + anon_sym_COMMA, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1100), 1, + ACTIONS(631), 1, + anon_sym_RBRACE, + ACTIONS(658), 1, sym_number, - ACTIONS(1113), 1, + ACTIONS(673), 1, anon_sym_async, - ACTIONS(2036), 1, + ACTIONS(1664), 1, anon_sym_STAR, - ACTIONS(2040), 1, + ACTIONS(1668), 1, anon_sym_EQ, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(1108), 2, + STATE(893), 1, + aux_sym_object_repeat1, + ACTIONS(668), 2, sym_identifier, anon_sym_static, - ACTIONS(1115), 2, + ACTIONS(675), 2, anon_sym_get, anon_sym_set, - ACTIONS(2038), 2, + ACTIONS(1666), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2066), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1015), 3, + STATE(954), 3, sym_string, sym__property_name, sym_computed_property_name, - [25809] = 16, + [27240] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(399), 1, + ACTIONS(95), 1, + anon_sym_COMMA, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1100), 1, + ACTIONS(658), 1, sym_number, - ACTIONS(1108), 1, - sym_identifier, - ACTIONS(1113), 1, + ACTIONS(666), 1, + anon_sym_RBRACE, + ACTIONS(673), 1, anon_sym_async, - ACTIONS(2036), 1, + ACTIONS(1664), 1, anon_sym_STAR, - ACTIONS(2042), 1, + ACTIONS(1668), 1, + anon_sym_EQ, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2068), 1, - anon_sym_export, - ACTIONS(2070), 1, - anon_sym_class, - ACTIONS(2072), 1, + STATE(862), 1, + aux_sym_object_repeat1, + ACTIONS(668), 2, + sym_identifier, anon_sym_static, - STATE(611), 1, - aux_sym_export_statement_repeat1, - STATE(635), 1, - sym_decorator, - ACTIONS(1115), 2, + ACTIONS(675), 2, anon_sym_get, anon_sym_set, - STATE(1015), 3, + ACTIONS(1666), 2, + anon_sym_LPAREN, + anon_sym_COLON, + STATE(954), 3, sym_string, sym__property_name, sym_computed_property_name, - [25861] = 12, + [27291] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(95), 1, + anon_sym_COMMA, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1100), 1, + ACTIONS(658), 1, sym_number, - ACTIONS(2036), 1, + ACTIONS(666), 1, + anon_sym_RBRACE, + ACTIONS(1664), 1, anon_sym_STAR, - ACTIONS(2040), 1, + ACTIONS(1668), 1, anon_sym_EQ, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(1115), 2, + STATE(862), 1, + aux_sym_object_repeat1, + ACTIONS(675), 2, anon_sym_get, anon_sym_set, - ACTIONS(2038), 2, + ACTIONS(1666), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2066), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1108), 3, + ACTIONS(668), 3, anon_sym_async, sym_identifier, anon_sym_static, - STATE(1015), 3, + STATE(954), 3, sym_string, sym__property_name, sym_computed_property_name, - [25905] = 12, + [27340] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(95), 1, anon_sym_COMMA, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1100), 1, - sym_number, - ACTIONS(1104), 1, + ACTIONS(631), 1, anon_sym_RBRACE, - ACTIONS(2040), 1, + ACTIONS(658), 1, + sym_number, + ACTIONS(1668), 1, anon_sym_EQ, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - STATE(870), 1, + STATE(893), 1, aux_sym_object_repeat1, - ACTIONS(2038), 2, + ACTIONS(1666), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1015), 3, + STATE(954), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1108), 5, + ACTIONS(668), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [25949] = 12, + [27384] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1074), 1, - anon_sym_RBRACE, - ACTIONS(1100), 1, + ACTIONS(658), 1, sym_number, - ACTIONS(2040), 1, + ACTIONS(673), 1, + anon_sym_async, + ACTIONS(1664), 1, + anon_sym_STAR, + ACTIONS(1668), 1, anon_sym_EQ, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - STATE(838), 1, - aux_sym_object_repeat1, - ACTIONS(2038), 2, + ACTIONS(668), 2, + sym_identifier, + anon_sym_static, + ACTIONS(675), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(1666), 2, anon_sym_LPAREN, anon_sym_COLON, - STATE(1015), 3, + ACTIONS(1678), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(954), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1108), 5, - anon_sym_async, + [27430] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(394), 1, + anon_sym_DQUOTE, + ACTIONS(396), 1, + anon_sym_SQUOTE, + ACTIONS(658), 1, + sym_number, + ACTIONS(668), 1, sym_identifier, + ACTIONS(673), 1, + anon_sym_async, + ACTIONS(1664), 1, + anon_sym_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1680), 1, + anon_sym_export, + ACTIONS(1682), 1, + anon_sym_class, + ACTIONS(1684), 1, anon_sym_static, + STATE(630), 1, + aux_sym_export_statement_repeat1, + STATE(651), 1, + sym_decorator, + ACTIONS(675), 2, anon_sym_get, anon_sym_set, - [25993] = 10, + STATE(954), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [27482] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(95), 1, + anon_sym_COMMA, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1100), 1, + ACTIONS(658), 1, sym_number, - ACTIONS(2040), 1, + ACTIONS(666), 1, + anon_sym_RBRACE, + ACTIONS(1668), 1, anon_sym_EQ, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2038), 2, + STATE(862), 1, + aux_sym_object_repeat1, + ACTIONS(1666), 2, anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(2066), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(1015), 3, + STATE(954), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1108), 5, + ACTIONS(668), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [26032] = 10, + [27526] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2074), 1, - anon_sym_STAR, - ACTIONS(2076), 1, + ACTIONS(658), 1, sym_number, - ACTIONS(2078), 2, + ACTIONS(1664), 1, + anon_sym_STAR, + ACTIONS(1668), 1, + anon_sym_EQ, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(675), 2, anon_sym_get, anon_sym_set, - ACTIONS(1108), 3, + ACTIONS(1666), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1678), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(668), 3, anon_sym_async, sym_identifier, anon_sym_static, - STATE(961), 3, + STATE(954), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2038), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [26071] = 11, + [27570] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(75), 1, anon_sym_DQUOTE, ACTIONS(77), 1, anon_sym_SQUOTE, - ACTIONS(1984), 1, + ACTIONS(1596), 1, anon_sym_LBRACK, - ACTIONS(2036), 1, + ACTIONS(1664), 1, anon_sym_STAR, - ACTIONS(2080), 1, + ACTIONS(1686), 1, anon_sym_async, - ACTIONS(2082), 1, + ACTIONS(1688), 1, sym_number, - ACTIONS(1980), 2, + ACTIONS(1592), 2, sym_identifier, anon_sym_static, - ACTIONS(2084), 2, + ACTIONS(1690), 2, + anon_sym_get, + anon_sym_set, + STATE(708), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1666), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [27611] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(394), 1, + anon_sym_DQUOTE, + ACTIONS(396), 1, + anon_sym_SQUOTE, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1692), 1, + anon_sym_STAR, + ACTIONS(1694), 1, + sym_number, + ACTIONS(1696), 2, anon_sym_get, anon_sym_set, - STATE(693), 3, + ACTIONS(668), 3, + anon_sym_async, + sym_identifier, + anon_sym_static, + STATE(1064), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2038), 4, + ACTIONS(1666), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [26112] = 10, + [27650] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(394), 1, + anon_sym_DQUOTE, + ACTIONS(396), 1, + anon_sym_SQUOTE, + ACTIONS(658), 1, + sym_number, + ACTIONS(1668), 1, + anon_sym_EQ, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1666), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1678), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(954), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(668), 5, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [27689] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1100), 1, + ACTIONS(658), 1, sym_number, - ACTIONS(2036), 1, + ACTIONS(1664), 1, anon_sym_STAR, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(1115), 2, + ACTIONS(675), 2, anon_sym_get, anon_sym_set, - ACTIONS(1108), 3, + ACTIONS(668), 3, anon_sym_async, sym_identifier, anon_sym_static, - STATE(1015), 3, + STATE(954), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2038), 4, + ACTIONS(1666), 4, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_EQ, - [26151] = 14, + [27728] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(1100), 1, + ACTIONS(658), 1, sym_number, - ACTIONS(1108), 1, + ACTIONS(668), 1, sym_identifier, - ACTIONS(1113), 1, + ACTIONS(673), 1, anon_sym_async, - ACTIONS(2036), 1, + ACTIONS(1664), 1, anon_sym_STAR, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2072), 1, + ACTIONS(1684), 1, anon_sym_static, - STATE(611), 1, + STATE(630), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, + STATE(651), 1, sym_decorator, - ACTIONS(1115), 2, + ACTIONS(675), 2, anon_sym_get, anon_sym_set, - STATE(1015), 3, + STATE(954), 3, sym_string, sym__property_name, sym_computed_property_name, - [26197] = 11, + [27774] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2050), 1, - anon_sym_var, - ACTIONS(2060), 1, - anon_sym_class, - ACTIONS(2062), 1, + ACTIONS(394), 1, + anon_sym_DQUOTE, + ACTIONS(396), 1, + anon_sym_SQUOTE, + ACTIONS(658), 1, + sym_number, + ACTIONS(1670), 1, + anon_sym_LBRACK, + STATE(954), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1666), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(668), 5, anon_sym_async, - ACTIONS(2064), 1, - anon_sym_function, - ACTIONS(2086), 1, - anon_sym_default, - STATE(635), 1, - sym_decorator, - STATE(753), 1, - aux_sym_export_statement_repeat1, - ACTIONS(2052), 2, - anon_sym_let, - anon_sym_const, - STATE(215), 6, - sym__declaration, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - [26237] = 6, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [27808] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(2092), 1, - anon_sym_DOT, - STATE(624), 1, - sym_arguments, - ACTIONS(2090), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(394), 1, anon_sym_DQUOTE, + ACTIONS(396), 1, anon_sym_SQUOTE, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1694), 1, sym_number, - anon_sym_AT, - ACTIONS(2088), 7, - anon_sym_export, - anon_sym_class, + STATE(1064), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(1666), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(668), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [26267] = 11, + [27842] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(2050), 1, + ACTIONS(1654), 1, anon_sym_var, - ACTIONS(2054), 1, + ACTIONS(1658), 1, anon_sym_class, - ACTIONS(2056), 1, + ACTIONS(1660), 1, anon_sym_async, - ACTIONS(2058), 1, + ACTIONS(1662), 1, anon_sym_function, - ACTIONS(2086), 1, + ACTIONS(1698), 1, anon_sym_default, - STATE(635), 1, + STATE(261), 1, + sym__declaration, + STATE(651), 1, sym_decorator, - STATE(803), 1, + STATE(773), 1, aux_sym_export_statement_repeat1, - ACTIONS(2052), 2, + ACTIONS(1656), 2, anon_sym_let, anon_sym_const, - STATE(215), 6, - sym__declaration, + STATE(230), 5, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, sym_function_declaration, sym_generator_function_declaration, - [26307] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(399), 1, - anon_sym_DQUOTE, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2076), 1, - sym_number, - STATE(961), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2038), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(1108), 5, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [26341] = 6, + [27884] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(2098), 1, + ACTIONS(1704), 1, anon_sym_DOT, - STATE(626), 1, + STATE(656), 1, sym_arguments, - ACTIONS(2096), 6, + ACTIONS(1702), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(2094), 7, + ACTIONS(1700), 7, anon_sym_export, anon_sym_class, anon_sym_async, @@ -43213,56 +45540,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26371] = 8, + [27914] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, - anon_sym_DQUOTE, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(1100), 1, - sym_number, - ACTIONS(2042), 1, - anon_sym_LBRACK, - STATE(1015), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2038), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(1108), 5, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [26405] = 3, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(1654), 1, + anon_sym_var, + ACTIONS(1672), 1, + anon_sym_class, + ACTIONS(1674), 1, + anon_sym_async, + ACTIONS(1676), 1, + anon_sym_function, + ACTIONS(1698), 1, + anon_sym_default, + STATE(261), 1, + sym__declaration, + STATE(651), 1, + sym_decorator, + STATE(826), 1, + aux_sym_export_statement_repeat1, + ACTIONS(1656), 2, + anon_sym_let, + anon_sym_const, + STATE(230), 5, + sym_variable_declaration, + sym_lexical_declaration, + sym_class_declaration, + sym_function_declaration, + sym_generator_function_declaration, + [27956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 7, + ACTIONS(1710), 1, + anon_sym_AT, + STATE(630), 1, + aux_sym_export_statement_repeat1, + STATE(651), 1, + sym_decorator, + ACTIONS(1708), 5, anon_sym_STAR, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, - anon_sym_AT, - ACTIONS(2100), 8, + ACTIONS(1706), 7, anon_sym_export, - anon_sym_DOT, anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [26428] = 3, + [27985] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1713), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [28006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2106), 7, + ACTIONS(1717), 7, anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACK, @@ -43270,7 +45623,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(2104), 8, + ACTIONS(1715), 8, anon_sym_export, anon_sym_DOT, anon_sym_class, @@ -43279,39 +45632,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [26451] = 6, + [28029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2112), 1, - anon_sym_AT, - STATE(611), 1, - aux_sym_export_statement_repeat1, - STATE(635), 1, - sym_decorator, - ACTIONS(2110), 5, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1719), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [28050] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(394), 1, anon_sym_DQUOTE, + ACTIONS(396), 1, anon_sym_SQUOTE, + ACTIONS(1666), 1, + anon_sym_LPAREN, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1694), 1, sym_number, - ACTIONS(2108), 7, - anon_sym_export, - anon_sym_class, + ACTIONS(1721), 1, + anon_sym_EQ_GT, + STATE(1064), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(668), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [26480] = 3, + [28084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2115), 5, + ACTIONS(1723), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2117), 9, + ACTIONS(1725), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -43321,62 +45695,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [26502] = 3, + [28106] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2119), 5, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2121), 9, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(394), 1, anon_sym_DQUOTE, + ACTIONS(396), 1, anon_sym_SQUOTE, + ACTIONS(1666), 1, + anon_sym_LPAREN, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1692), 1, + anon_sym_STAR, + ACTIONS(1694), 1, sym_number, - anon_sym_AT, - [26524] = 11, + ACTIONS(1696), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(668), 3, + anon_sym_async, + sym_identifier, + anon_sym_static, + STATE(1064), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + [28142] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(2038), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2074), 1, + ACTIONS(1692), 1, anon_sym_STAR, - ACTIONS(2076), 1, + ACTIONS(1694), 1, sym_number, - ACTIONS(2123), 1, + ACTIONS(1727), 1, anon_sym_async, - ACTIONS(1108), 2, + ACTIONS(668), 2, sym_identifier, anon_sym_static, - ACTIONS(2078), 2, + ACTIONS(1696), 2, anon_sym_get, anon_sym_set, - STATE(961), 3, + STATE(1064), 3, sym_string, sym__property_name, sym_computed_property_name, - [26562] = 3, + [28180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 5, + ACTIONS(1729), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2127), 9, + ACTIONS(1731), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -43386,16 +45767,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [26584] = 3, + [28202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 5, + ACTIONS(1733), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2131), 9, + ACTIONS(1735), 9, anon_sym_STAR, anon_sym_COMMA, anon_sym_RBRACE, @@ -43405,436 +45786,362 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_number, anon_sym_AT, - [26606] = 9, + [28224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(1737), 5, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1739), 9, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(401), 1, anon_sym_SQUOTE, - ACTIONS(2038), 1, - anon_sym_LPAREN, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2076), 1, sym_number, - ACTIONS(2133), 1, - anon_sym_EQ_GT, - STATE(961), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1108), 5, + anon_sym_AT, + [28246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [26640] = 10, + ACTIONS(1743), 9, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + anon_sym_AT, + [28268] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(2038), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2135), 1, + ACTIONS(1745), 1, anon_sym_STAR, - ACTIONS(2137), 1, + ACTIONS(1747), 1, sym_number, - ACTIONS(2139), 2, + ACTIONS(1749), 2, anon_sym_get, anon_sym_set, - ACTIONS(1108), 3, + ACTIONS(668), 3, anon_sym_async, sym_identifier, anon_sym_static, - STATE(996), 3, + STATE(1071), 3, sym_string, sym__property_name, sym_computed_property_name, - [26676] = 10, + [28304] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(2038), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2074), 1, - anon_sym_STAR, - ACTIONS(2076), 1, + ACTIONS(1694), 1, sym_number, - ACTIONS(2078), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(1108), 3, - anon_sym_async, - sym_identifier, - anon_sym_static, - STATE(961), 3, + STATE(1064), 3, sym_string, sym__property_name, sym_computed_property_name, - [26712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2141), 5, + ACTIONS(668), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2143), 9, - anon_sym_STAR, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - [26734] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(361), 1, - anon_sym_LBRACE, - ACTIONS(375), 1, - anon_sym_LBRACK, - ACTIONS(593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2145), 1, - sym_identifier, - ACTIONS(2147), 1, - anon_sym_RPAREN, - STATE(812), 1, - sym_array, - STATE(814), 1, - sym_object, - STATE(1009), 2, - sym_assignment_pattern, - sym_rest_parameter, - ACTIONS(2149), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [26769] = 10, + [28335] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - ACTIONS(375), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(589), 1, + ACTIONS(558), 1, anon_sym_RPAREN, - ACTIONS(593), 1, + ACTIONS(562), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2151), 1, + ACTIONS(1751), 1, sym_identifier, - STATE(771), 1, + STATE(808), 1, sym_object, - STATE(800), 1, + STATE(809), 1, sym_array, - STATE(829), 2, + STATE(891), 2, sym_assignment_pattern, sym_rest_parameter, - ACTIONS(2153), 4, + ACTIONS(1753), 4, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [26804] = 10, + [28370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, - anon_sym_LBRACE, - ACTIONS(375), 1, - anon_sym_LBRACK, - ACTIONS(593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2145), 1, - sym_identifier, - ACTIONS(2155), 1, - anon_sym_RPAREN, - STATE(812), 1, - sym_array, - STATE(814), 1, - sym_object, - STATE(1009), 2, - sym_assignment_pattern, - sym_rest_parameter, - ACTIONS(2149), 4, + ACTIONS(1759), 1, + anon_sym_SEMI, + ACTIONS(1755), 5, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [26839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2159), 6, + ACTIONS(1757), 7, anon_sym_STAR, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(2157), 7, - anon_sym_export, - anon_sym_class, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [26860] = 10, + [28393] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - ACTIONS(375), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(593), 1, + ACTIONS(562), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2145), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(2161), 1, + ACTIONS(1763), 1, anon_sym_RPAREN, - STATE(812), 1, + STATE(836), 1, sym_array, - STATE(814), 1, + STATE(900), 1, sym_object, - STATE(1009), 2, + STATE(1040), 2, sym_assignment_pattern, sym_rest_parameter, - ACTIONS(2149), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [26895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2165), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(2163), 7, - anon_sym_export, - anon_sym_class, + ACTIONS(1765), 4, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [26916] = 8, + [28428] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(2038), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, + ACTIONS(1767), 1, sym_number, - STATE(977), 3, + STATE(955), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1108), 5, + ACTIONS(668), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [26947] = 10, + [28459] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - ACTIONS(375), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(593), 1, + ACTIONS(562), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2145), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(2169), 1, + ACTIONS(1769), 1, anon_sym_RPAREN, - STATE(812), 1, + STATE(836), 1, sym_array, - STATE(814), 1, + STATE(900), 1, sym_object, - STATE(1009), 2, + STATE(1040), 2, sym_assignment_pattern, sym_rest_parameter, - ACTIONS(2149), 4, + ACTIONS(1765), 4, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [26982] = 10, + [28494] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - ACTIONS(375), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(593), 1, + ACTIONS(562), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2145), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(2171), 1, + ACTIONS(1771), 1, anon_sym_RPAREN, - STATE(812), 1, + STATE(836), 1, sym_array, - STATE(814), 1, + STATE(900), 1, sym_object, - STATE(1009), 2, + STATE(1040), 2, sym_assignment_pattern, sym_rest_parameter, - ACTIONS(2149), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [27017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2096), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(2094), 7, - anon_sym_export, - anon_sym_class, + ACTIONS(1765), 4, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [27038] = 10, + [28529] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - ACTIONS(375), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(593), 1, + ACTIONS(562), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2145), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(2173), 1, + ACTIONS(1773), 1, anon_sym_RPAREN, - STATE(812), 1, + STATE(836), 1, sym_array, - STATE(814), 1, + STATE(900), 1, sym_object, - STATE(1009), 2, + STATE(1040), 2, sym_assignment_pattern, sym_rest_parameter, - ACTIONS(2149), 4, + ACTIONS(1765), 4, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [27073] = 8, + [28564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(1777), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(401), 1, anon_sym_SQUOTE, - ACTIONS(2038), 1, - anon_sym_LPAREN, - ACTIONS(2042), 1, - anon_sym_LBRACK, - ACTIONS(2137), 1, sym_number, - STATE(996), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1108), 5, + anon_sym_AT, + ACTIONS(1775), 7, + anon_sym_export, + anon_sym_class, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [27104] = 8, + [28585] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(2038), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2076), 1, + ACTIONS(1747), 1, sym_number, - STATE(961), 3, + STATE(1071), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1108), 5, + ACTIONS(668), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [27135] = 10, + [28616] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(356), 1, + anon_sym_LBRACE, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(562), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1761), 1, + sym_identifier, + ACTIONS(1779), 1, + anon_sym_RPAREN, + STATE(836), 1, + sym_array, + STATE(900), 1, + sym_object, + STATE(1040), 2, + sym_assignment_pattern, + sym_rest_parameter, + ACTIONS(1765), 4, + anon_sym_async, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [28651] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - ACTIONS(375), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(593), 1, + ACTIONS(562), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2145), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(2175), 1, + ACTIONS(1781), 1, anon_sym_RPAREN, - STATE(812), 1, + STATE(836), 1, sym_array, - STATE(814), 1, + STATE(900), 1, sym_object, - STATE(1009), 2, + STATE(1040), 2, sym_assignment_pattern, sym_rest_parameter, - ACTIONS(2149), 4, + ACTIONS(1765), 4, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [27170] = 3, + [28686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 6, + ACTIONS(1702), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - ACTIONS(2177), 7, + ACTIONS(1700), 7, anon_sym_export, anon_sym_class, anon_sym_async, @@ -43842,5534 +46149,5739 @@ static uint16_t ts_small_parse_table[] = { anon_sym_static, anon_sym_get, anon_sym_set, - [27191] = 4, + [28707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 1, - anon_sym_SEMI, - ACTIONS(2181), 5, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - ACTIONS(2183), 7, + ACTIONS(1785), 6, anon_sym_STAR, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, anon_sym_AT, - [27214] = 10, + ACTIONS(1783), 7, + anon_sym_export, + anon_sym_class, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + [28728] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - ACTIONS(375), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(593), 1, + ACTIONS(562), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2145), 1, + ACTIONS(1761), 1, sym_identifier, - ACTIONS(2187), 1, + ACTIONS(1787), 1, anon_sym_RPAREN, - STATE(812), 1, + STATE(836), 1, sym_array, - STATE(814), 1, + STATE(900), 1, sym_object, - STATE(1009), 2, + STATE(1040), 2, sym_assignment_pattern, sym_rest_parameter, - ACTIONS(2149), 4, + ACTIONS(1765), 4, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [27249] = 7, + [28763] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, - anon_sym_DQUOTE, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(2042), 1, + ACTIONS(356), 1, + anon_sym_LBRACE, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(2137), 1, - sym_number, - STATE(996), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(1108), 5, - anon_sym_async, + ACTIONS(562), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1761), 1, sym_identifier, + ACTIONS(1789), 1, + anon_sym_RPAREN, + STATE(836), 1, + sym_array, + STATE(900), 1, + sym_object, + STATE(1040), 2, + sym_assignment_pattern, + sym_rest_parameter, + ACTIONS(1765), 4, + anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [27277] = 7, + [28798] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2076), 1, + ACTIONS(1747), 1, sym_number, - STATE(961), 3, + STATE(1071), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1108), 5, + ACTIONS(668), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [27305] = 7, + [28826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(1791), 5, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + ACTIONS(1793), 7, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(401), 1, anon_sym_SQUOTE, - ACTIONS(1100), 1, sym_number, - ACTIONS(2042), 1, + anon_sym_AT, + [28846] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(394), 1, + anon_sym_DQUOTE, + ACTIONS(396), 1, + anon_sym_SQUOTE, + ACTIONS(1670), 1, anon_sym_LBRACK, - STATE(1015), 3, + ACTIONS(1694), 1, + sym_number, + STATE(1064), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1108), 5, + ACTIONS(668), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [27333] = 3, + [28874] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 5, + ACTIONS(394), 1, + anon_sym_DQUOTE, + ACTIONS(396), 1, + anon_sym_SQUOTE, + ACTIONS(658), 1, + sym_number, + ACTIONS(1670), 1, + anon_sym_LBRACK, + STATE(954), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(668), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - ACTIONS(2191), 7, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - anon_sym_AT, - [27353] = 9, + [28902] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - ACTIONS(375), 1, + ACTIONS(370), 1, anon_sym_LBRACK, - ACTIONS(593), 1, + ACTIONS(562), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2145), 1, + ACTIONS(1761), 1, sym_identifier, - STATE(812), 1, + STATE(836), 1, sym_array, - STATE(814), 1, + STATE(900), 1, sym_object, - STATE(1009), 2, + STATE(1040), 2, sym_assignment_pattern, sym_rest_parameter, - ACTIONS(2149), 4, + ACTIONS(1765), 4, anon_sym_async, anon_sym_static, anon_sym_get, anon_sym_set, - [27385] = 7, + [28934] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(399), 1, + ACTIONS(394), 1, anon_sym_DQUOTE, - ACTIONS(401), 1, + ACTIONS(396), 1, anon_sym_SQUOTE, - ACTIONS(2042), 1, + ACTIONS(1670), 1, anon_sym_LBRACK, - ACTIONS(2167), 1, + ACTIONS(1767), 1, sym_number, - STATE(977), 3, + STATE(955), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(1108), 5, + ACTIONS(668), 5, anon_sym_async, sym_identifier, anon_sym_static, anon_sym_get, anon_sym_set, - [27413] = 11, + [28962] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2197), 1, + ACTIONS(1799), 1, anon_sym_COLON, - ACTIONS(2199), 1, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2201), 1, + ACTIONS(1803), 1, anon_sym_SLASH, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - ACTIONS(2205), 1, + ACTIONS(1807), 1, anon_sym_DOT, - STATE(663), 1, + STATE(698), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [27448] = 11, + [28997] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2197), 1, + ACTIONS(1799), 1, anon_sym_COLON, - ACTIONS(2199), 1, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - ACTIONS(2205), 1, + ACTIONS(1807), 1, anon_sym_DOT, - ACTIONS(2207), 1, + ACTIONS(1809), 1, anon_sym_SLASH, - STATE(673), 1, + STATE(695), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [27483] = 11, + [29032] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2197), 1, + ACTIONS(1799), 1, anon_sym_COLON, - ACTIONS(2199), 1, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - ACTIONS(2205), 1, + ACTIONS(1807), 1, anon_sym_DOT, - ACTIONS(2209), 1, + ACTIONS(1811), 1, anon_sym_SLASH, - STATE(658), 1, + STATE(700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [27518] = 11, + [29067] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2197), 1, + ACTIONS(1799), 1, anon_sym_COLON, - ACTIONS(2199), 1, - anon_sym_GT, - ACTIONS(2203), 1, - sym_jsx_identifier, - ACTIONS(2205), 1, - anon_sym_DOT, - ACTIONS(2211), 1, - anon_sym_SLASH, - STATE(666), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, - sym_jsx_namespace_name, - STATE(718), 2, - sym_jsx_expression, - sym_jsx_attribute, - [27553] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2193), 1, - sym_identifier, - ACTIONS(2195), 1, - anon_sym_LBRACE, - ACTIONS(2199), 1, - anon_sym_GT, - ACTIONS(2203), 1, - sym_jsx_identifier, - ACTIONS(2205), 1, - anon_sym_DOT, - ACTIONS(2211), 1, - anon_sym_SLASH, - STATE(666), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, - sym_jsx_namespace_name, - STATE(718), 2, - sym_jsx_expression, - sym_jsx_attribute, - [27585] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2193), 1, - sym_identifier, - ACTIONS(2195), 1, - anon_sym_LBRACE, - ACTIONS(2199), 1, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2201), 1, - anon_sym_SLASH, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - ACTIONS(2205), 1, + ACTIONS(1807), 1, anon_sym_DOT, - STATE(663), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, - sym_jsx_namespace_name, - STATE(718), 2, - sym_jsx_expression, - sym_jsx_attribute, - [27617] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2193), 1, - sym_identifier, - ACTIONS(2195), 1, - anon_sym_LBRACE, - ACTIONS(2197), 1, - anon_sym_COLON, - ACTIONS(2199), 1, - anon_sym_GT, - ACTIONS(2201), 1, + ACTIONS(1813), 1, anon_sym_SLASH, - ACTIONS(2203), 1, - sym_jsx_identifier, - STATE(663), 1, + STATE(697), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [27649] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2195), 1, + [29102] = 7, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2213), 1, + ACTIONS(1817), 1, anon_sym_LT, - ACTIONS(2215), 1, - anon_sym_DQUOTE, - ACTIONS(2217), 1, - anon_sym_SQUOTE, - STATE(668), 1, + ACTIONS(1819), 1, + sym_jsx_text, + ACTIONS(1821), 1, + sym_comment, + STATE(676), 1, sym_jsx_opening_element, - STATE(740), 5, + STATE(741), 1, + sym_jsx_closing_element, + STATE(670), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - sym_string, - [27675] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2195), 1, + aux_sym_jsx_element_repeat1, + [29128] = 7, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2213), 1, + ACTIONS(1817), 1, anon_sym_LT, - ACTIONS(2215), 1, - anon_sym_DQUOTE, - ACTIONS(2217), 1, - anon_sym_SQUOTE, - STATE(668), 1, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(1823), 1, + sym_jsx_text, + STATE(676), 1, sym_jsx_opening_element, - STATE(738), 5, + STATE(754), 1, + sym_jsx_closing_element, + STATE(703), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - sym_string, - [27701] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2193), 1, - sym_identifier, - ACTIONS(2195), 1, - anon_sym_LBRACE, - ACTIONS(2199), 1, - anon_sym_GT, - ACTIONS(2203), 1, - sym_jsx_identifier, - ACTIONS(2205), 1, - anon_sym_DOT, - ACTIONS(2207), 1, - anon_sym_SLASH, - STATE(673), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, - sym_jsx_namespace_name, - STATE(718), 2, - sym_jsx_expression, - sym_jsx_attribute, - [27733] = 10, + aux_sym_jsx_element_repeat1, + [29154] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2197), 1, + ACTIONS(1799), 1, anon_sym_COLON, - ACTIONS(2199), 1, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - ACTIONS(2209), 1, + ACTIONS(1809), 1, anon_sym_SLASH, - STATE(658), 1, + STATE(695), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [27765] = 10, + [29186] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2197), 1, - anon_sym_COLON, - ACTIONS(2199), 1, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - ACTIONS(2207), 1, + ACTIONS(1807), 1, + anon_sym_DOT, + ACTIONS(1811), 1, anon_sym_SLASH, - STATE(673), 1, + STATE(700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [27797] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2193), 1, - sym_identifier, - ACTIONS(2195), 1, + [29218] = 7, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2199), 1, - anon_sym_GT, - ACTIONS(2203), 1, - sym_jsx_identifier, - ACTIONS(2205), 1, - anon_sym_DOT, - ACTIONS(2209), 1, - anon_sym_SLASH, - STATE(658), 1, - aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, - sym_jsx_namespace_name, - STATE(718), 2, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(1823), 1, + sym_jsx_text, + ACTIONS(1825), 1, + anon_sym_LT, + STATE(676), 1, + sym_jsx_opening_element, + STATE(907), 1, + sym_jsx_closing_element, + STATE(703), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [27829] = 10, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [29244] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2197), 1, - anon_sym_COLON, - ACTIONS(2199), 1, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - ACTIONS(2211), 1, + ACTIONS(1807), 1, + anon_sym_DOT, + ACTIONS(1813), 1, anon_sym_SLASH, - STATE(666), 1, + STATE(697), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [27861] = 9, + [29276] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2203), 1, - sym_jsx_identifier, - ACTIONS(2219), 1, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2221), 1, + ACTIONS(1805), 1, + sym_jsx_identifier, + ACTIONS(1807), 1, + anon_sym_DOT, + ACTIONS(1809), 1, anon_sym_SLASH, - STATE(670), 1, + STATE(695), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [27890] = 7, - ACTIONS(2223), 1, + [29308] = 7, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2225), 1, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(1825), 1, anon_sym_LT, - ACTIONS(2227), 1, + ACTIONS(1827), 1, sym_jsx_text, - ACTIONS(2229), 1, - sym_comment, - STATE(553), 1, - sym_jsx_closing_element, - STATE(662), 1, + STATE(676), 1, sym_jsx_opening_element, - STATE(674), 4, + STATE(901), 1, + sym_jsx_closing_element, + STATE(673), 5, sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [27915] = 9, + [29334] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(1829), 1, + anon_sym_LT, + ACTIONS(1831), 1, + anon_sym_DQUOTE, + ACTIONS(1833), 1, + anon_sym_SQUOTE, + STATE(669), 1, + sym_jsx_opening_element, + STATE(767), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym_string, + [29360] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(1829), 1, + anon_sym_LT, + ACTIONS(1831), 1, + anon_sym_DQUOTE, + ACTIONS(1833), 1, + anon_sym_SQUOTE, + STATE(669), 1, + sym_jsx_opening_element, + STATE(737), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym_string, + [29386] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2199), 1, + ACTIONS(1799), 1, + anon_sym_COLON, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - ACTIONS(2209), 1, + ACTIONS(1813), 1, anon_sym_SLASH, - STATE(658), 1, + STATE(697), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [27944] = 7, - ACTIONS(2223), 1, + [29418] = 7, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2231), 1, - anon_sym_LT, - ACTIONS(2233), 1, + ACTIONS(1823), 1, sym_jsx_text, - STATE(662), 1, - sym_jsx_opening_element, - STATE(872), 1, + ACTIONS(1835), 1, + anon_sym_LT, + STATE(558), 1, sym_jsx_closing_element, - STATE(675), 4, + STATE(676), 1, + sym_jsx_opening_element, + STATE(703), 5, sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [27969] = 7, - ACTIONS(2223), 1, + [29444] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(1801), 1, + anon_sym_GT, + ACTIONS(1803), 1, + anon_sym_SLASH, + ACTIONS(1805), 1, + sym_jsx_identifier, + ACTIONS(1807), 1, + anon_sym_DOT, + STATE(698), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(723), 1, + sym_jsx_namespace_name, + STATE(766), 2, + sym_jsx_expression, + sym_jsx_attribute, + [29476] = 7, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2231), 1, - anon_sym_LT, - ACTIONS(2235), 1, + ACTIONS(1823), 1, sym_jsx_text, - STATE(662), 1, - sym_jsx_opening_element, - STATE(886), 1, + ACTIONS(1837), 1, + anon_sym_LT, + STATE(440), 1, sym_jsx_closing_element, - STATE(661), 4, + STATE(676), 1, + sym_jsx_opening_element, + STATE(703), 5, sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [27994] = 9, + [29502] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2203), 1, - sym_jsx_identifier, - ACTIONS(2219), 1, + ACTIONS(1799), 1, + anon_sym_COLON, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2237), 1, + ACTIONS(1803), 1, anon_sym_SLASH, - STATE(670), 1, + ACTIONS(1805), 1, + sym_jsx_identifier, + STATE(698), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [28023] = 9, + [29534] = 7, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(1835), 1, + anon_sym_LT, + ACTIONS(1839), 1, + sym_jsx_text, + STATE(584), 1, + sym_jsx_closing_element, + STATE(676), 1, + sym_jsx_opening_element, + STATE(680), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [29560] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2199), 1, + ACTIONS(1799), 1, + anon_sym_COLON, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - ACTIONS(2211), 1, + ACTIONS(1811), 1, anon_sym_SLASH, - STATE(666), 1, + STATE(700), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [28052] = 9, + [29592] = 7, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(1837), 1, + anon_sym_LT, + ACTIONS(1841), 1, + sym_jsx_text, + STATE(404), 1, + sym_jsx_closing_element, + STATE(676), 1, + sym_jsx_opening_element, + STATE(682), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [29618] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2199), 1, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2201), 1, + ACTIONS(1803), 1, anon_sym_SLASH, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - STATE(663), 1, + STATE(698), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [28081] = 9, + [29647] = 6, + ACTIONS(1815), 1, + anon_sym_LBRACE, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(1843), 1, + anon_sym_LT, + ACTIONS(1845), 1, + sym_jsx_text, + STATE(676), 1, + sym_jsx_opening_element, + STATE(704), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [29670] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1847), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1850), 1, anon_sym_LBRACE, - ACTIONS(2203), 1, - sym_jsx_identifier, - ACTIONS(2219), 1, + ACTIONS(1853), 1, anon_sym_GT, - ACTIONS(2239), 1, + ACTIONS(1855), 1, anon_sym_SLASH, - STATE(670), 1, + ACTIONS(1857), 1, + sym_jsx_identifier, + STATE(689), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [28110] = 7, - ACTIONS(2223), 1, + [29699] = 6, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(1823), 1, sym_jsx_text, - ACTIONS(2241), 1, + ACTIONS(1860), 1, anon_sym_LT, - STATE(662), 1, + STATE(676), 1, sym_jsx_opening_element, - STATE(730), 1, - sym_jsx_closing_element, - STATE(675), 4, + STATE(703), 5, sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [28135] = 7, - ACTIONS(2223), 1, + [29722] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(1801), 1, + anon_sym_GT, + ACTIONS(1805), 1, + sym_jsx_identifier, + ACTIONS(1813), 1, + anon_sym_SLASH, + STATE(697), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(723), 1, + sym_jsx_namespace_name, + STATE(766), 2, + sym_jsx_expression, + sym_jsx_attribute, + [29751] = 6, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2241), 1, + ACTIONS(1862), 1, anon_sym_LT, - ACTIONS(2243), 1, + ACTIONS(1864), 1, sym_jsx_text, - STATE(662), 1, + STATE(676), 1, sym_jsx_opening_element, - STATE(729), 1, - sym_jsx_closing_element, - STATE(667), 4, + STATE(690), 5, sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [28160] = 7, - ACTIONS(2223), 1, + [29774] = 6, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(1823), 1, sym_jsx_text, - ACTIONS(2245), 1, + ACTIONS(1866), 1, anon_sym_LT, - STATE(375), 1, - sym_jsx_closing_element, - STATE(662), 1, + STATE(676), 1, sym_jsx_opening_element, - STATE(675), 4, + STATE(703), 5, sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [28185] = 9, + [29797] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2247), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2250), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2253), 1, + ACTIONS(1801), 1, anon_sym_GT, - ACTIONS(2255), 1, + ACTIONS(1805), 1, + sym_jsx_identifier, + ACTIONS(1809), 1, anon_sym_SLASH, - ACTIONS(2257), 1, + STATE(695), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(723), 1, + sym_jsx_namespace_name, + STATE(766), 2, + sym_jsx_expression, + sym_jsx_attribute, + [29826] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(1805), 1, sym_jsx_identifier, - STATE(670), 1, + ACTIONS(1868), 1, + anon_sym_GT, + ACTIONS(1870), 1, + anon_sym_SLASH, + STATE(689), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [28214] = 7, - ACTIONS(2223), 1, + [29855] = 6, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2245), 1, + ACTIONS(1872), 1, anon_sym_LT, - ACTIONS(2260), 1, + ACTIONS(1874), 1, sym_jsx_text, - STATE(431), 1, - sym_jsx_closing_element, - STATE(662), 1, + STATE(676), 1, sym_jsx_opening_element, - STATE(669), 4, + STATE(701), 5, sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [28239] = 9, + [29878] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2199), 1, - anon_sym_GT, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - ACTIONS(2207), 1, + ACTIONS(1868), 1, + anon_sym_GT, + ACTIONS(1876), 1, anon_sym_SLASH, - STATE(673), 1, + STATE(689), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [28268] = 9, + [29907] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 1, + ACTIONS(1795), 1, sym_identifier, - ACTIONS(2195), 1, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2203), 1, + ACTIONS(1805), 1, sym_jsx_identifier, - ACTIONS(2219), 1, + ACTIONS(1868), 1, anon_sym_GT, - ACTIONS(2262), 1, + ACTIONS(1878), 1, anon_sym_SLASH, - STATE(670), 1, + STATE(689), 1, aux_sym_jsx_opening_element_repeat1, - STATE(701), 1, + STATE(723), 1, sym_jsx_namespace_name, - STATE(718), 2, + STATE(766), 2, sym_jsx_expression, sym_jsx_attribute, - [28297] = 7, - ACTIONS(2223), 1, - anon_sym_LBRACE, - ACTIONS(2225), 1, - anon_sym_LT, - ACTIONS(2229), 1, + [29936] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, - sym_jsx_text, - STATE(536), 1, - sym_jsx_closing_element, - STATE(662), 1, - sym_jsx_opening_element, - STATE(675), 4, - sym_jsx_element, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1797), 1, + anon_sym_LBRACE, + ACTIONS(1801), 1, + anon_sym_GT, + ACTIONS(1805), 1, + sym_jsx_identifier, + ACTIONS(1811), 1, + anon_sym_SLASH, + STATE(700), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(723), 1, + sym_jsx_namespace_name, + STATE(766), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [28322] = 6, - ACTIONS(2229), 1, + sym_jsx_attribute, + [29965] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(2264), 1, + ACTIONS(1795), 1, + sym_identifier, + ACTIONS(1797), 1, anon_sym_LBRACE, - ACTIONS(2267), 1, - anon_sym_LT, - ACTIONS(2270), 1, - sym_jsx_text, - STATE(662), 1, - sym_jsx_opening_element, - STATE(675), 4, - sym_jsx_element, + ACTIONS(1805), 1, + sym_jsx_identifier, + ACTIONS(1868), 1, + anon_sym_GT, + ACTIONS(1880), 1, + anon_sym_SLASH, + STATE(689), 1, + aux_sym_jsx_opening_element_repeat1, + STATE(723), 1, + sym_jsx_namespace_name, + STATE(766), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [28344] = 6, - ACTIONS(2223), 1, + sym_jsx_attribute, + [29994] = 6, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(1823), 1, sym_jsx_text, - ACTIONS(2273), 1, + ACTIONS(1882), 1, anon_sym_LT, - STATE(662), 1, + STATE(676), 1, sym_jsx_opening_element, - STATE(675), 4, + STATE(703), 5, sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [28366] = 6, - ACTIONS(2223), 1, + [30017] = 6, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2275), 1, + ACTIONS(1884), 1, anon_sym_LT, - ACTIONS(2277), 1, + ACTIONS(1886), 1, sym_jsx_text, - STATE(662), 1, + STATE(676), 1, sym_jsx_opening_element, - STATE(678), 4, + STATE(693), 5, sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [28388] = 6, - ACTIONS(2223), 1, - anon_sym_LBRACE, - ACTIONS(2229), 1, + [30040] = 6, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2233), 1, - sym_jsx_text, - ACTIONS(2279), 1, - anon_sym_LT, - STATE(662), 1, - sym_jsx_opening_element, - STATE(675), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [28410] = 6, - ACTIONS(2223), 1, + ACTIONS(1888), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, - sym_comment, - ACTIONS(2281), 1, + ACTIONS(1891), 1, anon_sym_LT, - ACTIONS(2283), 1, + ACTIONS(1894), 1, sym_jsx_text, - STATE(662), 1, + STATE(676), 1, sym_jsx_opening_element, - STATE(680), 4, + STATE(703), 5, sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [28432] = 6, - ACTIONS(2223), 1, + [30063] = 6, + ACTIONS(1815), 1, anon_sym_LBRACE, - ACTIONS(2229), 1, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(1823), 1, sym_jsx_text, - ACTIONS(2285), 1, - anon_sym_LT, - STATE(662), 1, - sym_jsx_opening_element, - STATE(675), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [28454] = 6, - ACTIONS(2223), 1, - anon_sym_LBRACE, - ACTIONS(2229), 1, - sym_comment, - ACTIONS(2287), 1, + ACTIONS(1897), 1, anon_sym_LT, - ACTIONS(2289), 1, - sym_jsx_text, - STATE(662), 1, + STATE(676), 1, sym_jsx_opening_element, - STATE(676), 4, + STATE(703), 5, sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [28476] = 5, + [30086] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(1799), 1, anon_sym_COLON, - ACTIONS(2295), 1, + ACTIONS(1903), 1, anon_sym_EQ, - ACTIONS(2291), 2, + ACTIONS(1899), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2293), 3, + ACTIONS(1901), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [28495] = 5, + [30105] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2297), 1, + ACTIONS(1905), 1, sym_identifier, - STATE(607), 1, - sym_decorator_member_expression, - STATE(630), 1, - sym_decorator_call_expression, - ACTIONS(2299), 4, - anon_sym_async, - anon_sym_static, - anon_sym_get, - anon_sym_set, - [28514] = 6, + ACTIONS(1907), 1, + anon_sym_GT, + ACTIONS(1909), 1, + anon_sym_SLASH, + ACTIONS(1911), 1, + sym_jsx_identifier, + STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, + sym_jsx_namespace_name, + [30127] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_GT, + ACTIONS(1911), 1, + sym_jsx_identifier, + ACTIONS(1913), 1, + anon_sym_SLASH, + STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, + sym_jsx_namespace_name, + [30149] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, anon_sym_LPAREN, - ACTIONS(2305), 1, + ACTIONS(1919), 1, anon_sym_EQ, - STATE(921), 1, + STATE(982), 1, sym__initializer, - STATE(946), 1, + STATE(1065), 1, sym_formal_parameters, - ACTIONS(2303), 2, + ACTIONS(1917), 2, sym__automatic_semicolon, anon_sym_SEMI, - [28534] = 5, + [30169] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_default, - ACTIONS(2310), 1, - anon_sym_RBRACE, - ACTIONS(2312), 1, - anon_sym_case, - STATE(685), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [28552] = 7, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_GT, + ACTIONS(1911), 1, + sym_jsx_identifier, + ACTIONS(1921), 1, + anon_sym_SLASH, + STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, + sym_jsx_namespace_name, + [30191] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_LBRACK, - ACTIONS(417), 1, + ACTIONS(410), 1, anon_sym_LBRACE, - ACTIONS(2315), 1, + ACTIONS(1923), 1, sym_identifier, - STATE(706), 1, + STATE(742), 1, sym_array, - STATE(725), 1, + STATE(764), 1, sym_object, - STATE(790), 1, + STATE(822), 1, sym_variable_declarator, - [28574] = 5, + [30213] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2319), 1, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_GT, + ACTIONS(1911), 1, + sym_jsx_identifier, + ACTIONS(1925), 1, + anon_sym_SLASH, + STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, + sym_jsx_namespace_name, + [30235] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_COMMA, + ACTIONS(666), 1, + anon_sym_RBRACE, + ACTIONS(1668), 1, + anon_sym_EQ, + STATE(862), 1, + aux_sym_object_repeat1, + ACTIONS(1666), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [30255] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_COMMA, + ACTIONS(631), 1, + anon_sym_RBRACE, + ACTIONS(1668), 1, + anon_sym_EQ, + STATE(893), 1, + aux_sym_object_repeat1, + ACTIONS(1666), 2, + anon_sym_LPAREN, + anon_sym_COLON, + [30275] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1929), 1, anon_sym_BQUOTE, - ACTIONS(2321), 1, + ACTIONS(1931), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2317), 2, + ACTIONS(1927), 2, sym__template_chars, sym_escape_sequence, - STATE(703), 2, + STATE(717), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [28592] = 5, + [30293] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2323), 1, + ACTIONS(1933), 1, anon_sym_default, - ACTIONS(2325), 1, + ACTIONS(1935), 1, anon_sym_RBRACE, - ACTIONS(2327), 1, + ACTIONS(1937), 1, anon_sym_case, - STATE(697), 3, + STATE(729), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [28610] = 6, + [30311] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - ACTIONS(1434), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_LBRACK, - STATE(418), 2, - sym_template_string, - sym_arguments, - [28630] = 5, + ACTIONS(1919), 1, + anon_sym_EQ, + STATE(934), 1, + sym_formal_parameters, + STATE(965), 1, + sym__initializer, + ACTIONS(1939), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [30331] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2329), 1, + ACTIONS(1944), 1, anon_sym_BQUOTE, - ACTIONS(2317), 2, - sym__template_chars, - sym_escape_sequence, - STATE(703), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [28648] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2321), 1, + ACTIONS(1946), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2333), 1, - anon_sym_BQUOTE, - ACTIONS(2331), 2, + ACTIONS(1941), 2, sym__template_chars, sym_escape_sequence, - STATE(690), 2, + STATE(717), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [28666] = 7, + [30349] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym_LBRACK, - ACTIONS(417), 1, - anon_sym_LBRACE, - ACTIONS(2315), 1, + ACTIONS(1905), 1, sym_identifier, - STATE(706), 1, - sym_array, - STATE(725), 1, - sym_object, - STATE(794), 1, - sym_variable_declarator, - [28688] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - ACTIONS(2305), 1, - anon_sym_EQ, - STATE(893), 1, - sym_formal_parameters, - STATE(943), 1, - sym__initializer, - ACTIONS(2335), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [28708] = 3, + ACTIONS(1907), 1, + anon_sym_GT, + ACTIONS(1911), 1, + sym_jsx_identifier, + ACTIONS(1949), 1, + anon_sym_SLASH, + STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, + sym_jsx_namespace_name, + [30371] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2337), 2, - anon_sym_SLASH, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(2339), 4, - anon_sym_LBRACE, + ACTIONS(1907), 1, anon_sym_GT, + ACTIONS(1911), 1, sym_jsx_identifier, - anon_sym_DOT, - [28722] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(79), 1, - anon_sym_BQUOTE, - ACTIONS(1457), 1, - anon_sym_DOT, - ACTIONS(1467), 1, - anon_sym_LPAREN, - ACTIONS(1650), 1, - anon_sym_LBRACK, - STATE(541), 2, - sym_template_string, - sym_arguments, - [28742] = 3, + ACTIONS(1951), 1, + anon_sym_SLASH, + STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, + sym_jsx_namespace_name, + [30393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2341), 2, + ACTIONS(1953), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2343), 4, + ACTIONS(1955), 4, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT, sym_jsx_identifier, - [28756] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2323), 1, - anon_sym_default, - ACTIONS(2327), 1, - anon_sym_case, - ACTIONS(2345), 1, - anon_sym_RBRACE, - STATE(685), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [28774] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(403), 1, - anon_sym_BQUOTE, - ACTIONS(1426), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, anon_sym_DOT, - ACTIONS(1650), 1, - anon_sym_LBRACK, - STATE(418), 2, - sym_template_string, - sym_arguments, - [28794] = 5, + [30407] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2321), 1, + ACTIONS(1931), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2349), 1, + ACTIONS(1959), 1, anon_sym_BQUOTE, - ACTIONS(2347), 2, + ACTIONS(1957), 2, sym__template_chars, sym_escape_sequence, - STATE(687), 2, + STATE(724), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [28812] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(1074), 1, - anon_sym_RBRACE, - ACTIONS(2040), 1, - anon_sym_EQ, - STATE(838), 1, - aux_sym_object_repeat1, - ACTIONS(2038), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [28832] = 4, + [30425] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 1, - anon_sym_EQ, - ACTIONS(2351), 2, - anon_sym_SLASH, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(2353), 3, - anon_sym_LBRACE, + ACTIONS(1907), 1, anon_sym_GT, + ACTIONS(1911), 1, sym_jsx_identifier, - [28848] = 6, + ACTIONS(1961), 1, + anon_sym_SLASH, + STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, + sym_jsx_namespace_name, + [30447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(1104), 1, - anon_sym_RBRACE, - ACTIONS(2040), 1, + ACTIONS(1967), 1, anon_sym_EQ, - STATE(870), 1, - aux_sym_object_repeat1, - ACTIONS(2038), 2, - anon_sym_LPAREN, - anon_sym_COLON, - [28868] = 5, + ACTIONS(1963), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(1965), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [30463] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2360), 1, - anon_sym_BQUOTE, - ACTIONS(2362), 1, + ACTIONS(1931), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2357), 2, + ACTIONS(1969), 1, + anon_sym_BQUOTE, + ACTIONS(1927), 2, sym__template_chars, sym_escape_sequence, - STATE(703), 2, + STATE(717), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [28886] = 7, + [30481] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_LBRACK, - ACTIONS(417), 1, + ACTIONS(410), 1, anon_sym_LBRACE, - ACTIONS(2315), 1, + ACTIONS(1923), 1, sym_identifier, - STATE(706), 1, + STATE(742), 1, sym_array, - STATE(725), 1, + STATE(764), 1, sym_object, - STATE(849), 1, + STATE(848), 1, sym_variable_declarator, - [28908] = 6, + [30503] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(2367), 1, - anon_sym_SLASH, - ACTIONS(2369), 1, + ACTIONS(1907), 1, + anon_sym_GT, + ACTIONS(1911), 1, sym_jsx_identifier, - STATE(653), 1, - sym_nested_identifier, + ACTIONS(1971), 1, + anon_sym_SLASH, STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, sym_jsx_namespace_name, - [28927] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2305), 1, - anon_sym_EQ, - STATE(868), 1, - sym__initializer, - ACTIONS(1678), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [28942] = 6, + [30525] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(2369), 1, + ACTIONS(1907), 1, + anon_sym_GT, + ACTIONS(1911), 1, sym_jsx_identifier, - ACTIONS(2371), 1, + ACTIONS(1973), 1, anon_sym_SLASH, - STATE(653), 1, - sym_nested_identifier, STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, sym_jsx_namespace_name, - [28961] = 6, + [30547] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(2369), 1, + ACTIONS(1907), 1, + anon_sym_GT, + ACTIONS(1911), 1, sym_jsx_identifier, - ACTIONS(2373), 1, + ACTIONS(1975), 1, anon_sym_SLASH, - STATE(653), 1, - sym_nested_identifier, STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, sym_jsx_namespace_name, - [28980] = 6, + [30569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2375), 1, - sym_identifier, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2379), 1, - anon_sym_extends, - STATE(492), 1, - sym_class_body, - STATE(916), 1, - sym_class_heritage, - [28999] = 4, + ACTIONS(1977), 1, + anon_sym_default, + ACTIONS(1980), 1, + anon_sym_RBRACE, + ACTIONS(1982), 1, + anon_sym_case, + STATE(729), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [30587] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2305), 1, - anon_sym_EQ, - STATE(839), 1, - sym__initializer, - ACTIONS(1469), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [29014] = 3, + ACTIONS(1931), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1987), 1, + anon_sym_BQUOTE, + ACTIONS(1985), 2, + sym__template_chars, + sym_escape_sequence, + STATE(714), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [30605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2381), 2, + ACTIONS(1989), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2383), 3, + ACTIONS(1991), 4, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT, sym_jsx_identifier, - [29027] = 6, + [30619] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2385), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(2387), 1, + ACTIONS(1907), 1, anon_sym_GT, - ACTIONS(2389), 1, + ACTIONS(1911), 1, sym_jsx_identifier, - STATE(648), 1, + ACTIONS(1993), 1, + anon_sym_SLASH, + STATE(672), 1, sym_nested_identifier, - STATE(664), 1, + STATE(699), 1, sym_jsx_namespace_name, - [29046] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2379), 1, - anon_sym_extends, - ACTIONS(2391), 1, - sym_identifier, - STATE(513), 1, - sym_class_body, - STATE(978), 1, - sym_class_heritage, - [29065] = 6, + [30641] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2379), 1, - anon_sym_extends, - ACTIONS(2393), 1, - sym_identifier, - STATE(513), 1, - sym_class_body, - STATE(978), 1, - sym_class_heritage, - [29084] = 6, + ACTIONS(1933), 1, + anon_sym_default, + ACTIONS(1937), 1, + anon_sym_case, + ACTIONS(1995), 1, + anon_sym_RBRACE, + STATE(715), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [30659] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, + ACTIONS(1905), 1, sym_identifier, - ACTIONS(2369), 1, + ACTIONS(1907), 1, + anon_sym_GT, + ACTIONS(1911), 1, sym_jsx_identifier, - ACTIONS(2395), 1, + ACTIONS(1997), 1, anon_sym_SLASH, - STATE(653), 1, - sym_nested_identifier, STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, sym_jsx_namespace_name, - [29103] = 6, + [30681] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(53), 1, + anon_sym_LBRACK, + ACTIONS(410), 1, anon_sym_LBRACE, - ACTIONS(2379), 1, - anon_sym_extends, - ACTIONS(2397), 1, + ACTIONS(1923), 1, sym_identifier, - STATE(513), 1, - sym_class_body, - STATE(978), 1, - sym_class_heritage, - [29122] = 6, + STATE(742), 1, + sym_array, + STATE(764), 1, + sym_object, + STATE(833), 1, + sym_variable_declarator, + [30703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, - anon_sym_LBRACE, - ACTIONS(375), 1, - anon_sym_LBRACK, - ACTIONS(2399), 1, + ACTIONS(1999), 1, sym_identifier, - STATE(1065), 1, - sym_object, - STATE(1067), 1, - sym_array, - [29141] = 3, + ACTIONS(2001), 1, + anon_sym_LBRACE, + ACTIONS(2003), 1, + anon_sym_extends, + STATE(424), 1, + sym_class_body, + STATE(1004), 1, + sym_class_heritage, + [30722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2401), 2, + ACTIONS(2005), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2403), 3, + ACTIONS(2007), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29154] = 3, + [30735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1722), 2, + ACTIONS(1316), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1724), 3, + ACTIONS(1318), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29167] = 3, + [30748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1700), 2, + ACTIONS(1905), 1, + sym_identifier, + ACTIONS(1907), 1, + anon_sym_GT, + ACTIONS(1911), 1, + sym_jsx_identifier, + STATE(672), 1, + sym_nested_identifier, + STATE(699), 1, + sym_jsx_namespace_name, + [30767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1702), 3, + ACTIONS(1324), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29180] = 3, + [30780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1788), 2, + ACTIONS(1308), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1790), 3, + ACTIONS(1310), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29193] = 4, + [30793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2040), 1, + ACTIONS(1919), 1, anon_sym_EQ, - ACTIONS(2038), 2, - anon_sym_LPAREN, - anon_sym_COLON, - ACTIONS(2066), 2, + STATE(878), 1, + sym__initializer, + ACTIONS(1282), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [29208] = 6, + anon_sym_SEMI, + [30808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2379), 1, - anon_sym_extends, - ACTIONS(2405), 1, - sym_identifier, - ACTIONS(2407), 1, + ACTIONS(356), 1, anon_sym_LBRACE, - STATE(397), 1, - sym_class_body, - STATE(942), 1, - sym_class_heritage, - [29227] = 6, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(2009), 1, + sym_identifier, + STATE(1088), 1, + sym_array, + STATE(1121), 1, + sym_object, + [30827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2409), 1, + ACTIONS(1366), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(2411), 1, + ACTIONS(1368), 3, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(2413), 1, sym_jsx_identifier, - STATE(656), 1, - sym_nested_identifier, - STATE(660), 1, - sym_jsx_namespace_name, - [29246] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2305), 1, - anon_sym_EQ, - STATE(867), 1, - sym__initializer, - ACTIONS(1687), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [29261] = 6, + [30840] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(2415), 1, + ACTIONS(2011), 1, anon_sym_export, - ACTIONS(2417), 1, + ACTIONS(2013), 1, anon_sym_class, - STATE(611), 1, + STATE(630), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, + STATE(651), 1, sym_decorator, - [29280] = 6, + [30859] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, + ACTIONS(2015), 1, sym_identifier, - ACTIONS(2369), 1, + ACTIONS(2017), 1, + anon_sym_GT, + ACTIONS(2019), 1, sym_jsx_identifier, - ACTIONS(2419), 1, - anon_sym_SLASH, - STATE(653), 1, + STATE(674), 1, sym_nested_identifier, - STATE(672), 1, + STATE(691), 1, sym_jsx_namespace_name, - [29299] = 3, + [30878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1752), 2, + ACTIONS(1270), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1754), 3, + ACTIONS(1272), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29312] = 3, + [30891] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2001), 1, + anon_sym_LBRACE, + ACTIONS(2003), 1, + anon_sym_extends, + ACTIONS(2021), 1, + sym_identifier, + STATE(395), 1, + sym_class_body, + STATE(959), 1, + sym_class_heritage, + [30910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 2, + ACTIONS(1278), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1748), 3, + ACTIONS(1280), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29325] = 3, + [30923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1674), 2, + ACTIONS(2023), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1676), 3, + ACTIONS(2025), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29338] = 3, + [30936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1718), 2, + ACTIONS(1374), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1720), 3, + ACTIONS(1376), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29351] = 3, + [30949] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_extends, + ACTIONS(2027), 1, + sym_identifier, + ACTIONS(2029), 1, + anon_sym_LBRACE, + STATE(512), 1, + sym_class_body, + STATE(1016), 1, + sym_class_heritage, + [30968] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(356), 1, + anon_sym_LBRACE, + ACTIONS(370), 1, + anon_sym_LBRACK, + ACTIONS(2031), 1, + sym_identifier, + STATE(981), 1, + sym_array, + STATE(1056), 1, + sym_object, + [30987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1784), 2, + ACTIONS(1360), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(1786), 3, + ACTIONS(1362), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29364] = 3, + [31000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1764), 2, - anon_sym_SLASH, + ACTIONS(2033), 1, sym_identifier, - ACTIONS(1766), 3, - anon_sym_LBRACE, + ACTIONS(2035), 1, anon_sym_GT, + ACTIONS(2037), 1, sym_jsx_identifier, - [29377] = 6, + STATE(675), 1, + sym_nested_identifier, + STATE(694), 1, + sym_jsx_namespace_name, + [31019] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_extends, + ACTIONS(2029), 1, + anon_sym_LBRACE, + ACTIONS(2039), 1, + sym_identifier, + STATE(520), 1, + sym_class_body, + STATE(1051), 1, + sym_class_heritage, + [31038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(361), 1, + ACTIONS(2003), 1, + anon_sym_extends, + ACTIONS(2029), 1, anon_sym_LBRACE, - ACTIONS(375), 1, - anon_sym_LBRACK, - ACTIONS(2421), 1, + ACTIONS(2041), 1, sym_identifier, - STATE(923), 1, - sym_object, - STATE(950), 1, - sym_array, - [29396] = 6, + STATE(512), 1, + sym_class_body, + STATE(1016), 1, + sym_class_heritage, + [31057] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1919), 1, + anon_sym_EQ, + STATE(876), 1, + sym__initializer, + ACTIONS(1029), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [31072] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, + anon_sym_extends, + ACTIONS(2029), 1, + anon_sym_LBRACE, + ACTIONS(2043), 1, + sym_identifier, + STATE(520), 1, + sym_class_body, + STATE(1051), 1, + sym_class_heritage, + [31091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1312), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(1314), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [31104] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(2045), 1, + anon_sym_export, + ACTIONS(2047), 1, + anon_sym_class, + STATE(630), 1, + aux_sym_export_statement_repeat1, + STATE(651), 1, + sym_decorator, + [31123] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_EQ, + ACTIONS(1666), 2, + anon_sym_LPAREN, + anon_sym_COLON, + ACTIONS(1678), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [31138] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, + ACTIONS(2049), 1, sym_identifier, - ACTIONS(2369), 1, + ACTIONS(2051), 1, + anon_sym_GT, + ACTIONS(2053), 1, sym_jsx_identifier, - ACTIONS(2423), 1, - anon_sym_SLASH, - STATE(653), 1, + STATE(681), 1, sym_nested_identifier, - STATE(672), 1, + STATE(687), 1, sym_jsx_namespace_name, - [29415] = 6, + [31157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2379), 1, + ACTIONS(1919), 1, + anon_sym_EQ, + STATE(877), 1, + sym__initializer, + ACTIONS(1291), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [31172] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2003), 1, anon_sym_extends, - ACTIONS(2425), 1, + ACTIONS(2029), 1, + anon_sym_LBRACE, + ACTIONS(2055), 1, sym_identifier, - STATE(492), 1, + STATE(512), 1, sym_class_body, - STATE(916), 1, + STATE(1016), 1, sym_class_heritage, - [29434] = 3, + [31191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2427), 2, + ACTIONS(2057), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2429), 3, + ACTIONS(2059), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29447] = 3, + [31204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2431), 2, + ACTIONS(2061), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2433), 3, + ACTIONS(2063), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29460] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2379), 1, - anon_sym_extends, - ACTIONS(2407), 1, - anon_sym_LBRACE, - ACTIONS(2435), 1, - sym_identifier, - STATE(450), 1, - sym_class_body, - STATE(981), 1, - sym_class_heritage, - [29479] = 3, + [31217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2437), 2, + ACTIONS(2065), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(2439), 3, + ACTIONS(2067), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [29492] = 6, + [31230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2379), 1, + ACTIONS(2003), 1, anon_sym_extends, - ACTIONS(2441), 1, + ACTIONS(2029), 1, + anon_sym_LBRACE, + ACTIONS(2069), 1, sym_identifier, - STATE(492), 1, + STATE(520), 1, sym_class_body, - STATE(916), 1, + STATE(1051), 1, sym_class_heritage, - [29511] = 6, + [31249] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2443), 1, - sym_identifier, - ACTIONS(2445), 1, - anon_sym_GT, - ACTIONS(2447), 1, - sym_jsx_identifier, - STATE(649), 1, - sym_nested_identifier, - STATE(665), 1, - sym_jsx_namespace_name, - [29530] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2365), 1, - sym_identifier, - ACTIONS(2369), 1, - sym_jsx_identifier, - ACTIONS(2449), 1, - anon_sym_SLASH, - STATE(653), 1, - sym_nested_identifier, - STATE(672), 1, - sym_jsx_namespace_name, - [29549] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2365), 1, - sym_identifier, - ACTIONS(2369), 1, - sym_jsx_identifier, - ACTIONS(2451), 1, - anon_sym_SLASH, - STATE(653), 1, - sym_nested_identifier, - STATE(672), 1, - sym_jsx_namespace_name, - [29568] = 6, - ACTIONS(3), 1, + ACTIONS(2001), 1, + anon_sym_LBRACE, + ACTIONS(2071), 1, + anon_sym_extends, + STATE(384), 1, + sym_class_body, + STATE(958), 1, + sym_class_heritage, + [31265] = 5, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2365), 1, - sym_identifier, - ACTIONS(2369), 1, - sym_jsx_identifier, - ACTIONS(2453), 1, - anon_sym_SLASH, - STATE(653), 1, - sym_nested_identifier, - STATE(672), 1, - sym_jsx_namespace_name, - [29587] = 6, + ACTIONS(2073), 1, + anon_sym_SQUOTE, + ACTIONS(2075), 1, + aux_sym_string_token2, + ACTIONS(2078), 1, + sym_escape_sequence, + STATE(771), 1, + aux_sym_string_repeat2, + [31281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2365), 1, - sym_identifier, - ACTIONS(2369), 1, - sym_jsx_identifier, - ACTIONS(2455), 1, - anon_sym_SLASH, - STATE(653), 1, - sym_nested_identifier, - STATE(672), 1, - sym_jsx_namespace_name, - [29606] = 6, + ACTIONS(2081), 1, + anon_sym_COMMA, + STATE(819), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(2083), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [31295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(2457), 1, - anon_sym_export, - ACTIONS(2459), 1, + ACTIONS(2085), 1, anon_sym_class, - STATE(611), 1, + STATE(630), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, + STATE(651), 1, sym_decorator, - [29625] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2365), 1, - sym_identifier, - ACTIONS(2369), 1, - sym_jsx_identifier, - STATE(653), 1, - sym_nested_identifier, - STATE(672), 1, - sym_jsx_namespace_name, - [29641] = 5, + [31311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - ACTIONS(2461), 1, + ACTIONS(2071), 1, anon_sym_extends, - STATE(473), 1, + STATE(482), 1, sym_class_body, - STATE(892), 1, + STATE(989), 1, sym_class_heritage, - [29657] = 5, + [31327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, - sym_identifier, - ACTIONS(2465), 1, + ACTIONS(2081), 1, anon_sym_COMMA, - ACTIONS(2467), 1, - anon_sym_RBRACE, - STATE(855), 1, - sym__import_export_specifier, - [29673] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2469), 1, - sym_identifier, - ACTIONS(2471), 1, - sym_jsx_identifier, - STATE(1019), 1, - sym_nested_identifier, - STATE(1063), 1, - sym_jsx_namespace_name, - [29689] = 4, + STATE(819), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(2087), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [31341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2089), 1, anon_sym_from, - STATE(963), 1, + STATE(1038), 1, sym__from_clause, - ACTIONS(2475), 2, + ACTIONS(2091), 2, sym__automatic_semicolon, anon_sym_SEMI, - [29703] = 5, + [31355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2477), 1, - anon_sym_class, - STATE(611), 1, - aux_sym_export_statement_repeat1, - STATE(635), 1, - sym_decorator, - [29719] = 5, + ACTIONS(1417), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [31365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(964), 1, anon_sym_LPAREN, - ACTIONS(2479), 1, + ACTIONS(2093), 1, sym_identifier, - ACTIONS(2481), 1, - anon_sym_STAR, - STATE(969), 1, - sym_formal_parameters, - [29735] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2483), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [29745] = 5, - ACTIONS(2229), 1, + ACTIONS(2095), 1, + anon_sym_LBRACK, + STATE(431), 1, + sym_arguments, + [31381] = 5, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2485), 1, + ACTIONS(2097), 1, anon_sym_DQUOTE, - ACTIONS(2487), 1, + ACTIONS(2099), 1, aux_sym_string_token1, - ACTIONS(2489), 1, + ACTIONS(2101), 1, sym_escape_sequence, - STATE(774), 1, + STATE(786), 1, aux_sym_string_repeat1, - [29761] = 5, - ACTIONS(2229), 1, + [31397] = 5, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2491), 1, + ACTIONS(2097), 1, anon_sym_SQUOTE, - ACTIONS(2493), 1, + ACTIONS(2103), 1, aux_sym_string_token2, - ACTIONS(2495), 1, + ACTIONS(2105), 1, sym_escape_sequence, - STATE(773), 1, + STATE(771), 1, aux_sym_string_repeat2, - [29777] = 5, - ACTIONS(2229), 1, + [31413] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2487), 1, - aux_sym_string_token1, - ACTIONS(2489), 1, - sym_escape_sequence, - ACTIONS(2491), 1, - anon_sym_DQUOTE, - STATE(774), 1, - aux_sym_string_repeat1, - [29793] = 5, - ACTIONS(2229), 1, + ACTIONS(1666), 4, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_EQ, + [31423] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2485), 1, - anon_sym_SQUOTE, - ACTIONS(2493), 1, - aux_sym_string_token2, - ACTIONS(2495), 1, - sym_escape_sequence, - STATE(773), 1, - aux_sym_string_repeat2, - [29809] = 5, + ACTIONS(964), 1, + anon_sym_LPAREN, + ACTIONS(2107), 1, + sym_identifier, + ACTIONS(2109), 1, + anon_sym_LBRACK, + STATE(438), 1, + sym_arguments, + [31439] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2111), 1, + sym_identifier, + ACTIONS(2113), 1, + sym_jsx_identifier, + STATE(1019), 1, + sym_nested_identifier, + STATE(1106), 1, + sym_jsx_namespace_name, + [31455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 1, anon_sym_LBRACE, - ACTIONS(2461), 1, + ACTIONS(2071), 1, anon_sym_extends, - STATE(195), 1, + STATE(222), 1, sym_class_body, - STATE(982), 1, + STATE(1005), 1, sym_class_heritage, - [29825] = 5, - ACTIONS(2229), 1, + [31471] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(2497), 1, - anon_sym_SQUOTE, - ACTIONS(2499), 1, - aux_sym_string_token2, - ACTIONS(2501), 1, - sym_escape_sequence, - STATE(759), 1, - aux_sym_string_repeat2, - [29841] = 5, - ACTIONS(2229), 1, + ACTIONS(1915), 1, + anon_sym_LPAREN, + ACTIONS(2115), 1, + sym_identifier, + ACTIONS(2117), 1, + anon_sym_STAR, + STATE(992), 1, + sym_formal_parameters, + [31487] = 5, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2497), 1, + ACTIONS(2119), 1, anon_sym_DQUOTE, - ACTIONS(2503), 1, + ACTIONS(2121), 1, aux_sym_string_token1, - ACTIONS(2505), 1, + ACTIONS(2124), 1, sym_escape_sequence, - STATE(756), 1, + STATE(786), 1, aux_sym_string_repeat1, - [29857] = 5, + [31503] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2040), 1, - anon_sym_EQ, - ACTIONS(2507), 1, + ACTIONS(2127), 1, + sym_identifier, + ACTIONS(2129), 1, anon_sym_COMMA, - ACTIONS(2509), 1, - anon_sym_RPAREN, - STATE(817), 1, - aux_sym_formal_parameters_repeat1, - [29873] = 5, + ACTIONS(2131), 1, + anon_sym_RBRACE, + STATE(852), 1, + sym__import_export_specifier, + [31519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - ACTIONS(2461), 1, + ACTIONS(2071), 1, anon_sym_extends, - STATE(501), 1, + STATE(524), 1, sym_class_body, - STATE(986), 1, + STATE(1009), 1, sym_class_heritage, - [29889] = 5, + [31535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2040), 1, - anon_sym_EQ, - ACTIONS(2511), 1, - anon_sym_COMMA, - ACTIONS(2513), 1, - anon_sym_RPAREN, - STATE(813), 1, - aux_sym_formal_parameters_repeat1, - [29905] = 5, + ACTIONS(1108), 1, + anon_sym_LBRACE, + ACTIONS(2133), 1, + anon_sym_STAR, + STATE(1135), 2, + sym_namespace_import, + sym_named_imports, + [31549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2461), 1, - anon_sym_extends, - STATE(46), 1, - sym_class_body, - STATE(1031), 1, - sym_class_heritage, - [29921] = 5, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(2135), 1, + anon_sym_class, + STATE(630), 1, + aux_sym_export_statement_repeat1, + STATE(651), 1, + sym_decorator, + [31565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - ACTIONS(2461), 1, + ACTIONS(2071), 1, anon_sym_extends, - STATE(462), 1, + STATE(471), 1, sym_class_body, - STATE(999), 1, + STATE(1026), 1, sym_class_heritage, - [29937] = 5, + [31581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - ACTIONS(2461), 1, + ACTIONS(2071), 1, anon_sym_extends, - STATE(193), 1, + STATE(216), 1, sym_class_body, - STATE(1000), 1, + STATE(1027), 1, sym_class_heritage, - [29953] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2038), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [29963] = 5, + [31597] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 1, - anon_sym_extends, - ACTIONS(2515), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - STATE(195), 1, + ACTIONS(2071), 1, + anon_sym_extends, + STATE(58), 1, sym_class_body, - STATE(900), 1, + STATE(1028), 1, sym_class_heritage, - [29979] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2517), 1, - anon_sym_COMMA, - ACTIONS(2519), 1, - anon_sym_RPAREN, - ACTIONS(2521), 1, - anon_sym_EQ, - STATE(824), 1, - aux_sym_formal_parameters_repeat1, - [29995] = 5, + [31613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - ACTIONS(2461), 1, + ACTIONS(2071), 1, anon_sym_extends, - STATE(508), 1, + STATE(523), 1, sym_class_body, - STATE(1004), 1, + STATE(1031), 1, sym_class_heritage, - [30011] = 5, - ACTIONS(2229), 1, + [31629] = 5, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(2137), 1, + anon_sym_DQUOTE, + ACTIONS(2139), 1, + aux_sym_string_token1, + ACTIONS(2141), 1, + sym_escape_sequence, + STATE(797), 1, + aux_sym_string_repeat1, + [31645] = 5, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2523), 1, + ACTIONS(2137), 1, anon_sym_SQUOTE, - ACTIONS(2525), 1, + ACTIONS(2143), 1, aux_sym_string_token2, - ACTIONS(2528), 1, + ACTIONS(2145), 1, sym_escape_sequence, - STATE(773), 1, + STATE(798), 1, aux_sym_string_repeat2, - [30027] = 5, - ACTIONS(2229), 1, + [31661] = 5, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2531), 1, - anon_sym_DQUOTE, - ACTIONS(2533), 1, + ACTIONS(2099), 1, aux_sym_string_token1, - ACTIONS(2536), 1, + ACTIONS(2101), 1, sym_escape_sequence, - STATE(774), 1, - aux_sym_string_repeat1, - [30043] = 5, - ACTIONS(2229), 1, - sym_comment, - ACTIONS(2539), 1, + ACTIONS(2147), 1, anon_sym_DQUOTE, - ACTIONS(2541), 1, - aux_sym_string_token1, - ACTIONS(2543), 1, - sym_escape_sequence, - STATE(779), 1, + STATE(786), 1, aux_sym_string_repeat1, - [30059] = 5, - ACTIONS(2229), 1, + [31677] = 5, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2539), 1, - anon_sym_SQUOTE, - ACTIONS(2545), 1, + ACTIONS(2103), 1, aux_sym_string_token2, - ACTIONS(2547), 1, + ACTIONS(2105), 1, sym_escape_sequence, - STATE(782), 1, + ACTIONS(2147), 1, + anon_sym_SQUOTE, + STATE(771), 1, aux_sym_string_repeat2, - [30075] = 5, + [31693] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2071), 1, + anon_sym_extends, + ACTIONS(2149), 1, + anon_sym_LBRACE, + STATE(216), 1, + sym_class_body, + STATE(919), 1, + sym_class_heritage, + [31709] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, sym_identifier, - ACTIONS(2549), 1, + ACTIONS(2151), 1, anon_sym_COMMA, - ACTIONS(2551), 1, + ACTIONS(2153), 1, anon_sym_RBRACE, - STATE(818), 1, + STATE(842), 1, sym__import_export_specifier, - [30091] = 5, - ACTIONS(2229), 1, + [31725] = 5, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(2155), 1, anon_sym_SQUOTE, - ACTIONS(2555), 1, + ACTIONS(2157), 1, aux_sym_string_token2, - ACTIONS(2557), 1, + ACTIONS(2159), 1, sym_escape_sequence, - STATE(757), 1, + STATE(820), 1, aux_sym_string_repeat2, - [30107] = 5, - ACTIONS(2229), 1, - sym_comment, - ACTIONS(2487), 1, - aux_sym_string_token1, - ACTIONS(2489), 1, - sym_escape_sequence, - ACTIONS(2559), 1, - anon_sym_DQUOTE, - STATE(774), 1, - aux_sym_string_repeat1, - [30123] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - ACTIONS(2561), 1, - sym_identifier, - ACTIONS(2563), 1, - anon_sym_STAR, - STATE(968), 1, - sym_formal_parameters, - [30139] = 5, + [31741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2461), 1, + ACTIONS(2071), 1, anon_sym_extends, - ACTIONS(2515), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(193), 1, + STATE(222), 1, sym_class_body, - STATE(917), 1, + STATE(920), 1, sym_class_heritage, - [30155] = 5, - ACTIONS(2229), 1, - sym_comment, - ACTIONS(2493), 1, - aux_sym_string_token2, - ACTIONS(2495), 1, - sym_escape_sequence, - ACTIONS(2559), 1, - anon_sym_SQUOTE, - STATE(773), 1, - aux_sym_string_repeat2, - [30171] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2565), 1, - anon_sym_COMMA, - STATE(796), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2567), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [30185] = 5, - ACTIONS(2229), 1, + [31757] = 5, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2553), 1, + ACTIONS(2155), 1, anon_sym_DQUOTE, - ACTIONS(2569), 1, + ACTIONS(2161), 1, aux_sym_string_token1, - ACTIONS(2571), 1, + ACTIONS(2163), 1, sym_escape_sequence, - STATE(758), 1, + STATE(823), 1, aux_sym_string_repeat1, - [30201] = 4, + [31773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(1668), 1, + anon_sym_EQ, + ACTIONS(2165), 1, anon_sym_COMMA, - STATE(796), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2573), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [30215] = 2, + ACTIONS(2167), 1, + anon_sym_RPAREN, + STATE(881), 1, + aux_sym_formal_parameters_repeat1, + [31789] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 4, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1668), 1, anon_sym_EQ, - [30225] = 5, + ACTIONS(2169), 1, + anon_sym_COMMA, + ACTIONS(2171), 1, + anon_sym_RPAREN, + STATE(895), 1, + aux_sym_formal_parameters_repeat1, + [31805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - ACTIONS(2575), 1, - sym_identifier, - ACTIONS(2577), 1, - anon_sym_STAR, - STATE(911), 1, - sym_formal_parameters, - [30241] = 5, + ACTIONS(1220), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [31815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - ACTIONS(2579), 1, + ACTIONS(2173), 1, sym_identifier, - ACTIONS(2581), 1, + ACTIONS(2175), 1, anon_sym_STAR, - STATE(911), 1, + STATE(999), 1, sym_formal_parameters, - [30257] = 5, + [31831] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, - anon_sym_LBRACE, - ACTIONS(2461), 1, - anon_sym_extends, - STATE(370), 1, - sym_class_body, - STATE(1040), 1, - sym_class_heritage, - [30273] = 4, + ACTIONS(2177), 1, + anon_sym_COMMA, + ACTIONS(2179), 1, + anon_sym_RPAREN, + ACTIONS(2181), 1, + anon_sym_EQ, + STATE(897), 1, + aux_sym_formal_parameters_repeat1, + [31847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, + ACTIONS(2183), 1, anon_sym_COMMA, - STATE(785), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2583), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [30287] = 5, + ACTIONS(2185), 1, + anon_sym_RPAREN, + ACTIONS(2187), 1, + anon_sym_EQ, + STATE(899), 1, + aux_sym_formal_parameters_repeat1, + [31863] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + ACTIONS(2189), 1, + sym_identifier, + ACTIONS(2191), 1, + anon_sym_STAR, + STATE(999), 1, + sym_formal_parameters, + [31879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, + ACTIONS(85), 1, anon_sym_AT, - ACTIONS(2585), 1, + ACTIONS(2193), 1, anon_sym_class, - STATE(611), 1, + STATE(630), 1, aux_sym_export_statement_repeat1, - STATE(635), 1, + STATE(651), 1, sym_decorator, - [30303] = 5, + [31895] = 5, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(2195), 1, + anon_sym_SQUOTE, + ACTIONS(2197), 1, + aux_sym_string_token2, + ACTIONS(2199), 1, + sym_escape_sequence, + STATE(780), 1, + aux_sym_string_repeat2, + [31911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, - anon_sym_LBRACE, - ACTIONS(2461), 1, - anon_sym_extends, - STATE(49), 1, - sym_class_body, - STATE(907), 1, - sym_class_heritage, - [30319] = 5, + ACTIONS(1915), 1, + anon_sym_LPAREN, + ACTIONS(2201), 1, + sym_identifier, + ACTIONS(2203), 1, + anon_sym_STAR, + STATE(937), 1, + sym_formal_parameters, + [31927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2205), 1, + sym_identifier, + ACTIONS(2207), 1, + sym_jsx_identifier, + STATE(1024), 1, + sym_nested_identifier, + STATE(1107), 1, + sym_jsx_namespace_name, + [31943] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, anon_sym_LPAREN, - ACTIONS(2587), 1, + ACTIONS(2209), 1, sym_identifier, - ACTIONS(2589), 1, + ACTIONS(2211), 1, anon_sym_STAR, - STATE(968), 1, + STATE(966), 1, sym_formal_parameters, - [30335] = 4, + [31959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2565), 1, - anon_sym_COMMA, - STATE(783), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(2591), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [30349] = 5, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(2213), 1, + sym_identifier, + ACTIONS(2215), 1, + anon_sym_LBRACK, + STATE(505), 1, + sym_arguments, + [31975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2593), 1, + ACTIONS(2217), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [31985] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2219), 1, sym_identifier, - ACTIONS(2595), 1, + ACTIONS(2221), 1, sym_jsx_identifier, - STATE(997), 1, + STATE(1057), 1, sym_nested_identifier, - STATE(1075), 1, + STATE(1124), 1, sym_jsx_namespace_name, - [30365] = 4, + [32001] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2597), 1, + ACTIONS(2223), 1, anon_sym_COMMA, - STATE(796), 1, + STATE(819), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(2600), 2, + ACTIONS(2226), 2, sym__automatic_semicolon, anon_sym_SEMI, - [30379] = 5, + [32015] = 5, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(2103), 1, + aux_sym_string_token2, + ACTIONS(2105), 1, + sym_escape_sequence, + ACTIONS(2228), 1, + anon_sym_SQUOTE, + STATE(771), 1, + aux_sym_string_repeat2, + [32031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, + ACTIONS(2230), 1, sym_identifier, - ACTIONS(2604), 1, + ACTIONS(2232), 1, sym_jsx_identifier, - STATE(1023), 1, + STATE(1069), 1, sym_nested_identifier, - STATE(1050), 1, + STATE(1076), 1, sym_jsx_namespace_name, - [30395] = 5, + [32047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, - anon_sym_LBRACE, - ACTIONS(2461), 1, - anon_sym_extends, - STATE(427), 1, - sym_class_body, - STATE(920), 1, - sym_class_heritage, - [30411] = 5, + ACTIONS(2081), 1, + anon_sym_COMMA, + STATE(772), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(2234), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [32061] = 5, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(2099), 1, + aux_sym_string_token1, + ACTIONS(2101), 1, + sym_escape_sequence, + ACTIONS(2228), 1, + anon_sym_DQUOTE, + STATE(786), 1, + aux_sym_string_repeat1, + [32077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2606), 1, + ACTIONS(1915), 1, + anon_sym_LPAREN, + ACTIONS(2236), 1, sym_identifier, - ACTIONS(2608), 1, - sym_jsx_identifier, - STATE(1026), 1, - sym_nested_identifier, - STATE(1062), 1, - sym_jsx_namespace_name, - [30427] = 5, + ACTIONS(2238), 1, + anon_sym_STAR, + STATE(999), 1, + sym_formal_parameters, + [32093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2610), 1, + ACTIONS(2240), 1, anon_sym_COMMA, - ACTIONS(2612), 1, + STATE(825), 1, + aux_sym_array_repeat1, + ACTIONS(1455), 2, anon_sym_RPAREN, - ACTIONS(2614), 1, - anon_sym_EQ, - STATE(888), 1, - aux_sym_formal_parameters_repeat1, - [30443] = 5, + anon_sym_RBRACK, + [32107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(85), 1, + anon_sym_AT, + ACTIONS(2243), 1, + anon_sym_class, + STATE(630), 1, + aux_sym_export_statement_repeat1, + STATE(651), 1, + sym_decorator, + [32123] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1027), 1, anon_sym_LPAREN, - ACTIONS(2616), 1, + ACTIONS(2245), 1, sym_identifier, - ACTIONS(2618), 1, - anon_sym_STAR, - STATE(948), 1, - sym_formal_parameters, - [30459] = 5, + ACTIONS(2247), 1, + anon_sym_LBRACK, + STATE(515), 1, + sym_arguments, + [32139] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - ACTIONS(2620), 1, + ACTIONS(2249), 1, sym_identifier, - ACTIONS(2622), 1, + ACTIONS(2251), 1, anon_sym_STAR, - STATE(911), 1, + STATE(937), 1, sym_formal_parameters, - [30475] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2624), 1, - anon_sym_class, - STATE(611), 1, - aux_sym_export_statement_repeat1, - STATE(635), 1, - sym_decorator, - [30491] = 5, + [32155] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - ACTIONS(2626), 1, + ACTIONS(2253), 1, sym_identifier, - ACTIONS(2628), 1, + ACTIONS(2255), 1, anon_sym_STAR, - STATE(968), 1, + STATE(937), 1, sym_formal_parameters, - [30507] = 4, + [32171] = 5, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(2195), 1, + anon_sym_DQUOTE, + ACTIONS(2257), 1, + aux_sym_string_token1, + ACTIONS(2259), 1, + sym_escape_sequence, + STATE(779), 1, + aux_sym_string_repeat1, + [32187] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1516), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - ACTIONS(2630), 1, - anon_sym_STAR, - STATE(1048), 2, - sym_namespace_import, - sym_named_imports, - [30521] = 4, + ACTIONS(2071), 1, + anon_sym_extends, + STATE(50), 1, + sym_class_body, + STATE(929), 1, + sym_class_heritage, + [32203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2632), 1, - anon_sym_COMMA, - STATE(806), 1, - aux_sym_array_repeat1, - ACTIONS(1822), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [30535] = 5, + ACTIONS(2001), 1, + anon_sym_LBRACE, + ACTIONS(2071), 1, + anon_sym_extends, + STATE(426), 1, + sym_class_body, + STATE(995), 1, + sym_class_heritage, + [32219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(87), 1, - anon_sym_AT, - ACTIONS(2635), 1, - anon_sym_class, - STATE(611), 1, - aux_sym_export_statement_repeat1, - STATE(635), 1, - sym_decorator, - [30551] = 2, + ACTIONS(2081), 1, + anon_sym_COMMA, + STATE(775), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(2261), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [32233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1640), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [30561] = 4, + ACTIONS(2263), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [32242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(95), 1, anon_sym_COMMA, - ACTIONS(2637), 1, + ACTIONS(2265), 1, anon_sym_RBRACE, - STATE(828), 1, + STATE(892), 1, aux_sym_object_repeat1, - [30574] = 4, + [32255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(2187), 1, + anon_sym_EQ, + ACTIONS(2267), 2, anon_sym_COMMA, - ACTIONS(1824), 1, - anon_sym_RBRACK, - STATE(865), 1, - aux_sym_array_repeat1, - [30587] = 4, + anon_sym_RPAREN, + [32266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - ACTIONS(2639), 1, + ACTIONS(2269), 1, sym_identifier, - STATE(991), 1, + STATE(1014), 1, sym_formal_parameters, - [30600] = 3, + [32279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 1, - anon_sym_EQ, - ACTIONS(2641), 2, + ACTIONS(95), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [30611] = 4, + ACTIONS(2271), 1, + anon_sym_RBRACE, + STATE(840), 1, + aux_sym_object_repeat1, + [32292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 1, - anon_sym_RPAREN, - ACTIONS(2643), 1, + ACTIONS(2273), 1, anon_sym_COMMA, - STATE(826), 1, + ACTIONS(2276), 1, + anon_sym_RPAREN, + STATE(839), 1, aux_sym_formal_parameters_repeat1, - [30624] = 3, + [32305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 1, - anon_sym_EQ, - ACTIONS(2645), 2, + ACTIONS(2278), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [30635] = 3, + ACTIONS(2281), 1, + anon_sym_RBRACE, + STATE(840), 1, + aux_sym_object_repeat1, + [32318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2040), 1, - anon_sym_EQ, - ACTIONS(2647), 2, + ACTIONS(1915), 1, + anon_sym_LPAREN, + ACTIONS(2283), 1, + sym_identifier, + STATE(969), 1, + sym_formal_parameters, + [32331] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2285), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [30646] = 3, + ACTIONS(2287), 1, + anon_sym_RBRACE, + STATE(849), 1, + aux_sym_named_imports_repeat1, + [32344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2040), 1, + ACTIONS(1668), 1, anon_sym_EQ, - ACTIONS(2649), 2, + ACTIONS(2276), 2, anon_sym_COMMA, anon_sym_RPAREN, - [30657] = 4, + [32355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_RPAREN, - ACTIONS(2651), 1, - anon_sym_COMMA, - STATE(826), 1, - aux_sym_formal_parameters_repeat1, - [30670] = 4, + ACTIONS(1915), 1, + anon_sym_LPAREN, + ACTIONS(2289), 1, + sym_identifier, + STATE(943), 1, + sym_formal_parameters, + [32368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(1668), 1, + anon_sym_EQ, + ACTIONS(2291), 2, anon_sym_COMMA, - ACTIONS(2655), 1, - anon_sym_RBRACE, - STATE(852), 1, - aux_sym_named_imports_repeat1, - [30683] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [32379] = 2, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - ACTIONS(2657), 1, - sym_identifier, - STATE(927), 1, - sym_formal_parameters, - [30696] = 4, + ACTIONS(2293), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [32388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1186), 1, + anon_sym_EQ, + ACTIONS(1417), 2, anon_sym_LPAREN, - ACTIONS(2659), 1, - sym_identifier, - STATE(1018), 1, - sym_formal_parameters, - [30709] = 4, + anon_sym_COLON, + [32399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2661), 1, + ACTIONS(2226), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2664), 1, - anon_sym_RBRACE, - STATE(821), 1, - aux_sym_object_repeat1, - [30722] = 4, + anon_sym_SEMI, + [32408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2666), 1, + ACTIONS(2295), 1, anon_sym_COMMA, - ACTIONS(2669), 1, + ACTIONS(2297), 1, anon_sym_RBRACE, - STATE(822), 1, - aux_sym_export_clause_repeat1, - [30735] = 4, + STATE(872), 1, + aux_sym_named_imports_repeat1, + [32421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2127), 1, sym_identifier, - ACTIONS(2671), 1, + ACTIONS(2297), 1, anon_sym_RBRACE, - STATE(945), 1, + STATE(1063), 1, sym__import_export_specifier, - [30748] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 1, - anon_sym_RPAREN, - ACTIONS(2673), 1, - anon_sym_COMMA, - STATE(826), 1, - aux_sym_formal_parameters_repeat1, - [30761] = 4, + [32434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(546), 1, anon_sym_COMMA, - ACTIONS(2675), 1, - anon_sym_RBRACK, - STATE(806), 1, - aux_sym_array_repeat1, - [30774] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2647), 1, + ACTIONS(2299), 1, anon_sym_RPAREN, - ACTIONS(2677), 1, - anon_sym_COMMA, - STATE(826), 1, - aux_sym_formal_parameters_repeat1, - [30787] = 4, + STATE(825), 1, + aux_sym_array_repeat1, + [32447] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2301), 1, - anon_sym_LPAREN, - ACTIONS(2680), 1, - sym_identifier, - STATE(927), 1, - sym_formal_parameters, - [30800] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(97), 1, anon_sym_COMMA, - ACTIONS(2682), 1, + ACTIONS(2303), 1, anon_sym_RBRACE, - STATE(821), 1, - aux_sym_object_repeat1, - [30813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2511), 1, - anon_sym_COMMA, - ACTIONS(2513), 1, - anon_sym_RPAREN, - STATE(813), 1, - aux_sym_formal_parameters_repeat1, - [30826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - ACTIONS(2684), 1, - sym_identifier, - STATE(927), 1, - sym_formal_parameters, - [30839] = 4, + STATE(879), 1, + aux_sym_export_clause_repeat1, + [32460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(2307), 1, + anon_sym_as, + ACTIONS(2305), 2, anon_sym_COMMA, - ACTIONS(1820), 1, - anon_sym_RBRACK, - STATE(825), 1, - aux_sym_array_repeat1, - [30852] = 2, + anon_sym_RBRACE, + [32471] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2686), 3, + ACTIONS(2309), 3, sym__automatic_semicolon, anon_sym_from, anon_sym_SEMI, - [30861] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - ACTIONS(2688), 1, - sym_identifier, - STATE(1018), 1, - sym_formal_parameters, - [30874] = 2, - ACTIONS(2229), 1, + [32480] = 2, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2690), 3, + ACTIONS(2065), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [30883] = 3, + [32489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1592), 1, - anon_sym_EQ, - ACTIONS(1831), 2, - anon_sym_LPAREN, + ACTIONS(1799), 1, anon_sym_COLON, - [30894] = 4, + ACTIONS(1807), 1, + anon_sym_DOT, + ACTIONS(2311), 1, + anon_sym_GT, + [32502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + ACTIONS(2313), 1, + sym_identifier, + STATE(969), 1, + sym_formal_parameters, + [32515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2692), 1, + ACTIONS(2315), 1, anon_sym_LPAREN, - ACTIONS(2694), 1, + ACTIONS(2317), 1, anon_sym_await, - STATE(34), 1, + STATE(29), 1, sym__for_header, - [30907] = 4, + [32528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, - anon_sym_COMMA, - ACTIONS(1820), 1, - anon_sym_RBRACK, - STATE(806), 1, - aux_sym_array_repeat1, - [30920] = 4, + ACTIONS(1915), 1, + anon_sym_LPAREN, + ACTIONS(2319), 1, + sym_identifier, + STATE(943), 1, + sym_formal_parameters, + [32541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + ACTIONS(2321), 1, + sym_identifier, + STATE(943), 1, + sym_formal_parameters, + [32554] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(759), 1, + anon_sym_while, + ACTIONS(2323), 1, + anon_sym_else, + STATE(254), 1, + sym_else_clause, + [32567] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(95), 1, anon_sym_COMMA, - ACTIONS(2696), 1, + ACTIONS(2325), 1, anon_sym_RBRACE, - STATE(821), 1, + STATE(840), 1, aux_sym_object_repeat1, - [30933] = 2, + [32580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2698), 3, + ACTIONS(2327), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [30942] = 3, + [32589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2700), 1, + ACTIONS(2329), 1, sym_identifier, - ACTIONS(2702), 2, + ACTIONS(2331), 2, sym__automatic_semicolon, anon_sym_SEMI, - [30953] = 2, + [32600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2704), 3, + ACTIONS(2333), 1, + sym_identifier, + ACTIONS(2335), 2, sym__automatic_semicolon, - anon_sym_from, anon_sym_SEMI, - [30962] = 3, + [32611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(75), 1, + anon_sym_DQUOTE, + ACTIONS(77), 1, + anon_sym_SQUOTE, + STATE(1037), 1, + sym_string, + [32624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2706), 1, + ACTIONS(2127), 1, sym_identifier, - ACTIONS(2708), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [30973] = 4, + ACTIONS(2337), 1, + anon_sym_RBRACE, + STATE(1041), 1, + sym__import_export_specifier, + [32637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_COMMA, + ACTIONS(2342), 1, + anon_sym_RBRACE, + STATE(868), 1, + aux_sym_export_clause_repeat1, + [32650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2710), 1, + ACTIONS(2344), 1, anon_sym_LPAREN, - ACTIONS(2712), 1, + ACTIONS(2346), 1, anon_sym_await, - STATE(32), 1, + STATE(26), 1, sym__for_header, - [30986] = 4, + [32663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(1799), 1, anon_sym_COLON, - ACTIONS(2205), 1, + ACTIONS(1807), 1, anon_sym_DOT, - ACTIONS(2714), 1, + ACTIONS(2348), 1, anon_sym_GT, - [30999] = 4, + [32676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2127), 1, sym_identifier, - ACTIONS(2716), 1, + ACTIONS(2350), 1, anon_sym_RBRACE, - STATE(1005), 1, + STATE(1063), 1, sym__import_export_specifier, - [31012] = 4, + [32689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, + ACTIONS(2352), 1, + anon_sym_COMMA, + ACTIONS(2355), 1, + anon_sym_RBRACE, + STATE(872), 1, + aux_sym_named_imports_repeat1, + [32702] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, anon_sym_COLON, - ACTIONS(2205), 1, + ACTIONS(1807), 1, anon_sym_DOT, - ACTIONS(2718), 1, + ACTIONS(2357), 1, anon_sym_GT, - [31025] = 3, + [32715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(543), 1, + ACTIONS(440), 1, sym__automatic_semicolon, - ACTIONS(539), 2, + ACTIONS(436), 2, anon_sym_else, anon_sym_while, - [31036] = 4, + [32726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - anon_sym_COLON, - ACTIONS(2205), 1, - anon_sym_DOT, - ACTIONS(2720), 1, - anon_sym_GT, - [31049] = 2, + ACTIONS(2359), 1, + sym_identifier, + STATE(628), 1, + sym_decorator_member_expression, + STATE(655), 1, + sym_decorator_call_expression, + [32739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2600), 3, + ACTIONS(2361), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [31058] = 2, - ACTIONS(2229), 1, + [32748] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(2381), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [31067] = 4, + ACTIONS(2363), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [32757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - ACTIONS(2722), 1, - sym_identifier, - STATE(970), 1, - sym_formal_parameters, - [31080] = 4, + ACTIONS(2365), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [32766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, + ACTIONS(2367), 1, anon_sym_COMMA, - ACTIONS(2726), 1, + ACTIONS(2369), 1, anon_sym_RBRACE, - STATE(864), 1, - aux_sym_named_imports_repeat1, - [31093] = 4, + STATE(868), 1, + aux_sym_export_clause_repeat1, + [32779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - anon_sym_COLON, - ACTIONS(2205), 1, - anon_sym_DOT, - ACTIONS(2728), 1, - anon_sym_GT, - [31106] = 4, + ACTIONS(546), 1, + anon_sym_COMMA, + ACTIONS(1421), 1, + anon_sym_RBRACK, + STATE(825), 1, + aux_sym_array_repeat1, + [32792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, - anon_sym_COMMA, - ACTIONS(2730), 1, + ACTIONS(1789), 1, anon_sym_RPAREN, - STATE(806), 1, - aux_sym_array_repeat1, - [31119] = 4, + ACTIONS(2371), 1, + anon_sym_COMMA, + STATE(839), 1, + aux_sym_formal_parameters_repeat1, + [32805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2732), 1, + ACTIONS(546), 1, anon_sym_COMMA, - ACTIONS(2734), 1, - anon_sym_RBRACE, - STATE(881), 1, - aux_sym_export_clause_repeat1, - [31132] = 4, + ACTIONS(1421), 1, + anon_sym_RBRACK, + STATE(910), 1, + aux_sym_array_repeat1, + [32818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, + ACTIONS(2127), 1, sym_identifier, - ACTIONS(2726), 1, + ACTIONS(2369), 1, anon_sym_RBRACE, - STATE(1005), 1, + STATE(1041), 1, sym__import_export_specifier, - [31145] = 3, + [32831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2738), 1, - anon_sym_as, - ACTIONS(2736), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [31156] = 2, + ACTIONS(1915), 1, + anon_sym_LPAREN, + ACTIONS(2373), 1, + sym_identifier, + STATE(993), 1, + sym_formal_parameters, + [32844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [31165] = 2, + ACTIONS(1799), 1, + anon_sym_COLON, + ACTIONS(1807), 1, + anon_sym_DOT, + ACTIONS(2375), 1, + anon_sym_GT, + [32857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1822), 3, + ACTIONS(546), 1, anon_sym_COMMA, + ACTIONS(2377), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [31174] = 4, + STATE(825), 1, + aux_sym_array_repeat1, + [32870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2379), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [32879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(546), 1, anon_sym_COMMA, - ACTIONS(1837), 1, + ACTIONS(1453), 1, anon_sym_RPAREN, - STATE(871), 1, + STATE(825), 1, aux_sym_array_repeat1, - [31187] = 4, + [32892] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(546), 1, anon_sym_COMMA, - ACTIONS(1837), 1, + ACTIONS(1453), 1, anon_sym_RPAREN, - STATE(806), 1, + STATE(886), 1, aux_sym_array_repeat1, - [31200] = 4, + [32905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(546), 1, anon_sym_COMMA, - ACTIONS(1835), 1, - anon_sym_RPAREN, - STATE(806), 1, + ACTIONS(2381), 1, + anon_sym_RBRACK, + STATE(825), 1, aux_sym_array_repeat1, - [31213] = 4, + [32918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(2169), 1, anon_sym_COMMA, - ACTIONS(1835), 1, + ACTIONS(2171), 1, anon_sym_RPAREN, - STATE(854), 1, - aux_sym_array_repeat1, - [31226] = 4, + STATE(895), 1, + aux_sym_formal_parameters_repeat1, + [32931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2742), 1, + ACTIONS(95), 1, anon_sym_COMMA, - ACTIONS(2745), 1, + ACTIONS(2383), 1, anon_sym_RBRACE, - STATE(864), 1, - aux_sym_named_imports_repeat1, - [31239] = 4, + STATE(840), 1, + aux_sym_object_repeat1, + [32944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(95), 1, anon_sym_COMMA, - ACTIONS(2747), 1, - anon_sym_RBRACK, - STATE(806), 1, - aux_sym_array_repeat1, - [31252] = 4, + ACTIONS(2385), 1, + anon_sym_RBRACE, + STATE(840), 1, + aux_sym_object_repeat1, + [32957] = 2, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(2023), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [32966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_DQUOTE, - ACTIONS(77), 1, - anon_sym_SQUOTE, - STATE(912), 1, - sym_string, - [31265] = 2, + ACTIONS(1769), 1, + anon_sym_RPAREN, + ACTIONS(2387), 1, + anon_sym_COMMA, + STATE(839), 1, + aux_sym_formal_parameters_repeat1, + [32979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2749), 3, - sym__automatic_semicolon, + ACTIONS(546), 1, anon_sym_COMMA, - anon_sym_SEMI, - [31274] = 2, + ACTIONS(1433), 1, + anon_sym_RPAREN, + STATE(825), 1, + aux_sym_array_repeat1, + [32992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2751), 3, - sym__automatic_semicolon, + ACTIONS(1763), 1, + anon_sym_RPAREN, + ACTIONS(2389), 1, anon_sym_COMMA, - anon_sym_SEMI, - [31283] = 4, + STATE(839), 1, + aux_sym_formal_parameters_repeat1, + [33005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(546), 1, anon_sym_COMMA, - ACTIONS(2753), 1, - anon_sym_RBRACE, - STATE(821), 1, - aux_sym_object_repeat1, - [31296] = 4, + ACTIONS(1433), 1, + anon_sym_RPAREN, + STATE(851), 1, + aux_sym_array_repeat1, + [33018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(1787), 1, + anon_sym_RPAREN, + ACTIONS(2391), 1, anon_sym_COMMA, - ACTIONS(2755), 1, - anon_sym_RBRACE, - STATE(821), 1, - aux_sym_object_repeat1, - [31309] = 4, + STATE(839), 1, + aux_sym_formal_parameters_repeat1, + [33031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(2181), 1, + anon_sym_EQ, + ACTIONS(2393), 2, anon_sym_COMMA, - ACTIONS(2757), 1, anon_sym_RPAREN, - STATE(806), 1, - aux_sym_array_repeat1, - [31322] = 2, - ACTIONS(2229), 1, + [33042] = 2, + ACTIONS(1821), 1, sym_comment, - ACTIONS(1674), 3, + ACTIONS(1308), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [31331] = 4, + [33051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - ACTIONS(2761), 1, + ACTIONS(2397), 1, anon_sym_LPAREN, - STATE(196), 1, + STATE(219), 1, sym_statement_block, - [31344] = 2, - ACTIONS(2229), 1, + [33064] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(1718), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [31353] = 2, - ACTIONS(2229), 1, + ACTIONS(546), 1, + anon_sym_COMMA, + ACTIONS(1449), 1, + anon_sym_RBRACK, + STATE(890), 1, + aux_sym_array_repeat1, + [33077] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2763), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [31362] = 4, + ACTIONS(95), 1, + anon_sym_COMMA, + ACTIONS(2265), 1, + anon_sym_RBRACE, + STATE(840), 1, + aux_sym_object_repeat1, + [33090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - ACTIONS(2765), 1, - sym_identifier, - STATE(1018), 1, - sym_formal_parameters, - [31375] = 2, - ACTIONS(2229), 1, + ACTIONS(546), 1, + anon_sym_COMMA, + ACTIONS(1449), 1, + anon_sym_RBRACK, + STATE(825), 1, + aux_sym_array_repeat1, + [33103] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_COMMA, + ACTIONS(2399), 1, + anon_sym_RBRACE, + STATE(840), 1, + aux_sym_object_repeat1, + [33116] = 2, + ACTIONS(1821), 1, sym_comment, - ACTIONS(1784), 3, + ACTIONS(1360), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [31384] = 2, - ACTIONS(2229), 1, + [33125] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [33134] = 2, + ACTIONS(1821), 1, sym_comment, - ACTIONS(1764), 3, + ACTIONS(1374), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [31393] = 4, + [33143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(546), 1, anon_sym_COMMA, - ACTIONS(1824), 1, + ACTIONS(2401), 1, anon_sym_RBRACK, - STATE(806), 1, + STATE(825), 1, aux_sym_array_repeat1, - [31406] = 2, - ACTIONS(2229), 1, + [33156] = 2, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2427), 3, + ACTIONS(1366), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [31415] = 4, - ACTIONS(3), 1, + [33165] = 2, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2767), 1, - anon_sym_COMMA, - ACTIONS(2769), 1, - anon_sym_RBRACE, - STATE(822), 1, - aux_sym_export_clause_repeat1, - [31428] = 2, - ACTIONS(3), 1, + ACTIONS(1322), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [33174] = 2, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2771), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [31437] = 4, - ACTIONS(3), 1, + ACTIONS(1316), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [33183] = 2, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2463), 1, - sym_identifier, - ACTIONS(2769), 1, - anon_sym_RBRACE, - STATE(945), 1, - sym__import_export_specifier, - [31450] = 4, + ACTIONS(1312), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [33192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(2773), 1, - anon_sym_RBRACE, - STATE(869), 1, - aux_sym_object_repeat1, - [31463] = 4, + ACTIONS(1915), 1, + anon_sym_LPAREN, + ACTIONS(2403), 1, + sym_identifier, + STATE(969), 1, + sym_formal_parameters, + [33205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(97), 1, + ACTIONS(95), 1, anon_sym_COMMA, - ACTIONS(2637), 1, + ACTIONS(2399), 1, anon_sym_RBRACE, - STATE(821), 1, + STATE(838), 1, aux_sym_object_repeat1, - [31476] = 2, - ACTIONS(2229), 1, + [33218] = 2, + ACTIONS(1821), 1, sym_comment, - ACTIONS(1746), 3, + ACTIONS(2405), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [31485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2775), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [31494] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2147), 1, - anon_sym_RPAREN, - ACTIONS(2777), 1, - anon_sym_COMMA, - STATE(826), 1, - aux_sym_formal_parameters_repeat1, - [31507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(97), 1, - anon_sym_COMMA, - ACTIONS(2773), 1, - anon_sym_RBRACE, - STATE(821), 1, - aux_sym_object_repeat1, - [31520] = 4, + [33227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - ACTIONS(2779), 1, + ACTIONS(2407), 1, anon_sym_COLON, - STATE(946), 1, + STATE(934), 1, sym_formal_parameters, - [31533] = 3, + [33240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(463), 1, - sym_statement_block, - [31543] = 3, + STATE(204), 1, + sym_class_body, + [33250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2149), 1, anon_sym_LBRACE, - STATE(471), 1, + STATE(211), 1, sym_class_body, - [31553] = 3, + [33260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2409), 1, + anon_sym_LPAREN, + STATE(41), 1, + sym__for_header, + [33270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2411), 1, anon_sym_LBRACE, - STATE(613), 1, - sym_statement_block, - [31563] = 3, + STATE(240), 1, + sym_switch_body, + [33280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - STATE(233), 1, + STATE(236), 1, sym_statement_block, - [31573] = 2, + [33290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2413), 1, + sym_identifier, + ACTIONS(2415), 1, + anon_sym_STAR, + [33300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(946), 1, + sym_formal_parameters, + [33310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2417), 1, + sym_identifier, + ACTIONS(2419), 1, + anon_sym_STAR, + [33320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2213), 1, + sym_identifier, + ACTIONS(2215), 1, + anon_sym_LBRACK, + [33330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2783), 2, + ACTIONS(1759), 2, sym__automatic_semicolon, anon_sym_SEMI, - [31581] = 3, + [33338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - STATE(192), 1, - sym_statement_block, - [31591] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(903), 1, - sym_formal_parameters, - [31601] = 3, + STATE(54), 1, + sym_class_body, + [33348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(906), 1, + STATE(1007), 1, sym_formal_parameters, - [31611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2787), 1, - sym_identifier, - ACTIONS(2789), 1, - anon_sym_STAR, - [31621] = 3, + [33358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - STATE(191), 1, - sym_class_body, - [31631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2791), 1, - sym_identifier, - ACTIONS(2793), 1, - anon_sym_STAR, - [31641] = 3, + STATE(639), 1, + sym_statement_block, + [33368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(896), 1, + STATE(972), 1, sym_formal_parameters, - [31651] = 3, + [33378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2421), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [33386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - STATE(199), 1, + STATE(641), 1, sym_statement_block, - [31661] = 3, + [33396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2089), 1, anon_sym_from, - STATE(919), 1, + STATE(1050), 1, sym__from_clause, - [31671] = 3, + [33406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2795), 1, + ACTIONS(2423), 1, anon_sym_COMMA, - ACTIONS(2797), 1, + ACTIONS(2425), 1, anon_sym_from, - [31681] = 3, + [33416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(198), 1, + STATE(551), 1, sym_statement_block, - [31691] = 3, + [33426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - STATE(48), 1, - sym_class_body, - [31701] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(1016), 1, - sym_formal_parameters, - [31719] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(958), 1, - sym_formal_parameters, - [31729] = 3, + STATE(210), 1, + sym_statement_block, + [33436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - STATE(521), 1, + STATE(209), 1, sym_statement_block, - [31739] = 2, + [33446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2799), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31747] = 3, + ACTIONS(2395), 1, + anon_sym_LBRACE, + STATE(205), 1, + sym_statement_block, + [33456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(964), 1, + STATE(979), 1, sym_formal_parameters, - [31757] = 3, + [33466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, - sym_identifier, - STATE(1005), 1, - sym__import_export_specifier, - [31767] = 3, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(1003), 1, + sym_formal_parameters, + [33476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(612), 1, + STATE(559), 1, sym_statement_block, - [31777] = 3, + [33486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(555), 1, - sym_class_body, - [31787] = 3, + STATE(427), 1, + sym_statement_block, + [33496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2515), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(210), 1, - sym_class_body, - [31797] = 3, + STATE(56), 1, + sym_statement_block, + [33506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(965), 1, - sym_formal_parameters, - [31807] = 2, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(381), 1, + sym_statement_block, + [33516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31815] = 3, + ACTIONS(2431), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [33524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2433), 2, anon_sym_LBRACE, - STATE(367), 1, - sym_class_body, - [31825] = 2, + anon_sym_EQ_GT, + [33532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2803), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31833] = 3, + ACTIONS(2435), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [33540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(975), 1, - sym_parenthesized_expression, - [31843] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2807), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [31851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2809), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [31859] = 3, + STATE(985), 1, + sym_formal_parameters, + [33550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, - anon_sym_LBRACE, - STATE(51), 1, - sym_statement_block, - [31869] = 3, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(990), 1, + sym_formal_parameters, + [33560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(925), 1, + STATE(991), 1, sym_formal_parameters, - [31879] = 3, + [33570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, - anon_sym_LBRACE, - STATE(515), 1, - sym_statement_block, - [31889] = 3, + ACTIONS(2127), 1, + sym_identifier, + STATE(1063), 1, + sym__import_export_specifier, + [33580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(976), 1, + STATE(1065), 1, sym_formal_parameters, - [31899] = 3, + [33590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2811), 1, - sym_identifier, - ACTIONS(2813), 1, - anon_sym_STAR, - [31909] = 2, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(931), 1, + sym_formal_parameters, + [33600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2815), 2, + ACTIONS(2437), 2, sym__automatic_semicolon, anon_sym_SEMI, - [31917] = 3, + [33608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - STATE(56), 1, + STATE(640), 1, sym_statement_block, - [31927] = 3, + [33618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2001), 1, anon_sym_LBRACE, - STATE(389), 1, - sym_statement_block, - [31937] = 3, + STATE(429), 1, + sym_class_body, + [33628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2001), 1, anon_sym_LBRACE, - STATE(54), 1, + STATE(424), 1, + sym_class_body, + [33638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2439), 1, + anon_sym_LBRACE, + STATE(218), 1, sym_statement_block, - [31947] = 3, + [33648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(1034), 1, + STATE(1017), 1, sym_formal_parameters, - [31957] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2819), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [31965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2473), 1, - anon_sym_from, - STATE(963), 1, - sym__from_clause, - [31975] = 2, + [33658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2821), 2, + ACTIONS(2441), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [31983] = 3, + [33666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, - anon_sym_LBRACE, - STATE(208), 1, - sym_statement_block, - [31993] = 3, + ACTIONS(2127), 1, + sym_identifier, + STATE(1041), 1, + sym__import_export_specifier, + [33676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, - anon_sym_LBRACE, - STATE(207), 1, - sym_statement_block, - [32003] = 2, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(1060), 1, + sym_formal_parameters, + [33686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1640), 2, + ACTIONS(2443), 2, sym__automatic_semicolon, anon_sym_SEMI, - [32011] = 2, + [33694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1859), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32019] = 3, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(432), 1, + sym_statement_block, + [33704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_class_body, - [32029] = 2, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(978), 1, + sym_formal_parameters, + [33714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2823), 2, + ACTIONS(2445), 2, sym__automatic_semicolon, anon_sym_SEMI, - [32037] = 3, + [33722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(205), 1, + STATE(553), 1, sym_statement_block, - [32047] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2825), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [32055] = 3, + [33732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, - anon_sym_LBRACE, - STATE(616), 1, - sym_statement_block, - [32065] = 3, + ACTIONS(1220), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [33740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2447), 1, anon_sym_LPAREN, - STATE(932), 1, - sym_formal_parameters, - [32075] = 3, + STATE(956), 1, + sym_parenthesized_expression, + [33750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(445), 1, + STATE(51), 1, sym_statement_block, - [32085] = 3, + [33760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2449), 2, anon_sym_LBRACE, - STATE(381), 1, - sym_statement_block, - [32095] = 2, + anon_sym_EQ_GT, + [33768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2827), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [32103] = 3, + ACTIONS(2451), 1, + sym_identifier, + ACTIONS(2453), 1, + anon_sym_STAR, + [33778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2829), 1, - anon_sym_LBRACE, - STATE(223), 1, - sym_switch_body, - [32113] = 3, + ACTIONS(2107), 1, + sym_identifier, + ACTIONS(2109), 1, + anon_sym_LBRACK, + [33788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(967), 1, - sym_formal_parameters, - [32123] = 2, + ACTIONS(2455), 1, + sym_identifier, + ACTIONS(2457), 1, + anon_sym_STAR, + [33798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2831), 2, + ACTIONS(2459), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [32131] = 2, + [33806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32139] = 3, + ACTIONS(2427), 1, + anon_sym_LBRACE, + STATE(47), 1, + sym_statement_block, + [33816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(382), 1, + STATE(49), 1, sym_statement_block, - [32149] = 2, + [33826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2833), 2, + ACTIONS(2461), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [32157] = 3, + [33834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym_parenthesized_expression, - [32167] = 3, + ACTIONS(2463), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [33842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym_statement_block, - [32177] = 3, + ACTIONS(2465), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [33850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2089), 1, + anon_sym_from, + STATE(1038), 1, + sym__from_clause, + [33860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2467), 1, anon_sym_LPAREN, - STATE(1008), 1, - sym_formal_parameters, - [32187] = 2, + STATE(33), 1, + sym_parenthesized_expression, + [33870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2185), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32195] = 3, + ACTIONS(2469), 1, + anon_sym_LBRACE, + STATE(218), 1, + sym_statement_block, + [33880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(915), 1, - sym_formal_parameters, - [32205] = 3, + ACTIONS(2471), 1, + sym_identifier, + ACTIONS(2473), 1, + sym_jsx_identifier, + [33890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(955), 1, + STATE(1035), 1, sym_formal_parameters, - [32215] = 2, + [33900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2839), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32223] = 3, + ACTIONS(1799), 1, + anon_sym_COLON, + ACTIONS(2311), 1, + anon_sym_GT, + [33910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - STATE(199), 1, - sym_statement_block, - [32233] = 3, + STATE(472), 1, + sym_class_body, + [33920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 1, + ACTIONS(2469), 1, anon_sym_LBRACE, - STATE(198), 1, + STATE(207), 1, sym_statement_block, - [32243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(1006), 1, - sym_formal_parameters, - [32253] = 3, + [33930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2469), 1, anon_sym_LBRACE, - STATE(369), 1, + STATE(212), 1, sym_statement_block, - [32263] = 3, + [33940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(543), 1, + STATE(465), 1, sym_statement_block, - [32273] = 3, + [33950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(364), 1, + STATE(468), 1, sym_statement_block, - [32283] = 3, + [33960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(440), 1, + STATE(469), 1, sym_statement_block, - [32293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(949), 1, - sym_formal_parameters, - [32303] = 3, + [33970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(1003), 1, - sym_formal_parameters, - [32313] = 3, + ACTIONS(2001), 1, + anon_sym_LBRACE, + STATE(379), 1, + sym_class_body, + [33980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(1002), 1, + STATE(1033), 1, sym_formal_parameters, - [32323] = 3, + [33990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(951), 1, - sym_parenthesized_expression, - [32333] = 2, + ACTIONS(2475), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [33998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2841), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32341] = 3, + ACTIONS(2477), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [34006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2837), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(192), 1, + STATE(518), 1, sym_statement_block, - [32351] = 3, + [34016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(989), 1, - sym_formal_parameters, - [32361] = 3, + ACTIONS(2479), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [34024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2481), 2, anon_sym_LBRACE, - STATE(492), 1, - sym_class_body, - [32371] = 3, + anon_sym_EQ_GT, + [34032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2843), 1, - sym_identifier, - ACTIONS(2845), 1, - sym_jsx_identifier, - [32381] = 2, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(1030), 1, + sym_formal_parameters, + [34042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2847), 2, + ACTIONS(2429), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [32389] = 3, + STATE(382), 1, + sym_statement_block, + [34052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2407), 1, + ACTIONS(2001), 1, anon_sym_LBRACE, - STATE(444), 1, + STATE(451), 1, sym_class_body, - [32399] = 3, + [34062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - STATE(191), 1, + STATE(211), 1, sym_class_body, - [32409] = 3, + [34072] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(993), 1, - sym_formal_parameters, - [32419] = 3, + ACTIONS(2483), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [34080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(992), 1, - sym_formal_parameters, - [32429] = 2, + ACTIONS(2429), 1, + anon_sym_LBRACE, + STATE(383), 1, + sym_statement_block, + [34090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2849), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [32437] = 3, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(1029), 1, + sym_formal_parameters, + [34100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - STATE(506), 1, + STATE(525), 1, sym_class_body, - [32447] = 3, + [34110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(507), 1, + STATE(504), 1, sym_statement_block, - [32457] = 3, + [34120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 1, - sym_identifier, - ACTIONS(2853), 1, - anon_sym_STAR, - [32467] = 3, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(944), 1, + sym_formal_parameters, + [34130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, - anon_sym_LBRACE, - STATE(615), 1, - sym_statement_block, - [32477] = 3, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(945), 1, + sym_formal_parameters, + [34140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(2467), 1, anon_sym_LPAREN, - STATE(987), 1, - sym_formal_parameters, - [32487] = 3, + STATE(922), 1, + sym_parenthesized_expression, + [34150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2817), 1, + ACTIONS(2429), 1, anon_sym_LBRACE, - STATE(446), 1, + STATE(376), 1, sym_statement_block, - [32497] = 3, + [34160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(459), 1, + STATE(484), 1, sym_statement_block, - [32507] = 3, + [34170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2029), 1, + anon_sym_LBRACE, + STATE(579), 1, + sym_class_body, + [34180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2469), 1, anon_sym_LBRACE, - STATE(461), 1, + STATE(215), 1, sym_statement_block, - [32517] = 3, + [34190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(620), 1, + STATE(486), 1, sym_statement_block, - [32527] = 3, + [34200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - anon_sym_COLON, - ACTIONS(2728), 1, + ACTIONS(1807), 1, + anon_sym_DOT, + ACTIONS(2311), 1, anon_sym_GT, - [32537] = 3, + [34210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(994), 1, + STATE(1018), 1, sym_formal_parameters, - [32547] = 3, + [34220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, + ACTIONS(2467), 1, + anon_sym_LPAREN, + STATE(32), 1, + sym_parenthesized_expression, + [34230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1799), 1, + anon_sym_COLON, + ACTIONS(2375), 1, + anon_sym_GT, + [34240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2485), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [34248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1807), 1, anon_sym_DOT, - ACTIONS(2728), 1, + ACTIONS(2375), 1, anon_sym_GT, - [32557] = 2, + [34258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2855), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [32565] = 3, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(1015), 1, + sym_formal_parameters, + [34268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - STATE(464), 1, + STATE(488), 1, sym_class_body, - [32575] = 3, + [34278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - STATE(210), 1, + STATE(204), 1, sym_class_body, - [32585] = 3, + [34288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 1, - anon_sym_while, - ACTIONS(2857), 1, - anon_sym_else, - [32595] = 3, + ACTIONS(2029), 1, + anon_sym_LBRACE, + STATE(53), 1, + sym_class_body, + [34298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(517), 1, + STATE(506), 1, sym_statement_block, - [32605] = 3, + [34308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(522), 1, + STATE(507), 1, sym_statement_block, - [32615] = 3, + [34318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2029), 1, anon_sym_LBRACE, - STATE(525), 1, + STATE(508), 1, sym_class_body, - [32625] = 2, + [34328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2859), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [32633] = 3, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_formal_parameters, + [34338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2427), 1, anon_sym_LBRACE, - STATE(467), 1, + STATE(490), 1, sym_statement_block, - [32643] = 2, + [34348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1425), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [34356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2861), 2, + ACTIONS(2427), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [32651] = 3, + STATE(510), 1, + sym_statement_block, + [34366] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2487), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [34374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2489), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [34382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2491), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [34390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - STATE(526), 1, + STATE(195), 1, sym_statement_block, - [32661] = 2, + [34400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2647), 2, + ACTIONS(2276), 2, anon_sym_COMMA, anon_sym_RPAREN, - [32669] = 3, + [34408] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(931), 1, - sym_formal_parameters, - [32679] = 2, + ACTIONS(2493), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [34416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2863), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [32687] = 3, + ACTIONS(2281), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [34424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, - anon_sym_LPAREN, - STATE(28), 1, - sym__for_header, - [32697] = 3, + ACTIONS(1427), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [34432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, + ACTIONS(2467), 1, anon_sym_LPAREN, - STATE(26), 1, + STATE(40), 1, sym_parenthesized_expression, - [32707] = 3, + [34442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2495), 2, anon_sym_LBRACE, - STATE(185), 1, - sym_statement_block, - [32717] = 3, + anon_sym_EQ_GT, + [34450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1228), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [34458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(893), 1, + STATE(994), 1, sym_formal_parameters, - [32727] = 3, + [34468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, - anon_sym_LBRACE, - STATE(47), 1, - sym_statement_block, - [32737] = 3, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(1054), 1, + sym_formal_parameters, + [34478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - anon_sym_COLON, - ACTIONS(2720), 1, - anon_sym_GT, - [32747] = 3, + ACTIONS(1915), 1, + anon_sym_LPAREN, + STATE(1058), 1, + sym_formal_parameters, + [34488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, - anon_sym_LBRACE, - STATE(549), 1, - sym_statement_block, - [32757] = 3, + ACTIONS(2497), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [34496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, - anon_sym_DOT, - ACTIONS(2720), 1, - anon_sym_GT, - [32767] = 2, + ACTIONS(2029), 1, + anon_sym_LBRACE, + STATE(512), 1, + sym_class_body, + [34506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 2, - anon_sym_LBRACE, + ACTIONS(1666), 1, + anon_sym_LPAREN, + ACTIONS(2499), 1, anon_sym_EQ_GT, - [32775] = 3, + [34516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(933), 1, + STATE(960), 1, sym_formal_parameters, - [32785] = 3, + [34526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - anon_sym_COLON, - ACTIONS(2718), 1, - anon_sym_GT, - [32795] = 3, + ACTIONS(2439), 1, + anon_sym_LBRACE, + STATE(212), 1, + sym_statement_block, + [34536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, - anon_sym_DOT, - ACTIONS(2718), 1, + ACTIONS(1799), 1, + anon_sym_COLON, + ACTIONS(2357), 1, anon_sym_GT, - [32805] = 2, + [34546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2664), 2, + ACTIONS(2501), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [32813] = 3, + anon_sym_RPAREN, + [34554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - anon_sym_COLON, - ACTIONS(2714), 1, + ACTIONS(1807), 1, + anon_sym_DOT, + ACTIONS(2357), 1, anon_sym_GT, - [32823] = 3, + [34564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, - anon_sym_DOT, - ACTIONS(2714), 1, - anon_sym_GT, - [32833] = 3, + ACTIONS(2439), 1, + anon_sym_LBRACE, + STATE(207), 1, + sym_statement_block, + [34574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, + ACTIONS(2409), 1, anon_sym_LPAREN, - STATE(24), 1, - sym_parenthesized_expression, - [32843] = 2, + STATE(42), 1, + sym__for_header, + [34584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1628), 2, + ACTIONS(2439), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [32851] = 3, + STATE(215), 1, + sym_statement_block, + [34594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, - anon_sym_LPAREN, - STATE(33), 1, - sym_parenthesized_expression, - [32861] = 3, + ACTIONS(1429), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [34602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, + ACTIONS(2503), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [34610] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2505), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [34618] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, - [32871] = 3, + STATE(1066), 1, + sym_formal_parameters, + [34628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2395), 1, anon_sym_LBRACE, - STATE(53), 1, - sym_class_body, - [32881] = 2, + STATE(638), 1, + sym_statement_block, + [34638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, + ACTIONS(2395), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [32889] = 2, + STATE(635), 1, + sym_statement_block, + [34648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2871), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [32897] = 3, + ACTIONS(1799), 1, + anon_sym_COLON, + ACTIONS(2348), 1, + anon_sym_GT, + [34658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, - anon_sym_LBRACE, - STATE(201), 1, - sym_statement_block, - [32907] = 3, + ACTIONS(2467), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym_parenthesized_expression, + [34668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2463), 1, - sym_identifier, - STATE(945), 1, - sym__import_export_specifier, - [32917] = 3, + ACTIONS(1807), 1, + anon_sym_DOT, + ACTIONS(2348), 1, + anon_sym_GT, + [34678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2835), 1, + ACTIONS(2467), 1, anon_sym_LPAREN, STATE(31), 1, sym_parenthesized_expression, - [32927] = 3, + [34688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(1915), 1, anon_sym_LPAREN, - STATE(38), 1, - sym__for_header, - [32937] = 3, + STATE(957), 1, + sym_formal_parameters, + [34698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(1666), 1, anon_sym_LPAREN, - ACTIONS(2133), 1, + ACTIONS(1721), 1, anon_sym_EQ_GT, - [32947] = 3, + [34708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(2467), 1, anon_sym_LPAREN, - ACTIONS(2873), 1, - anon_sym_EQ_GT, - [32957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2407), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_class_body, - [32967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2875), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [32975] = 2, + STATE(38), 1, + sym_parenthesized_expression, + [34718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2877), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [32983] = 2, + ACTIONS(1524), 1, + anon_sym_RPAREN, + [34725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2879), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [32991] = 3, + ACTIONS(2507), 1, + sym_identifier, + [34732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2301), 1, - anon_sym_LPAREN, - STATE(891), 1, - sym_formal_parameters, - [33001] = 2, + ACTIONS(2348), 1, + anon_sym_GT, + [34739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1891), 1, - anon_sym_RPAREN, - [33008] = 2, - ACTIONS(2229), 1, + ACTIONS(2509), 1, + anon_sym_SLASH2, + [34746] = 2, + ACTIONS(1821), 1, sym_comment, - ACTIONS(2881), 1, + ACTIONS(2511), 1, sym_regex_pattern, - [33015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2883), 1, - sym_identifier, - [33022] = 2, + [34753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2885), 1, - anon_sym_from, - [33029] = 2, - ACTIONS(2229), 1, - sym_comment, - ACTIONS(2887), 1, - sym_regex_pattern, - [33036] = 2, + ACTIONS(2513), 1, + anon_sym_GT, + [34760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2718), 1, + ACTIONS(2515), 1, anon_sym_GT, - [33043] = 2, + [34767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2889), 1, + ACTIONS(2517), 1, anon_sym_GT, - [33050] = 2, + [34774] = 2, + ACTIONS(1821), 1, + sym_comment, + ACTIONS(2519), 1, + sym_regex_pattern, + [34781] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2521), 1, - anon_sym_EQ, - [33057] = 2, + sym_identifier, + [34788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2891), 1, - anon_sym_RPAREN, - [33064] = 2, + ACTIONS(1417), 1, + anon_sym_LPAREN, + [34795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2893), 1, - sym_identifier, - [33071] = 2, + ACTIONS(2523), 1, + anon_sym_from, + [34802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2895), 1, + ACTIONS(2525), 1, anon_sym_GT, - [33078] = 2, + [34809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2614), 1, + ACTIONS(2187), 1, anon_sym_EQ, - [33085] = 2, + [34816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2897), 1, - anon_sym_GT, - [33092] = 2, + ACTIONS(2527), 1, + anon_sym_RPAREN, + [34823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 1, + ACTIONS(2529), 1, anon_sym_GT, - [33099] = 2, + [34830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1887), 1, - anon_sym_RPAREN, - [33106] = 2, + ACTIONS(2531), 1, + anon_sym_GT, + [34837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2901), 1, + ACTIONS(1534), 1, anon_sym_COLON, - [33113] = 2, + [34844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 1, + ACTIONS(2533), 1, anon_sym_GT, - [33120] = 2, + [34851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2714), 1, - anon_sym_GT, - [33127] = 2, + ACTIONS(2535), 1, + anon_sym_RBRACE, + [34858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2720), 1, - anon_sym_GT, - [33134] = 2, + ACTIONS(2537), 1, + sym_identifier, + [34865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2905), 1, - anon_sym_GT, - [33141] = 2, + ACTIONS(2245), 1, + sym_identifier, + [34872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 1, + ACTIONS(1530), 1, anon_sym_RPAREN, - [33148] = 2, + [34879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 1, + ACTIONS(2539), 1, sym_identifier, - [33155] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 1, - anon_sym_RPAREN, - [33162] = 2, + [34886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, - anon_sym_LPAREN, - [33169] = 2, + ACTIONS(1721), 1, + anon_sym_EQ_GT, + [34893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 1, + ACTIONS(2541), 1, sym_identifier, - [33176] = 2, + [34900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, - sym_identifier, - [33183] = 2, + ACTIONS(1528), 1, + anon_sym_RPAREN, + [34907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1903), 1, + ACTIONS(1526), 1, anon_sym_RPAREN, - [33190] = 2, + [34914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 1, - anon_sym_GT, - [33197] = 2, + ACTIONS(1522), 1, + anon_sym_RPAREN, + [34921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2919), 1, - sym_identifier, - [33204] = 2, + ACTIONS(2499), 1, + anon_sym_EQ_GT, + [34928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 1, + ACTIONS(2543), 1, anon_sym_GT, - [33211] = 2, + [34935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 1, - anon_sym_GT, - [33218] = 2, + ACTIONS(1520), 1, + anon_sym_RPAREN, + [34942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2923), 1, + ACTIONS(2311), 1, anon_sym_GT, - [33225] = 2, + [34949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2925), 1, + ACTIONS(2375), 1, anon_sym_GT, - [33232] = 2, + [34956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1918), 1, - anon_sym_RBRACE, - [33239] = 2, + ACTIONS(2545), 1, + anon_sym_while, + [34963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 1, - anon_sym_from, - [33246] = 2, + ACTIONS(1518), 1, + anon_sym_RBRACK, + [34970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2929), 1, - anon_sym_SLASH2, - [33253] = 2, + ACTIONS(2547), 1, + anon_sym_EQ_GT, + [34977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 1, - anon_sym_RBRACE, - [33260] = 2, + ACTIONS(1516), 1, + anon_sym_RPAREN, + [34984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(1512), 1, anon_sym_RBRACK, - [33267] = 2, + [34991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 1, - anon_sym_from, - [33274] = 2, + ACTIONS(2549), 1, + anon_sym_GT, + [34998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2933), 1, - anon_sym_from, - [33281] = 2, + ACTIONS(2551), 1, + anon_sym_GT, + [35005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 1, - anon_sym_from, - [33288] = 2, + ACTIONS(2553), 1, + anon_sym_EQ_GT, + [35012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1922), 1, - anon_sym_RBRACK, - [33295] = 2, + ACTIONS(1510), 1, + anon_sym_RBRACE, + [35019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - sym_identifier, - [33302] = 2, + ACTIONS(1459), 1, + anon_sym_RPAREN, + [35026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 1, - anon_sym_GT, - [33309] = 2, + ACTIONS(1508), 1, + anon_sym_RBRACK, + [35033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2941), 1, - sym_identifier, - [33316] = 2, + ACTIONS(1506), 1, + anon_sym_RBRACK, + [35040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 1, - anon_sym_RBRACE, - [33323] = 2, + ACTIONS(2555), 1, + anon_sym_RPAREN, + [35047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1875), 1, + ACTIONS(2557), 1, anon_sym_RPAREN, - [33330] = 2, + [35054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2559), 1, + sym_identifier, + [35061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2945), 1, + ACTIONS(2561), 1, anon_sym_GT, - [33337] = 2, + [35068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, - anon_sym_EQ_GT, - [33344] = 2, + ACTIONS(2357), 1, + anon_sym_GT, + [35075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 1, - sym_identifier, - [33351] = 2, + ACTIONS(2563), 1, + anon_sym_GT, + [35082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1831), 1, - anon_sym_LPAREN, - [33358] = 2, + ACTIONS(2565), 1, + anon_sym_target, + [35089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1885), 1, - anon_sym_COLON, - [33365] = 2, + ACTIONS(2303), 1, + anon_sym_RBRACE, + [35096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2949), 1, - sym_identifier, - [33372] = 2, + ACTIONS(1514), 1, + anon_sym_RBRACK, + [35103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 1, - anon_sym_target, - [33379] = 2, + ACTIONS(2567), 1, + anon_sym_from, + [35110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2953), 1, - anon_sym_EQ_GT, - [33386] = 2, + ACTIONS(2569), 1, + anon_sym_from, + [35117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, - anon_sym_RPAREN, - [33393] = 2, + ACTIONS(2571), 1, + anon_sym_from, + [35124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 1, - anon_sym_EQ_GT, - [33400] = 2, + ACTIONS(2573), 1, + anon_sym_from, + [35131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2957), 1, - anon_sym_while, - [33407] = 2, + ACTIONS(2575), 1, + anon_sym_GT, + [35138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1881), 1, - anon_sym_RPAREN, - [33414] = 2, + ACTIONS(2577), 1, + anon_sym_function, + [35145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1873), 1, - anon_sym_RPAREN, - [33421] = 2, + ACTIONS(2579), 1, + anon_sym_from, + [35152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, - anon_sym_RPAREN, - [33428] = 2, + ACTIONS(1504), 1, + anon_sym_RBRACK, + [35159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2959), 1, - anon_sym_EQ_GT, - [33435] = 2, + ACTIONS(2107), 1, + sym_identifier, + [35166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1883), 1, - anon_sym_RPAREN, - [33442] = 2, + ACTIONS(2581), 1, + sym_identifier, + [35173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_target, + [35180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2961), 1, + ACTIONS(2585), 1, sym_identifier, - [33449] = 2, + [35187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2963), 1, - anon_sym_SLASH2, - [33456] = 2, + ACTIONS(2587), 1, + anon_sym_COLON, + [35194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1502), 1, + anon_sym_RBRACE, + [35201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2965), 1, + ACTIONS(2589), 1, anon_sym_EQ_GT, - [33463] = 2, + [35208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, - anon_sym_RPAREN, - [33470] = 2, + ACTIONS(2591), 1, + anon_sym_GT, + [35215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1914), 1, - anon_sym_RBRACE, - [33477] = 2, + ACTIONS(2593), 1, + anon_sym_EQ_GT, + [35222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2967), 1, + ACTIONS(2595), 1, anon_sym_GT, - [33484] = 2, + [35229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1869), 1, - anon_sym_RPAREN, - [33491] = 2, + ACTIONS(2597), 1, + anon_sym_EQ_GT, + [35236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2969), 1, + ACTIONS(2599), 1, sym_identifier, - [33498] = 2, + [35243] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_LPAREN, + [35250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2971), 1, + ACTIONS(2213), 1, sym_identifier, - [33505] = 2, + [35257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2973), 1, - anon_sym_RBRACE, - [33512] = 2, + ACTIONS(2093), 1, + sym_identifier, + [35264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2975), 1, - anon_sym_function, - [33519] = 2, + ACTIONS(1495), 1, + anon_sym_RBRACK, + [35271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 1, + ACTIONS(2601), 1, + anon_sym_SLASH2, + [35278] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2603), 1, anon_sym_from, - [33526] = 2, + [35285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2979), 1, - sym_identifier, - [33533] = 2, + ACTIONS(1493), 1, + anon_sym_RPAREN, + [35292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 1, - anon_sym_EQ_GT, - [33540] = 2, + ACTIONS(1491), 1, + anon_sym_RPAREN, + [35299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1889), 1, + ACTIONS(1489), 1, anon_sym_RPAREN, - [33547] = 2, + [35306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2983), 1, - anon_sym_GT, - [33554] = 2, + ACTIONS(1487), 1, + anon_sym_RPAREN, + [35313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2985), 1, - anon_sym_target, - [33561] = 2, + ACTIONS(1479), 1, + anon_sym_RBRACE, + [35320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1483), 1, + anon_sym_RPAREN, + [35327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2987), 1, + ACTIONS(2605), 1, anon_sym_as, - [33568] = 2, + [35334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 1, + ACTIONS(2607), 1, anon_sym_EQ_GT, - [33575] = 2, + [35341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, - anon_sym_RPAREN, - [33582] = 2, + ACTIONS(2425), 1, + anon_sym_from, + [35348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 1, - anon_sym_from, - [33589] = 2, + ACTIONS(1461), 1, + anon_sym_RBRACK, + [35355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2873), 1, - anon_sym_EQ_GT, - [33596] = 2, + ACTIONS(2609), 1, + sym_identifier, + [35362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2993), 1, - ts_builtin_sym_end, - [33603] = 2, + ACTIONS(2611), 1, + anon_sym_GT, + [35369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, - anon_sym_from, - [33610] = 2, + ACTIONS(2181), 1, + anon_sym_EQ, + [35376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2995), 1, - sym_identifier, - [33617] = 2, + ACTIONS(2613), 1, + ts_builtin_sym_end, + [35383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2997), 1, + ACTIONS(2615), 1, sym_identifier, - [33624] = 2, + [35390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2999), 1, + ACTIONS(2617), 1, sym_identifier, - [33631] = 2, + [35397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3001), 1, + ACTIONS(2619), 1, anon_sym_function, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(182)] = 0, - [SMALL_STATE(183)] = 105, - [SMALL_STATE(184)] = 204, - [SMALL_STATE(185)] = 275, - [SMALL_STATE(186)] = 354, - [SMALL_STATE(187)] = 425, - [SMALL_STATE(188)] = 524, - [SMALL_STATE(189)] = 629, - [SMALL_STATE(190)] = 702, - [SMALL_STATE(191)] = 770, - [SMALL_STATE(192)] = 840, - [SMALL_STATE(193)] = 910, - [SMALL_STATE(194)] = 980, - [SMALL_STATE(195)] = 1050, - [SMALL_STATE(196)] = 1120, - [SMALL_STATE(197)] = 1188, - [SMALL_STATE(198)] = 1274, - [SMALL_STATE(199)] = 1344, - [SMALL_STATE(200)] = 1414, - [SMALL_STATE(201)] = 1482, - [SMALL_STATE(202)] = 1552, - [SMALL_STATE(203)] = 1620, - [SMALL_STATE(204)] = 1690, - [SMALL_STATE(205)] = 1758, - [SMALL_STATE(206)] = 1826, - [SMALL_STATE(207)] = 1894, - [SMALL_STATE(208)] = 1962, - [SMALL_STATE(209)] = 2030, - [SMALL_STATE(210)] = 2098, - [SMALL_STATE(211)] = 2168, - [SMALL_STATE(212)] = 2235, - [SMALL_STATE(213)] = 2302, - [SMALL_STATE(214)] = 2369, - [SMALL_STATE(215)] = 2436, - [SMALL_STATE(216)] = 2503, - [SMALL_STATE(217)] = 2570, - [SMALL_STATE(218)] = 2637, - [SMALL_STATE(219)] = 2704, - [SMALL_STATE(220)] = 2771, - [SMALL_STATE(221)] = 2838, - [SMALL_STATE(222)] = 2905, - [SMALL_STATE(223)] = 2972, - [SMALL_STATE(224)] = 3039, - [SMALL_STATE(225)] = 3106, - [SMALL_STATE(226)] = 3173, - [SMALL_STATE(227)] = 3240, - [SMALL_STATE(228)] = 3307, - [SMALL_STATE(229)] = 3374, - [SMALL_STATE(230)] = 3441, - [SMALL_STATE(231)] = 3508, - [SMALL_STATE(232)] = 3575, - [SMALL_STATE(233)] = 3642, - [SMALL_STATE(234)] = 3709, - [SMALL_STATE(235)] = 3776, - [SMALL_STATE(236)] = 3843, - [SMALL_STATE(237)] = 3910, - [SMALL_STATE(238)] = 3977, - [SMALL_STATE(239)] = 4044, - [SMALL_STATE(240)] = 4111, - [SMALL_STATE(241)] = 4196, - [SMALL_STATE(242)] = 4263, - [SMALL_STATE(243)] = 4330, - [SMALL_STATE(244)] = 4397, - [SMALL_STATE(245)] = 4464, - [SMALL_STATE(246)] = 4531, - [SMALL_STATE(247)] = 4598, - [SMALL_STATE(248)] = 4665, - [SMALL_STATE(249)] = 4732, - [SMALL_STATE(250)] = 4799, - [SMALL_STATE(251)] = 4866, - [SMALL_STATE(252)] = 4933, - [SMALL_STATE(253)] = 5000, - [SMALL_STATE(254)] = 5069, - [SMALL_STATE(255)] = 5136, - [SMALL_STATE(256)] = 5203, - [SMALL_STATE(257)] = 5287, - [SMALL_STATE(258)] = 5374, - [SMALL_STATE(259)] = 5459, - [SMALL_STATE(260)] = 5544, - [SMALL_STATE(261)] = 5627, - [SMALL_STATE(262)] = 5715, - [SMALL_STATE(263)] = 5777, - [SMALL_STATE(264)] = 5839, - [SMALL_STATE(265)] = 5923, - [SMALL_STATE(266)] = 6007, - [SMALL_STATE(267)] = 6069, - [SMALL_STATE(268)] = 6131, - [SMALL_STATE(269)] = 6193, - [SMALL_STATE(270)] = 6255, - [SMALL_STATE(271)] = 6317, - [SMALL_STATE(272)] = 6379, - [SMALL_STATE(273)] = 6441, - [SMALL_STATE(274)] = 6514, - [SMALL_STATE(275)] = 6587, - [SMALL_STATE(276)] = 6647, - [SMALL_STATE(277)] = 6715, - [SMALL_STATE(278)] = 6775, - [SMALL_STATE(279)] = 6843, - [SMALL_STATE(280)] = 6919, - [SMALL_STATE(281)] = 6979, - [SMALL_STATE(282)] = 7039, - [SMALL_STATE(283)] = 7115, - [SMALL_STATE(284)] = 7183, - [SMALL_STATE(285)] = 7246, - [SMALL_STATE(286)] = 7317, - [SMALL_STATE(287)] = 7388, - [SMALL_STATE(288)] = 7463, - [SMALL_STATE(289)] = 7529, - [SMALL_STATE(290)] = 7599, - [SMALL_STATE(291)] = 7669, - [SMALL_STATE(292)] = 7735, - [SMALL_STATE(293)] = 7793, - [SMALL_STATE(294)] = 7851, - [SMALL_STATE(295)] = 7919, - [SMALL_STATE(296)] = 7985, - [SMALL_STATE(297)] = 8053, - [SMALL_STATE(298)] = 8111, - [SMALL_STATE(299)] = 8169, - [SMALL_STATE(300)] = 8237, - [SMALL_STATE(301)] = 8305, - [SMALL_STATE(302)] = 8362, - [SMALL_STATE(303)] = 8427, - [SMALL_STATE(304)] = 8484, - [SMALL_STATE(305)] = 8555, - [SMALL_STATE(306)] = 8616, - [SMALL_STATE(307)] = 8687, - [SMALL_STATE(308)] = 8744, - [SMALL_STATE(309)] = 8810, - [SMALL_STATE(310)] = 8877, - [SMALL_STATE(311)] = 8944, - [SMALL_STATE(312)] = 9011, - [SMALL_STATE(313)] = 9078, - [SMALL_STATE(314)] = 9140, - [SMALL_STATE(315)] = 9202, - [SMALL_STATE(316)] = 9269, - [SMALL_STATE(317)] = 9327, - [SMALL_STATE(318)] = 9409, - [SMALL_STATE(319)] = 9457, - [SMALL_STATE(320)] = 9533, - [SMALL_STATE(321)] = 9615, - [SMALL_STATE(322)] = 9697, - [SMALL_STATE(323)] = 9779, - [SMALL_STATE(324)] = 9827, - [SMALL_STATE(325)] = 9875, - [SMALL_STATE(326)] = 9955, - [SMALL_STATE(327)] = 10037, - [SMALL_STATE(328)] = 10119, - [SMALL_STATE(329)] = 10201, - [SMALL_STATE(330)] = 10283, - [SMALL_STATE(331)] = 10349, - [SMALL_STATE(332)] = 10403, - [SMALL_STATE(333)] = 10465, - [SMALL_STATE(334)] = 10519, - [SMALL_STATE(335)] = 10567, - [SMALL_STATE(336)] = 10619, - [SMALL_STATE(337)] = 10701, - [SMALL_STATE(338)] = 10783, - [SMALL_STATE(339)] = 10831, - [SMALL_STATE(340)] = 10913, - [SMALL_STATE(341)] = 10961, - [SMALL_STATE(342)] = 11043, - [SMALL_STATE(343)] = 11103, - [SMALL_STATE(344)] = 11163, - [SMALL_STATE(345)] = 11217, - [SMALL_STATE(346)] = 11277, - [SMALL_STATE(347)] = 11337, - [SMALL_STATE(348)] = 11389, - [SMALL_STATE(349)] = 11437, - [SMALL_STATE(350)] = 11519, - [SMALL_STATE(351)] = 11567, - [SMALL_STATE(352)] = 11635, - [SMALL_STATE(353)] = 11707, - [SMALL_STATE(354)] = 11789, - [SMALL_STATE(355)] = 11871, - [SMALL_STATE(356)] = 11953, - [SMALL_STATE(357)] = 12002, - [SMALL_STATE(358)] = 12051, - [SMALL_STATE(359)] = 12100, - [SMALL_STATE(360)] = 12183, - [SMALL_STATE(361)] = 12232, - [SMALL_STATE(362)] = 12283, - [SMALL_STATE(363)] = 12332, - [SMALL_STATE(364)] = 12381, - [SMALL_STATE(365)] = 12427, - [SMALL_STATE(366)] = 12477, - [SMALL_STATE(367)] = 12523, - [SMALL_STATE(368)] = 12569, - [SMALL_STATE(369)] = 12649, - [SMALL_STATE(370)] = 12695, - [SMALL_STATE(371)] = 12741, - [SMALL_STATE(372)] = 12821, - [SMALL_STATE(373)] = 12901, - [SMALL_STATE(374)] = 12981, - [SMALL_STATE(375)] = 13061, - [SMALL_STATE(376)] = 13107, - [SMALL_STATE(377)] = 13163, - [SMALL_STATE(378)] = 13209, - [SMALL_STATE(379)] = 13265, - [SMALL_STATE(380)] = 13311, - [SMALL_STATE(381)] = 13357, - [SMALL_STATE(382)] = 13403, - [SMALL_STATE(383)] = 13449, - [SMALL_STATE(384)] = 13495, - [SMALL_STATE(385)] = 13575, - [SMALL_STATE(386)] = 13621, - [SMALL_STATE(387)] = 13667, - [SMALL_STATE(388)] = 13713, - [SMALL_STATE(389)] = 13793, - [SMALL_STATE(390)] = 13839, - [SMALL_STATE(391)] = 13919, - [SMALL_STATE(392)] = 13965, - [SMALL_STATE(393)] = 14011, - [SMALL_STATE(394)] = 14091, - [SMALL_STATE(395)] = 14171, - [SMALL_STATE(396)] = 14221, - [SMALL_STATE(397)] = 14267, - [SMALL_STATE(398)] = 14313, - [SMALL_STATE(399)] = 14359, - [SMALL_STATE(400)] = 14405, - [SMALL_STATE(401)] = 14451, - [SMALL_STATE(402)] = 14497, - [SMALL_STATE(403)] = 14543, - [SMALL_STATE(404)] = 14595, - [SMALL_STATE(405)] = 14675, - [SMALL_STATE(406)] = 14735, - [SMALL_STATE(407)] = 14781, - [SMALL_STATE(408)] = 14827, - [SMALL_STATE(409)] = 14893, - [SMALL_STATE(410)] = 14973, - [SMALL_STATE(411)] = 15043, - [SMALL_STATE(412)] = 15117, - [SMALL_STATE(413)] = 15181, - [SMALL_STATE(414)] = 15239, - [SMALL_STATE(415)] = 15317, - [SMALL_STATE(416)] = 15397, - [SMALL_STATE(417)] = 15477, - [SMALL_STATE(418)] = 15523, - [SMALL_STATE(419)] = 15569, - [SMALL_STATE(420)] = 15649, - [SMALL_STATE(421)] = 15695, - [SMALL_STATE(422)] = 15751, - [SMALL_STATE(423)] = 15809, - [SMALL_STATE(424)] = 15867, - [SMALL_STATE(425)] = 15947, - [SMALL_STATE(426)] = 16005, - [SMALL_STATE(427)] = 16051, - [SMALL_STATE(428)] = 16097, - [SMALL_STATE(429)] = 16149, - [SMALL_STATE(430)] = 16195, - [SMALL_STATE(431)] = 16241, - [SMALL_STATE(432)] = 16287, - [SMALL_STATE(433)] = 16333, - [SMALL_STATE(434)] = 16385, - [SMALL_STATE(435)] = 16431, - [SMALL_STATE(436)] = 16477, - [SMALL_STATE(437)] = 16523, - [SMALL_STATE(438)] = 16569, - [SMALL_STATE(439)] = 16649, - [SMALL_STATE(440)] = 16695, - [SMALL_STATE(441)] = 16741, - [SMALL_STATE(442)] = 16787, - [SMALL_STATE(443)] = 16833, - [SMALL_STATE(444)] = 16879, - [SMALL_STATE(445)] = 16925, - [SMALL_STATE(446)] = 16971, - [SMALL_STATE(447)] = 17017, - [SMALL_STATE(448)] = 17063, - [SMALL_STATE(449)] = 17109, - [SMALL_STATE(450)] = 17193, - [SMALL_STATE(451)] = 17239, - [SMALL_STATE(452)] = 17323, - [SMALL_STATE(453)] = 17369, - [SMALL_STATE(454)] = 17453, - [SMALL_STATE(455)] = 17499, - [SMALL_STATE(456)] = 17545, - [SMALL_STATE(457)] = 17629, - [SMALL_STATE(458)] = 17712, - [SMALL_STATE(459)] = 17791, - [SMALL_STATE(460)] = 17840, - [SMALL_STATE(461)] = 17923, - [SMALL_STATE(462)] = 17972, - [SMALL_STATE(463)] = 18021, - [SMALL_STATE(464)] = 18070, - [SMALL_STATE(465)] = 18119, - [SMALL_STATE(466)] = 18198, - [SMALL_STATE(467)] = 18247, - [SMALL_STATE(468)] = 18296, - [SMALL_STATE(469)] = 18345, - [SMALL_STATE(470)] = 18428, - [SMALL_STATE(471)] = 18507, - [SMALL_STATE(472)] = 18556, - [SMALL_STATE(473)] = 18637, - [SMALL_STATE(474)] = 18686, - [SMALL_STATE(475)] = 18735, - [SMALL_STATE(476)] = 18782, - [SMALL_STATE(477)] = 18829, - [SMALL_STATE(478)] = 18912, - [SMALL_STATE(479)] = 18995, - [SMALL_STATE(480)] = 19078, - [SMALL_STATE(481)] = 19125, - [SMALL_STATE(482)] = 19206, - [SMALL_STATE(483)] = 19253, - [SMALL_STATE(484)] = 19332, - [SMALL_STATE(485)] = 19411, - [SMALL_STATE(486)] = 19490, - [SMALL_STATE(487)] = 19569, - [SMALL_STATE(488)] = 19648, - [SMALL_STATE(489)] = 19729, - [SMALL_STATE(490)] = 19780, - [SMALL_STATE(491)] = 19831, - [SMALL_STATE(492)] = 19912, - [SMALL_STATE(493)] = 19956, - [SMALL_STATE(494)] = 20000, - [SMALL_STATE(495)] = 20052, - [SMALL_STATE(496)] = 20132, - [SMALL_STATE(497)] = 20212, - [SMALL_STATE(498)] = 20290, - [SMALL_STATE(499)] = 20368, - [SMALL_STATE(500)] = 20446, - [SMALL_STATE(501)] = 20524, - [SMALL_STATE(502)] = 20568, - [SMALL_STATE(503)] = 20648, - [SMALL_STATE(504)] = 20728, - [SMALL_STATE(505)] = 20808, - [SMALL_STATE(506)] = 20886, - [SMALL_STATE(507)] = 20930, - [SMALL_STATE(508)] = 20974, - [SMALL_STATE(509)] = 21018, - [SMALL_STATE(510)] = 21098, - [SMALL_STATE(511)] = 21178, - [SMALL_STATE(512)] = 21222, - [SMALL_STATE(513)] = 21302, - [SMALL_STATE(514)] = 21346, - [SMALL_STATE(515)] = 21390, - [SMALL_STATE(516)] = 21434, - [SMALL_STATE(517)] = 21478, - [SMALL_STATE(518)] = 21522, - [SMALL_STATE(519)] = 21566, - [SMALL_STATE(520)] = 21610, - [SMALL_STATE(521)] = 21690, - [SMALL_STATE(522)] = 21734, - [SMALL_STATE(523)] = 21778, - [SMALL_STATE(524)] = 21822, - [SMALL_STATE(525)] = 21902, - [SMALL_STATE(526)] = 21946, - [SMALL_STATE(527)] = 21990, - [SMALL_STATE(528)] = 22070, - [SMALL_STATE(529)] = 22122, - [SMALL_STATE(530)] = 22168, - [SMALL_STATE(531)] = 22212, - [SMALL_STATE(532)] = 22292, - [SMALL_STATE(533)] = 22338, - [SMALL_STATE(534)] = 22382, - [SMALL_STATE(535)] = 22430, - [SMALL_STATE(536)] = 22474, - [SMALL_STATE(537)] = 22518, - [SMALL_STATE(538)] = 22562, - [SMALL_STATE(539)] = 22606, - [SMALL_STATE(540)] = 22686, - [SMALL_STATE(541)] = 22730, - [SMALL_STATE(542)] = 22774, - [SMALL_STATE(543)] = 22854, - [SMALL_STATE(544)] = 22898, - [SMALL_STATE(545)] = 22942, - [SMALL_STATE(546)] = 23022, - [SMALL_STATE(547)] = 23066, - [SMALL_STATE(548)] = 23110, - [SMALL_STATE(549)] = 23190, - [SMALL_STATE(550)] = 23234, - [SMALL_STATE(551)] = 23278, - [SMALL_STATE(552)] = 23322, - [SMALL_STATE(553)] = 23366, - [SMALL_STATE(554)] = 23410, - [SMALL_STATE(555)] = 23454, - [SMALL_STATE(556)] = 23498, - [SMALL_STATE(557)] = 23576, - [SMALL_STATE(558)] = 23656, - [SMALL_STATE(559)] = 23700, - [SMALL_STATE(560)] = 23780, - [SMALL_STATE(561)] = 23860, - [SMALL_STATE(562)] = 23938, - [SMALL_STATE(563)] = 23982, - [SMALL_STATE(564)] = 24026, - [SMALL_STATE(565)] = 24103, - [SMALL_STATE(566)] = 24180, - [SMALL_STATE(567)] = 24227, - [SMALL_STATE(568)] = 24304, - [SMALL_STATE(569)] = 24351, - [SMALL_STATE(570)] = 24428, - [SMALL_STATE(571)] = 24505, - [SMALL_STATE(572)] = 24553, - [SMALL_STATE(573)] = 24601, - [SMALL_STATE(574)] = 24649, - [SMALL_STATE(575)] = 24723, - [SMALL_STATE(576)] = 24771, - [SMALL_STATE(577)] = 24845, - [SMALL_STATE(578)] = 24918, - [SMALL_STATE(579)] = 24991, - [SMALL_STATE(580)] = 25059, - [SMALL_STATE(581)] = 25117, - [SMALL_STATE(582)] = 25175, - [SMALL_STATE(583)] = 25233, - [SMALL_STATE(584)] = 25291, - [SMALL_STATE(585)] = 25349, - [SMALL_STATE(586)] = 25407, - [SMALL_STATE(587)] = 25465, - [SMALL_STATE(588)] = 25516, - [SMALL_STATE(589)] = 25567, - [SMALL_STATE(590)] = 25616, - [SMALL_STATE(591)] = 25665, - [SMALL_STATE(592)] = 25714, - [SMALL_STATE(593)] = 25763, - [SMALL_STATE(594)] = 25809, - [SMALL_STATE(595)] = 25861, - [SMALL_STATE(596)] = 25905, - [SMALL_STATE(597)] = 25949, - [SMALL_STATE(598)] = 25993, - [SMALL_STATE(599)] = 26032, - [SMALL_STATE(600)] = 26071, - [SMALL_STATE(601)] = 26112, - [SMALL_STATE(602)] = 26151, - [SMALL_STATE(603)] = 26197, - [SMALL_STATE(604)] = 26237, - [SMALL_STATE(605)] = 26267, - [SMALL_STATE(606)] = 26307, - [SMALL_STATE(607)] = 26341, - [SMALL_STATE(608)] = 26371, - [SMALL_STATE(609)] = 26405, - [SMALL_STATE(610)] = 26428, - [SMALL_STATE(611)] = 26451, - [SMALL_STATE(612)] = 26480, - [SMALL_STATE(613)] = 26502, - [SMALL_STATE(614)] = 26524, - [SMALL_STATE(615)] = 26562, - [SMALL_STATE(616)] = 26584, - [SMALL_STATE(617)] = 26606, - [SMALL_STATE(618)] = 26640, - [SMALL_STATE(619)] = 26676, - [SMALL_STATE(620)] = 26712, - [SMALL_STATE(621)] = 26734, - [SMALL_STATE(622)] = 26769, - [SMALL_STATE(623)] = 26804, - [SMALL_STATE(624)] = 26839, - [SMALL_STATE(625)] = 26860, - [SMALL_STATE(626)] = 26895, - [SMALL_STATE(627)] = 26916, - [SMALL_STATE(628)] = 26947, - [SMALL_STATE(629)] = 26982, - [SMALL_STATE(630)] = 27017, - [SMALL_STATE(631)] = 27038, - [SMALL_STATE(632)] = 27073, - [SMALL_STATE(633)] = 27104, - [SMALL_STATE(634)] = 27135, - [SMALL_STATE(635)] = 27170, - [SMALL_STATE(636)] = 27191, - [SMALL_STATE(637)] = 27214, - [SMALL_STATE(638)] = 27249, - [SMALL_STATE(639)] = 27277, - [SMALL_STATE(640)] = 27305, - [SMALL_STATE(641)] = 27333, - [SMALL_STATE(642)] = 27353, - [SMALL_STATE(643)] = 27385, - [SMALL_STATE(644)] = 27413, - [SMALL_STATE(645)] = 27448, - [SMALL_STATE(646)] = 27483, - [SMALL_STATE(647)] = 27518, - [SMALL_STATE(648)] = 27553, - [SMALL_STATE(649)] = 27585, - [SMALL_STATE(650)] = 27617, - [SMALL_STATE(651)] = 27649, - [SMALL_STATE(652)] = 27675, - [SMALL_STATE(653)] = 27701, - [SMALL_STATE(654)] = 27733, - [SMALL_STATE(655)] = 27765, - [SMALL_STATE(656)] = 27797, - [SMALL_STATE(657)] = 27829, - [SMALL_STATE(658)] = 27861, - [SMALL_STATE(659)] = 27890, - [SMALL_STATE(660)] = 27915, - [SMALL_STATE(661)] = 27944, - [SMALL_STATE(662)] = 27969, - [SMALL_STATE(663)] = 27994, - [SMALL_STATE(664)] = 28023, - [SMALL_STATE(665)] = 28052, - [SMALL_STATE(666)] = 28081, - [SMALL_STATE(667)] = 28110, - [SMALL_STATE(668)] = 28135, - [SMALL_STATE(669)] = 28160, - [SMALL_STATE(670)] = 28185, - [SMALL_STATE(671)] = 28214, - [SMALL_STATE(672)] = 28239, - [SMALL_STATE(673)] = 28268, - [SMALL_STATE(674)] = 28297, - [SMALL_STATE(675)] = 28322, - [SMALL_STATE(676)] = 28344, - [SMALL_STATE(677)] = 28366, - [SMALL_STATE(678)] = 28388, - [SMALL_STATE(679)] = 28410, - [SMALL_STATE(680)] = 28432, - [SMALL_STATE(681)] = 28454, - [SMALL_STATE(682)] = 28476, - [SMALL_STATE(683)] = 28495, - [SMALL_STATE(684)] = 28514, - [SMALL_STATE(685)] = 28534, - [SMALL_STATE(686)] = 28552, - [SMALL_STATE(687)] = 28574, - [SMALL_STATE(688)] = 28592, - [SMALL_STATE(689)] = 28610, - [SMALL_STATE(690)] = 28630, - [SMALL_STATE(691)] = 28648, - [SMALL_STATE(692)] = 28666, - [SMALL_STATE(693)] = 28688, - [SMALL_STATE(694)] = 28708, - [SMALL_STATE(695)] = 28722, - [SMALL_STATE(696)] = 28742, - [SMALL_STATE(697)] = 28756, - [SMALL_STATE(698)] = 28774, - [SMALL_STATE(699)] = 28794, - [SMALL_STATE(700)] = 28812, - [SMALL_STATE(701)] = 28832, - [SMALL_STATE(702)] = 28848, - [SMALL_STATE(703)] = 28868, - [SMALL_STATE(704)] = 28886, - [SMALL_STATE(705)] = 28908, - [SMALL_STATE(706)] = 28927, - [SMALL_STATE(707)] = 28942, - [SMALL_STATE(708)] = 28961, - [SMALL_STATE(709)] = 28980, - [SMALL_STATE(710)] = 28999, - [SMALL_STATE(711)] = 29014, - [SMALL_STATE(712)] = 29027, - [SMALL_STATE(713)] = 29046, - [SMALL_STATE(714)] = 29065, - [SMALL_STATE(715)] = 29084, - [SMALL_STATE(716)] = 29103, - [SMALL_STATE(717)] = 29122, - [SMALL_STATE(718)] = 29141, - [SMALL_STATE(719)] = 29154, - [SMALL_STATE(720)] = 29167, - [SMALL_STATE(721)] = 29180, - [SMALL_STATE(722)] = 29193, - [SMALL_STATE(723)] = 29208, - [SMALL_STATE(724)] = 29227, - [SMALL_STATE(725)] = 29246, - [SMALL_STATE(726)] = 29261, - [SMALL_STATE(727)] = 29280, - [SMALL_STATE(728)] = 29299, - [SMALL_STATE(729)] = 29312, - [SMALL_STATE(730)] = 29325, - [SMALL_STATE(731)] = 29338, - [SMALL_STATE(732)] = 29351, - [SMALL_STATE(733)] = 29364, - [SMALL_STATE(734)] = 29377, - [SMALL_STATE(735)] = 29396, - [SMALL_STATE(736)] = 29415, - [SMALL_STATE(737)] = 29434, - [SMALL_STATE(738)] = 29447, - [SMALL_STATE(739)] = 29460, - [SMALL_STATE(740)] = 29479, - [SMALL_STATE(741)] = 29492, - [SMALL_STATE(742)] = 29511, - [SMALL_STATE(743)] = 29530, - [SMALL_STATE(744)] = 29549, - [SMALL_STATE(745)] = 29568, - [SMALL_STATE(746)] = 29587, - [SMALL_STATE(747)] = 29606, - [SMALL_STATE(748)] = 29625, - [SMALL_STATE(749)] = 29641, - [SMALL_STATE(750)] = 29657, - [SMALL_STATE(751)] = 29673, - [SMALL_STATE(752)] = 29689, - [SMALL_STATE(753)] = 29703, - [SMALL_STATE(754)] = 29719, - [SMALL_STATE(755)] = 29735, - [SMALL_STATE(756)] = 29745, - [SMALL_STATE(757)] = 29761, - [SMALL_STATE(758)] = 29777, - [SMALL_STATE(759)] = 29793, - [SMALL_STATE(760)] = 29809, - [SMALL_STATE(761)] = 29825, - [SMALL_STATE(762)] = 29841, - [SMALL_STATE(763)] = 29857, - [SMALL_STATE(764)] = 29873, - [SMALL_STATE(765)] = 29889, - [SMALL_STATE(766)] = 29905, - [SMALL_STATE(767)] = 29921, - [SMALL_STATE(768)] = 29937, - [SMALL_STATE(769)] = 29953, - [SMALL_STATE(770)] = 29963, - [SMALL_STATE(771)] = 29979, - [SMALL_STATE(772)] = 29995, - [SMALL_STATE(773)] = 30011, - [SMALL_STATE(774)] = 30027, - [SMALL_STATE(775)] = 30043, - [SMALL_STATE(776)] = 30059, - [SMALL_STATE(777)] = 30075, - [SMALL_STATE(778)] = 30091, - [SMALL_STATE(779)] = 30107, - [SMALL_STATE(780)] = 30123, - [SMALL_STATE(781)] = 30139, - [SMALL_STATE(782)] = 30155, - [SMALL_STATE(783)] = 30171, - [SMALL_STATE(784)] = 30185, - [SMALL_STATE(785)] = 30201, - [SMALL_STATE(786)] = 30215, - [SMALL_STATE(787)] = 30225, - [SMALL_STATE(788)] = 30241, - [SMALL_STATE(789)] = 30257, - [SMALL_STATE(790)] = 30273, - [SMALL_STATE(791)] = 30287, - [SMALL_STATE(792)] = 30303, - [SMALL_STATE(793)] = 30319, - [SMALL_STATE(794)] = 30335, - [SMALL_STATE(795)] = 30349, - [SMALL_STATE(796)] = 30365, - [SMALL_STATE(797)] = 30379, - [SMALL_STATE(798)] = 30395, - [SMALL_STATE(799)] = 30411, - [SMALL_STATE(800)] = 30427, - [SMALL_STATE(801)] = 30443, - [SMALL_STATE(802)] = 30459, - [SMALL_STATE(803)] = 30475, - [SMALL_STATE(804)] = 30491, - [SMALL_STATE(805)] = 30507, - [SMALL_STATE(806)] = 30521, - [SMALL_STATE(807)] = 30535, - [SMALL_STATE(808)] = 30551, - [SMALL_STATE(809)] = 30561, - [SMALL_STATE(810)] = 30574, - [SMALL_STATE(811)] = 30587, - [SMALL_STATE(812)] = 30600, - [SMALL_STATE(813)] = 30611, - [SMALL_STATE(814)] = 30624, - [SMALL_STATE(815)] = 30635, - [SMALL_STATE(816)] = 30646, - [SMALL_STATE(817)] = 30657, - [SMALL_STATE(818)] = 30670, - [SMALL_STATE(819)] = 30683, - [SMALL_STATE(820)] = 30696, - [SMALL_STATE(821)] = 30709, - [SMALL_STATE(822)] = 30722, - [SMALL_STATE(823)] = 30735, - [SMALL_STATE(824)] = 30748, - [SMALL_STATE(825)] = 30761, - [SMALL_STATE(826)] = 30774, - [SMALL_STATE(827)] = 30787, - [SMALL_STATE(828)] = 30800, - [SMALL_STATE(829)] = 30813, - [SMALL_STATE(830)] = 30826, - [SMALL_STATE(831)] = 30839, - [SMALL_STATE(832)] = 30852, - [SMALL_STATE(833)] = 30861, - [SMALL_STATE(834)] = 30874, - [SMALL_STATE(835)] = 30883, - [SMALL_STATE(836)] = 30894, - [SMALL_STATE(837)] = 30907, - [SMALL_STATE(838)] = 30920, - [SMALL_STATE(839)] = 30933, - [SMALL_STATE(840)] = 30942, - [SMALL_STATE(841)] = 30953, - [SMALL_STATE(842)] = 30962, - [SMALL_STATE(843)] = 30973, - [SMALL_STATE(844)] = 30986, - [SMALL_STATE(845)] = 30999, - [SMALL_STATE(846)] = 31012, - [SMALL_STATE(847)] = 31025, - [SMALL_STATE(848)] = 31036, - [SMALL_STATE(849)] = 31049, - [SMALL_STATE(850)] = 31058, - [SMALL_STATE(851)] = 31067, - [SMALL_STATE(852)] = 31080, - [SMALL_STATE(853)] = 31093, - [SMALL_STATE(854)] = 31106, - [SMALL_STATE(855)] = 31119, - [SMALL_STATE(856)] = 31132, - [SMALL_STATE(857)] = 31145, - [SMALL_STATE(858)] = 31156, - [SMALL_STATE(859)] = 31165, - [SMALL_STATE(860)] = 31174, - [SMALL_STATE(861)] = 31187, - [SMALL_STATE(862)] = 31200, - [SMALL_STATE(863)] = 31213, - [SMALL_STATE(864)] = 31226, - [SMALL_STATE(865)] = 31239, - [SMALL_STATE(866)] = 31252, - [SMALL_STATE(867)] = 31265, - [SMALL_STATE(868)] = 31274, - [SMALL_STATE(869)] = 31283, - [SMALL_STATE(870)] = 31296, - [SMALL_STATE(871)] = 31309, - [SMALL_STATE(872)] = 31322, - [SMALL_STATE(873)] = 31331, - [SMALL_STATE(874)] = 31344, - [SMALL_STATE(875)] = 31353, - [SMALL_STATE(876)] = 31362, - [SMALL_STATE(877)] = 31375, - [SMALL_STATE(878)] = 31384, - [SMALL_STATE(879)] = 31393, - [SMALL_STATE(880)] = 31406, - [SMALL_STATE(881)] = 31415, - [SMALL_STATE(882)] = 31428, - [SMALL_STATE(883)] = 31437, - [SMALL_STATE(884)] = 31450, - [SMALL_STATE(885)] = 31463, - [SMALL_STATE(886)] = 31476, - [SMALL_STATE(887)] = 31485, - [SMALL_STATE(888)] = 31494, - [SMALL_STATE(889)] = 31507, - [SMALL_STATE(890)] = 31520, - [SMALL_STATE(891)] = 31533, - [SMALL_STATE(892)] = 31543, - [SMALL_STATE(893)] = 31553, - [SMALL_STATE(894)] = 31563, - [SMALL_STATE(895)] = 31573, - [SMALL_STATE(896)] = 31581, - [SMALL_STATE(897)] = 31591, - [SMALL_STATE(898)] = 31601, - [SMALL_STATE(899)] = 31611, - [SMALL_STATE(900)] = 31621, - [SMALL_STATE(901)] = 31631, - [SMALL_STATE(902)] = 31641, - [SMALL_STATE(903)] = 31651, - [SMALL_STATE(904)] = 31661, - [SMALL_STATE(905)] = 31671, - [SMALL_STATE(906)] = 31681, - [SMALL_STATE(907)] = 31691, - [SMALL_STATE(908)] = 31701, - [SMALL_STATE(909)] = 31709, - [SMALL_STATE(910)] = 31719, - [SMALL_STATE(911)] = 31729, - [SMALL_STATE(912)] = 31739, - [SMALL_STATE(913)] = 31747, - [SMALL_STATE(914)] = 31757, - [SMALL_STATE(915)] = 31767, - [SMALL_STATE(916)] = 31777, - [SMALL_STATE(917)] = 31787, - [SMALL_STATE(918)] = 31797, - [SMALL_STATE(919)] = 31807, - [SMALL_STATE(920)] = 31815, - [SMALL_STATE(921)] = 31825, - [SMALL_STATE(922)] = 31833, - [SMALL_STATE(923)] = 31843, - [SMALL_STATE(924)] = 31851, - [SMALL_STATE(925)] = 31859, - [SMALL_STATE(926)] = 31869, - [SMALL_STATE(927)] = 31879, - [SMALL_STATE(928)] = 31889, - [SMALL_STATE(929)] = 31899, - [SMALL_STATE(930)] = 31909, - [SMALL_STATE(931)] = 31917, - [SMALL_STATE(932)] = 31927, - [SMALL_STATE(933)] = 31937, - [SMALL_STATE(934)] = 31947, - [SMALL_STATE(935)] = 31957, - [SMALL_STATE(936)] = 31965, - [SMALL_STATE(937)] = 31975, - [SMALL_STATE(938)] = 31983, - [SMALL_STATE(939)] = 31993, - [SMALL_STATE(940)] = 32003, - [SMALL_STATE(941)] = 32011, - [SMALL_STATE(942)] = 32019, - [SMALL_STATE(943)] = 32029, - [SMALL_STATE(944)] = 32037, - [SMALL_STATE(945)] = 32047, - [SMALL_STATE(946)] = 32055, - [SMALL_STATE(947)] = 32065, - [SMALL_STATE(948)] = 32075, - [SMALL_STATE(949)] = 32085, - [SMALL_STATE(950)] = 32095, - [SMALL_STATE(951)] = 32103, - [SMALL_STATE(952)] = 32113, - [SMALL_STATE(953)] = 32123, - [SMALL_STATE(954)] = 32131, - [SMALL_STATE(955)] = 32139, - [SMALL_STATE(956)] = 32149, - [SMALL_STATE(957)] = 32157, - [SMALL_STATE(958)] = 32167, - [SMALL_STATE(959)] = 32177, - [SMALL_STATE(960)] = 32187, - [SMALL_STATE(961)] = 32195, - [SMALL_STATE(962)] = 32205, - [SMALL_STATE(963)] = 32215, - [SMALL_STATE(964)] = 32223, - [SMALL_STATE(965)] = 32233, - [SMALL_STATE(966)] = 32243, - [SMALL_STATE(967)] = 32253, - [SMALL_STATE(968)] = 32263, - [SMALL_STATE(969)] = 32273, - [SMALL_STATE(970)] = 32283, - [SMALL_STATE(971)] = 32293, - [SMALL_STATE(972)] = 32303, - [SMALL_STATE(973)] = 32313, - [SMALL_STATE(974)] = 32323, - [SMALL_STATE(975)] = 32333, - [SMALL_STATE(976)] = 32341, - [SMALL_STATE(977)] = 32351, - [SMALL_STATE(978)] = 32361, - [SMALL_STATE(979)] = 32371, - [SMALL_STATE(980)] = 32381, - [SMALL_STATE(981)] = 32389, - [SMALL_STATE(982)] = 32399, - [SMALL_STATE(983)] = 32409, - [SMALL_STATE(984)] = 32419, - [SMALL_STATE(985)] = 32429, - [SMALL_STATE(986)] = 32437, - [SMALL_STATE(987)] = 32447, - [SMALL_STATE(988)] = 32457, - [SMALL_STATE(989)] = 32467, - [SMALL_STATE(990)] = 32477, - [SMALL_STATE(991)] = 32487, - [SMALL_STATE(992)] = 32497, - [SMALL_STATE(993)] = 32507, - [SMALL_STATE(994)] = 32517, - [SMALL_STATE(995)] = 32527, - [SMALL_STATE(996)] = 32537, - [SMALL_STATE(997)] = 32547, - [SMALL_STATE(998)] = 32557, - [SMALL_STATE(999)] = 32565, - [SMALL_STATE(1000)] = 32575, - [SMALL_STATE(1001)] = 32585, - [SMALL_STATE(1002)] = 32595, - [SMALL_STATE(1003)] = 32605, - [SMALL_STATE(1004)] = 32615, - [SMALL_STATE(1005)] = 32625, - [SMALL_STATE(1006)] = 32633, - [SMALL_STATE(1007)] = 32643, - [SMALL_STATE(1008)] = 32651, - [SMALL_STATE(1009)] = 32661, - [SMALL_STATE(1010)] = 32669, - [SMALL_STATE(1011)] = 32679, - [SMALL_STATE(1012)] = 32687, - [SMALL_STATE(1013)] = 32697, - [SMALL_STATE(1014)] = 32707, - [SMALL_STATE(1015)] = 32717, - [SMALL_STATE(1016)] = 32727, - [SMALL_STATE(1017)] = 32737, - [SMALL_STATE(1018)] = 32747, - [SMALL_STATE(1019)] = 32757, - [SMALL_STATE(1020)] = 32767, - [SMALL_STATE(1021)] = 32775, - [SMALL_STATE(1022)] = 32785, - [SMALL_STATE(1023)] = 32795, - [SMALL_STATE(1024)] = 32805, - [SMALL_STATE(1025)] = 32813, - [SMALL_STATE(1026)] = 32823, - [SMALL_STATE(1027)] = 32833, - [SMALL_STATE(1028)] = 32843, - [SMALL_STATE(1029)] = 32851, - [SMALL_STATE(1030)] = 32861, - [SMALL_STATE(1031)] = 32871, - [SMALL_STATE(1032)] = 32881, - [SMALL_STATE(1033)] = 32889, - [SMALL_STATE(1034)] = 32897, - [SMALL_STATE(1035)] = 32907, - [SMALL_STATE(1036)] = 32917, - [SMALL_STATE(1037)] = 32927, - [SMALL_STATE(1038)] = 32937, - [SMALL_STATE(1039)] = 32947, - [SMALL_STATE(1040)] = 32957, - [SMALL_STATE(1041)] = 32967, - [SMALL_STATE(1042)] = 32975, - [SMALL_STATE(1043)] = 32983, - [SMALL_STATE(1044)] = 32991, - [SMALL_STATE(1045)] = 33001, - [SMALL_STATE(1046)] = 33008, - [SMALL_STATE(1047)] = 33015, - [SMALL_STATE(1048)] = 33022, - [SMALL_STATE(1049)] = 33029, - [SMALL_STATE(1050)] = 33036, - [SMALL_STATE(1051)] = 33043, - [SMALL_STATE(1052)] = 33050, - [SMALL_STATE(1053)] = 33057, - [SMALL_STATE(1054)] = 33064, - [SMALL_STATE(1055)] = 33071, - [SMALL_STATE(1056)] = 33078, - [SMALL_STATE(1057)] = 33085, - [SMALL_STATE(1058)] = 33092, - [SMALL_STATE(1059)] = 33099, - [SMALL_STATE(1060)] = 33106, - [SMALL_STATE(1061)] = 33113, - [SMALL_STATE(1062)] = 33120, - [SMALL_STATE(1063)] = 33127, - [SMALL_STATE(1064)] = 33134, - [SMALL_STATE(1065)] = 33141, - [SMALL_STATE(1066)] = 33148, - [SMALL_STATE(1067)] = 33155, - [SMALL_STATE(1068)] = 33162, - [SMALL_STATE(1069)] = 33169, - [SMALL_STATE(1070)] = 33176, - [SMALL_STATE(1071)] = 33183, - [SMALL_STATE(1072)] = 33190, - [SMALL_STATE(1073)] = 33197, - [SMALL_STATE(1074)] = 33204, - [SMALL_STATE(1075)] = 33211, - [SMALL_STATE(1076)] = 33218, - [SMALL_STATE(1077)] = 33225, - [SMALL_STATE(1078)] = 33232, - [SMALL_STATE(1079)] = 33239, - [SMALL_STATE(1080)] = 33246, - [SMALL_STATE(1081)] = 33253, - [SMALL_STATE(1082)] = 33260, - [SMALL_STATE(1083)] = 33267, - [SMALL_STATE(1084)] = 33274, - [SMALL_STATE(1085)] = 33281, - [SMALL_STATE(1086)] = 33288, - [SMALL_STATE(1087)] = 33295, - [SMALL_STATE(1088)] = 33302, - [SMALL_STATE(1089)] = 33309, - [SMALL_STATE(1090)] = 33316, - [SMALL_STATE(1091)] = 33323, - [SMALL_STATE(1092)] = 33330, - [SMALL_STATE(1093)] = 33337, - [SMALL_STATE(1094)] = 33344, - [SMALL_STATE(1095)] = 33351, - [SMALL_STATE(1096)] = 33358, - [SMALL_STATE(1097)] = 33365, - [SMALL_STATE(1098)] = 33372, - [SMALL_STATE(1099)] = 33379, - [SMALL_STATE(1100)] = 33386, - [SMALL_STATE(1101)] = 33393, - [SMALL_STATE(1102)] = 33400, - [SMALL_STATE(1103)] = 33407, - [SMALL_STATE(1104)] = 33414, - [SMALL_STATE(1105)] = 33421, - [SMALL_STATE(1106)] = 33428, - [SMALL_STATE(1107)] = 33435, - [SMALL_STATE(1108)] = 33442, - [SMALL_STATE(1109)] = 33449, - [SMALL_STATE(1110)] = 33456, - [SMALL_STATE(1111)] = 33463, - [SMALL_STATE(1112)] = 33470, - [SMALL_STATE(1113)] = 33477, - [SMALL_STATE(1114)] = 33484, - [SMALL_STATE(1115)] = 33491, - [SMALL_STATE(1116)] = 33498, - [SMALL_STATE(1117)] = 33505, - [SMALL_STATE(1118)] = 33512, - [SMALL_STATE(1119)] = 33519, - [SMALL_STATE(1120)] = 33526, - [SMALL_STATE(1121)] = 33533, - [SMALL_STATE(1122)] = 33540, - [SMALL_STATE(1123)] = 33547, - [SMALL_STATE(1124)] = 33554, - [SMALL_STATE(1125)] = 33561, - [SMALL_STATE(1126)] = 33568, - [SMALL_STATE(1127)] = 33575, - [SMALL_STATE(1128)] = 33582, - [SMALL_STATE(1129)] = 33589, - [SMALL_STATE(1130)] = 33596, - [SMALL_STATE(1131)] = 33603, - [SMALL_STATE(1132)] = 33610, - [SMALL_STATE(1133)] = 33617, - [SMALL_STATE(1134)] = 33624, - [SMALL_STATE(1135)] = 33631, + [SMALL_STATE(193)] = 0, + [SMALL_STATE(194)] = 71, + [SMALL_STATE(195)] = 164, + [SMALL_STATE(196)] = 243, + [SMALL_STATE(197)] = 314, + [SMALL_STATE(198)] = 406, + [SMALL_STATE(199)] = 479, + [SMALL_STATE(200)] = 572, + [SMALL_STATE(201)] = 663, + [SMALL_STATE(202)] = 758, + [SMALL_STATE(203)] = 851, + [SMALL_STATE(204)] = 919, + [SMALL_STATE(205)] = 989, + [SMALL_STATE(206)] = 1057, + [SMALL_STATE(207)] = 1153, + [SMALL_STATE(208)] = 1223, + [SMALL_STATE(209)] = 1293, + [SMALL_STATE(210)] = 1361, + [SMALL_STATE(211)] = 1429, + [SMALL_STATE(212)] = 1499, + [SMALL_STATE(213)] = 1569, + [SMALL_STATE(214)] = 1637, + [SMALL_STATE(215)] = 1709, + [SMALL_STATE(216)] = 1779, + [SMALL_STATE(217)] = 1849, + [SMALL_STATE(218)] = 1917, + [SMALL_STATE(219)] = 1987, + [SMALL_STATE(220)] = 2055, + [SMALL_STATE(221)] = 2123, + [SMALL_STATE(222)] = 2193, + [SMALL_STATE(223)] = 2263, + [SMALL_STATE(224)] = 2331, + [SMALL_STATE(225)] = 2399, + [SMALL_STATE(226)] = 2466, + [SMALL_STATE(227)] = 2533, + [SMALL_STATE(228)] = 2600, + [SMALL_STATE(229)] = 2667, + [SMALL_STATE(230)] = 2734, + [SMALL_STATE(231)] = 2801, + [SMALL_STATE(232)] = 2868, + [SMALL_STATE(233)] = 2935, + [SMALL_STATE(234)] = 3002, + [SMALL_STATE(235)] = 3069, + [SMALL_STATE(236)] = 3136, + [SMALL_STATE(237)] = 3203, + [SMALL_STATE(238)] = 3270, + [SMALL_STATE(239)] = 3337, + [SMALL_STATE(240)] = 3404, + [SMALL_STATE(241)] = 3471, + [SMALL_STATE(242)] = 3538, + [SMALL_STATE(243)] = 3605, + [SMALL_STATE(244)] = 3672, + [SMALL_STATE(245)] = 3739, + [SMALL_STATE(246)] = 3806, + [SMALL_STATE(247)] = 3873, + [SMALL_STATE(248)] = 3940, + [SMALL_STATE(249)] = 4007, + [SMALL_STATE(250)] = 4074, + [SMALL_STATE(251)] = 4141, + [SMALL_STATE(252)] = 4208, + [SMALL_STATE(253)] = 4275, + [SMALL_STATE(254)] = 4342, + [SMALL_STATE(255)] = 4409, + [SMALL_STATE(256)] = 4476, + [SMALL_STATE(257)] = 4543, + [SMALL_STATE(258)] = 4610, + [SMALL_STATE(259)] = 4677, + [SMALL_STATE(260)] = 4744, + [SMALL_STATE(261)] = 4811, + [SMALL_STATE(262)] = 4878, + [SMALL_STATE(263)] = 4945, + [SMALL_STATE(264)] = 5012, + [SMALL_STATE(265)] = 5079, + [SMALL_STATE(266)] = 5146, + [SMALL_STATE(267)] = 5213, + [SMALL_STATE(268)] = 5280, + [SMALL_STATE(269)] = 5347, + [SMALL_STATE(270)] = 5414, + [SMALL_STATE(271)] = 5506, + [SMALL_STATE(272)] = 5598, + [SMALL_STATE(273)] = 5679, + [SMALL_STATE(274)] = 5760, + [SMALL_STATE(275)] = 5838, + [SMALL_STATE(276)] = 5902, + [SMALL_STATE(277)] = 5966, + [SMALL_STATE(278)] = 6030, + [SMALL_STATE(279)] = 6094, + [SMALL_STATE(280)] = 6178, + [SMALL_STATE(281)] = 6254, + [SMALL_STATE(282)] = 6330, + [SMALL_STATE(283)] = 6394, + [SMALL_STATE(284)] = 6458, + [SMALL_STATE(285)] = 6542, + [SMALL_STATE(286)] = 6606, + [SMALL_STATE(287)] = 6685, + [SMALL_STATE(288)] = 6764, + [SMALL_STATE(289)] = 6837, + [SMALL_STATE(290)] = 6920, + [SMALL_STATE(291)] = 6982, + [SMALL_STATE(292)] = 7044, + [SMALL_STATE(293)] = 7106, + [SMALL_STATE(294)] = 7168, + [SMALL_STATE(295)] = 7230, + [SMALL_STATE(296)] = 7308, + [SMALL_STATE(297)] = 7386, + [SMALL_STATE(298)] = 7462, + [SMALL_STATE(299)] = 7524, + [SMALL_STATE(300)] = 7600, + [SMALL_STATE(301)] = 7674, + [SMALL_STATE(302)] = 7750, + [SMALL_STATE(303)] = 7826, + [SMALL_STATE(304)] = 7888, + [SMALL_STATE(305)] = 7950, + [SMALL_STATE(306)] = 8012, + [SMALL_STATE(307)] = 8074, + [SMALL_STATE(308)] = 8150, + [SMALL_STATE(309)] = 8212, + [SMALL_STATE(310)] = 8274, + [SMALL_STATE(311)] = 8348, + [SMALL_STATE(312)] = 8410, + [SMALL_STATE(313)] = 8472, + [SMALL_STATE(314)] = 8534, + [SMALL_STATE(315)] = 8596, + [SMALL_STATE(316)] = 8671, + [SMALL_STATE(317)] = 8750, + [SMALL_STATE(318)] = 8829, + [SMALL_STATE(319)] = 8900, + [SMALL_STATE(320)] = 8960, + [SMALL_STATE(321)] = 9034, + [SMALL_STATE(322)] = 9109, + [SMALL_STATE(323)] = 9184, + [SMALL_STATE(324)] = 9259, + [SMALL_STATE(325)] = 9334, + [SMALL_STATE(326)] = 9406, + [SMALL_STATE(327)] = 9478, + [SMALL_STATE(328)] = 9536, + [SMALL_STATE(329)] = 9594, + [SMALL_STATE(330)] = 9652, + [SMALL_STATE(331)] = 9720, + [SMALL_STATE(332)] = 9805, + [SMALL_STATE(333)] = 9890, + [SMALL_STATE(334)] = 9953, + [SMALL_STATE(335)] = 10016, + [SMALL_STATE(336)] = 10079, + [SMALL_STATE(337)] = 10164, + [SMALL_STATE(338)] = 10225, + [SMALL_STATE(339)] = 10310, + [SMALL_STATE(340)] = 10395, + [SMALL_STATE(341)] = 10444, + [SMALL_STATE(342)] = 10505, + [SMALL_STATE(343)] = 10554, + [SMALL_STATE(344)] = 10603, + [SMALL_STATE(345)] = 10688, + [SMALL_STATE(346)] = 10773, + [SMALL_STATE(347)] = 10822, + [SMALL_STATE(348)] = 10907, + [SMALL_STATE(349)] = 10956, + [SMALL_STATE(350)] = 11041, + [SMALL_STATE(351)] = 11090, + [SMALL_STATE(352)] = 11139, + [SMALL_STATE(353)] = 11224, + [SMALL_STATE(354)] = 11309, + [SMALL_STATE(355)] = 11370, + [SMALL_STATE(356)] = 11455, + [SMALL_STATE(357)] = 11520, + [SMALL_STATE(358)] = 11569, + [SMALL_STATE(359)] = 11640, + [SMALL_STATE(360)] = 11715, + [SMALL_STATE(361)] = 11794, + [SMALL_STATE(362)] = 11863, + [SMALL_STATE(363)] = 11926, + [SMALL_STATE(364)] = 11979, + [SMALL_STATE(365)] = 12062, + [SMALL_STATE(366)] = 12147, + [SMALL_STATE(367)] = 12232, + [SMALL_STATE(368)] = 12317, + [SMALL_STATE(369)] = 12367, + [SMALL_STATE(370)] = 12453, + [SMALL_STATE(371)] = 12503, + [SMALL_STATE(372)] = 12553, + [SMALL_STATE(373)] = 12611, + [SMALL_STATE(374)] = 12667, + [SMALL_STATE(375)] = 12723, + [SMALL_STATE(376)] = 12773, + [SMALL_STATE(377)] = 12820, + [SMALL_STATE(378)] = 12867, + [SMALL_STATE(379)] = 12914, + [SMALL_STATE(380)] = 12961, + [SMALL_STATE(381)] = 13044, + [SMALL_STATE(382)] = 13091, + [SMALL_STATE(383)] = 13138, + [SMALL_STATE(384)] = 13185, + [SMALL_STATE(385)] = 13232, + [SMALL_STATE(386)] = 13285, + [SMALL_STATE(387)] = 13332, + [SMALL_STATE(388)] = 13383, + [SMALL_STATE(389)] = 13430, + [SMALL_STATE(390)] = 13477, + [SMALL_STATE(391)] = 13524, + [SMALL_STATE(392)] = 13571, + [SMALL_STATE(393)] = 13618, + [SMALL_STATE(394)] = 13665, + [SMALL_STATE(395)] = 13748, + [SMALL_STATE(396)] = 13795, + [SMALL_STATE(397)] = 13842, + [SMALL_STATE(398)] = 13901, + [SMALL_STATE(399)] = 13964, + [SMALL_STATE(400)] = 14027, + [SMALL_STATE(401)] = 14074, + [SMALL_STATE(402)] = 14157, + [SMALL_STATE(403)] = 14204, + [SMALL_STATE(404)] = 14287, + [SMALL_STATE(405)] = 14334, + [SMALL_STATE(406)] = 14381, + [SMALL_STATE(407)] = 14444, + [SMALL_STATE(408)] = 14491, + [SMALL_STATE(409)] = 14574, + [SMALL_STATE(410)] = 14621, + [SMALL_STATE(411)] = 14668, + [SMALL_STATE(412)] = 14751, + [SMALL_STATE(413)] = 14798, + [SMALL_STATE(414)] = 14867, + [SMALL_STATE(415)] = 14950, + [SMALL_STATE(416)] = 15023, + [SMALL_STATE(417)] = 15100, + [SMALL_STATE(418)] = 15167, + [SMALL_STATE(419)] = 15228, + [SMALL_STATE(420)] = 15309, + [SMALL_STATE(421)] = 15392, + [SMALL_STATE(422)] = 15475, + [SMALL_STATE(423)] = 15522, + [SMALL_STATE(424)] = 15569, + [SMALL_STATE(425)] = 15616, + [SMALL_STATE(426)] = 15663, + [SMALL_STATE(427)] = 15710, + [SMALL_STATE(428)] = 15757, + [SMALL_STATE(429)] = 15840, + [SMALL_STATE(430)] = 15887, + [SMALL_STATE(431)] = 15970, + [SMALL_STATE(432)] = 16017, + [SMALL_STATE(433)] = 16064, + [SMALL_STATE(434)] = 16111, + [SMALL_STATE(435)] = 16158, + [SMALL_STATE(436)] = 16205, + [SMALL_STATE(437)] = 16252, + [SMALL_STATE(438)] = 16299, + [SMALL_STATE(439)] = 16346, + [SMALL_STATE(440)] = 16429, + [SMALL_STATE(441)] = 16476, + [SMALL_STATE(442)] = 16523, + [SMALL_STATE(443)] = 16570, + [SMALL_STATE(444)] = 16629, + [SMALL_STATE(445)] = 16690, + [SMALL_STATE(446)] = 16751, + [SMALL_STATE(447)] = 16812, + [SMALL_STATE(448)] = 16871, + [SMALL_STATE(449)] = 16918, + [SMALL_STATE(450)] = 17001, + [SMALL_STATE(451)] = 17048, + [SMALL_STATE(452)] = 17095, + [SMALL_STATE(453)] = 17142, + [SMALL_STATE(454)] = 17189, + [SMALL_STATE(455)] = 17272, + [SMALL_STATE(456)] = 17355, + [SMALL_STATE(457)] = 17442, + [SMALL_STATE(458)] = 17489, + [SMALL_STATE(459)] = 17536, + [SMALL_STATE(460)] = 17623, + [SMALL_STATE(461)] = 17706, + [SMALL_STATE(462)] = 17753, + [SMALL_STATE(463)] = 17840, + [SMALL_STATE(464)] = 17887, + [SMALL_STATE(465)] = 17974, + [SMALL_STATE(466)] = 18021, + [SMALL_STATE(467)] = 18068, + [SMALL_STATE(468)] = 18115, + [SMALL_STATE(469)] = 18162, + [SMALL_STATE(470)] = 18212, + [SMALL_STATE(471)] = 18260, + [SMALL_STATE(472)] = 18310, + [SMALL_STATE(473)] = 18360, + [SMALL_STATE(474)] = 18442, + [SMALL_STATE(475)] = 18492, + [SMALL_STATE(476)] = 18548, + [SMALL_STATE(477)] = 18630, + [SMALL_STATE(478)] = 18716, + [SMALL_STATE(479)] = 18798, + [SMALL_STATE(480)] = 18880, + [SMALL_STATE(481)] = 18964, + [SMALL_STATE(482)] = 19048, + [SMALL_STATE(483)] = 19098, + [SMALL_STATE(484)] = 19182, + [SMALL_STATE(485)] = 19232, + [SMALL_STATE(486)] = 19318, + [SMALL_STATE(487)] = 19368, + [SMALL_STATE(488)] = 19454, + [SMALL_STATE(489)] = 19504, + [SMALL_STATE(490)] = 19588, + [SMALL_STATE(491)] = 19638, + [SMALL_STATE(492)] = 19696, + [SMALL_STATE(493)] = 19754, + [SMALL_STATE(494)] = 19804, + [SMALL_STATE(495)] = 19886, + [SMALL_STATE(496)] = 19968, + [SMALL_STATE(497)] = 20050, + [SMALL_STATE(498)] = 20136, + [SMALL_STATE(499)] = 20222, + [SMALL_STATE(500)] = 20308, + [SMALL_STATE(501)] = 20390, + [SMALL_STATE(502)] = 20438, + [SMALL_STATE(503)] = 20492, + [SMALL_STATE(504)] = 20546, + [SMALL_STATE(505)] = 20591, + [SMALL_STATE(506)] = 20636, + [SMALL_STATE(507)] = 20681, + [SMALL_STATE(508)] = 20726, + [SMALL_STATE(509)] = 20771, + [SMALL_STATE(510)] = 20854, + [SMALL_STATE(511)] = 20899, + [SMALL_STATE(512)] = 20944, + [SMALL_STATE(513)] = 20989, + [SMALL_STATE(514)] = 21072, + [SMALL_STATE(515)] = 21117, + [SMALL_STATE(516)] = 21162, + [SMALL_STATE(517)] = 21207, + [SMALL_STATE(518)] = 21266, + [SMALL_STATE(519)] = 21311, + [SMALL_STATE(520)] = 21356, + [SMALL_STATE(521)] = 21401, + [SMALL_STATE(522)] = 21460, + [SMALL_STATE(523)] = 21505, + [SMALL_STATE(524)] = 21550, + [SMALL_STATE(525)] = 21595, + [SMALL_STATE(526)] = 21640, + [SMALL_STATE(527)] = 21723, + [SMALL_STATE(528)] = 21804, + [SMALL_STATE(529)] = 21857, + [SMALL_STATE(530)] = 21940, + [SMALL_STATE(531)] = 21985, + [SMALL_STATE(532)] = 22038, + [SMALL_STATE(533)] = 22121, + [SMALL_STATE(534)] = 22202, + [SMALL_STATE(535)] = 22283, + [SMALL_STATE(536)] = 22328, + [SMALL_STATE(537)] = 22411, + [SMALL_STATE(538)] = 22456, + [SMALL_STATE(539)] = 22539, + [SMALL_STATE(540)] = 22622, + [SMALL_STATE(541)] = 22705, + [SMALL_STATE(542)] = 22760, + [SMALL_STATE(543)] = 22805, + [SMALL_STATE(544)] = 22850, + [SMALL_STATE(545)] = 22931, + [SMALL_STATE(546)] = 22976, + [SMALL_STATE(547)] = 23021, + [SMALL_STATE(548)] = 23066, + [SMALL_STATE(549)] = 23111, + [SMALL_STATE(550)] = 23194, + [SMALL_STATE(551)] = 23239, + [SMALL_STATE(552)] = 23284, + [SMALL_STATE(553)] = 23367, + [SMALL_STATE(554)] = 23412, + [SMALL_STATE(555)] = 23457, + [SMALL_STATE(556)] = 23502, + [SMALL_STATE(557)] = 23547, + [SMALL_STATE(558)] = 23592, + [SMALL_STATE(559)] = 23637, + [SMALL_STATE(560)] = 23682, + [SMALL_STATE(561)] = 23765, + [SMALL_STATE(562)] = 23848, + [SMALL_STATE(563)] = 23893, + [SMALL_STATE(564)] = 23976, + [SMALL_STATE(565)] = 24059, + [SMALL_STATE(566)] = 24142, + [SMALL_STATE(567)] = 24225, + [SMALL_STATE(568)] = 24308, + [SMALL_STATE(569)] = 24353, + [SMALL_STATE(570)] = 24436, + [SMALL_STATE(571)] = 24519, + [SMALL_STATE(572)] = 24602, + [SMALL_STATE(573)] = 24685, + [SMALL_STATE(574)] = 24730, + [SMALL_STATE(575)] = 24813, + [SMALL_STATE(576)] = 24896, + [SMALL_STATE(577)] = 24977, + [SMALL_STATE(578)] = 25022, + [SMALL_STATE(579)] = 25105, + [SMALL_STATE(580)] = 25150, + [SMALL_STATE(581)] = 25195, + [SMALL_STATE(582)] = 25246, + [SMALL_STATE(583)] = 25327, + [SMALL_STATE(584)] = 25410, + [SMALL_STATE(585)] = 25455, + [SMALL_STATE(586)] = 25536, + [SMALL_STATE(587)] = 25616, + [SMALL_STATE(588)] = 25696, + [SMALL_STATE(589)] = 25776, + [SMALL_STATE(590)] = 25830, + [SMALL_STATE(591)] = 25910, + [SMALL_STATE(592)] = 25990, + [SMALL_STATE(593)] = 26044, + [SMALL_STATE(594)] = 26099, + [SMALL_STATE(595)] = 26154, + [SMALL_STATE(596)] = 26209, + [SMALL_STATE(597)] = 26286, + [SMALL_STATE(598)] = 26341, + [SMALL_STATE(599)] = 26418, + [SMALL_STATE(600)] = 26491, + [SMALL_STATE(601)] = 26564, + [SMALL_STATE(602)] = 26632, + [SMALL_STATE(603)] = 26690, + [SMALL_STATE(604)] = 26748, + [SMALL_STATE(605)] = 26806, + [SMALL_STATE(606)] = 26864, + [SMALL_STATE(607)] = 26922, + [SMALL_STATE(608)] = 26980, + [SMALL_STATE(609)] = 27038, + [SMALL_STATE(610)] = 27089, + [SMALL_STATE(611)] = 27138, + [SMALL_STATE(612)] = 27189, + [SMALL_STATE(613)] = 27240, + [SMALL_STATE(614)] = 27291, + [SMALL_STATE(615)] = 27340, + [SMALL_STATE(616)] = 27384, + [SMALL_STATE(617)] = 27430, + [SMALL_STATE(618)] = 27482, + [SMALL_STATE(619)] = 27526, + [SMALL_STATE(620)] = 27570, + [SMALL_STATE(621)] = 27611, + [SMALL_STATE(622)] = 27650, + [SMALL_STATE(623)] = 27689, + [SMALL_STATE(624)] = 27728, + [SMALL_STATE(625)] = 27774, + [SMALL_STATE(626)] = 27808, + [SMALL_STATE(627)] = 27842, + [SMALL_STATE(628)] = 27884, + [SMALL_STATE(629)] = 27914, + [SMALL_STATE(630)] = 27956, + [SMALL_STATE(631)] = 27985, + [SMALL_STATE(632)] = 28006, + [SMALL_STATE(633)] = 28029, + [SMALL_STATE(634)] = 28050, + [SMALL_STATE(635)] = 28084, + [SMALL_STATE(636)] = 28106, + [SMALL_STATE(637)] = 28142, + [SMALL_STATE(638)] = 28180, + [SMALL_STATE(639)] = 28202, + [SMALL_STATE(640)] = 28224, + [SMALL_STATE(641)] = 28246, + [SMALL_STATE(642)] = 28268, + [SMALL_STATE(643)] = 28304, + [SMALL_STATE(644)] = 28335, + [SMALL_STATE(645)] = 28370, + [SMALL_STATE(646)] = 28393, + [SMALL_STATE(647)] = 28428, + [SMALL_STATE(648)] = 28459, + [SMALL_STATE(649)] = 28494, + [SMALL_STATE(650)] = 28529, + [SMALL_STATE(651)] = 28564, + [SMALL_STATE(652)] = 28585, + [SMALL_STATE(653)] = 28616, + [SMALL_STATE(654)] = 28651, + [SMALL_STATE(655)] = 28686, + [SMALL_STATE(656)] = 28707, + [SMALL_STATE(657)] = 28728, + [SMALL_STATE(658)] = 28763, + [SMALL_STATE(659)] = 28798, + [SMALL_STATE(660)] = 28826, + [SMALL_STATE(661)] = 28846, + [SMALL_STATE(662)] = 28874, + [SMALL_STATE(663)] = 28902, + [SMALL_STATE(664)] = 28934, + [SMALL_STATE(665)] = 28962, + [SMALL_STATE(666)] = 28997, + [SMALL_STATE(667)] = 29032, + [SMALL_STATE(668)] = 29067, + [SMALL_STATE(669)] = 29102, + [SMALL_STATE(670)] = 29128, + [SMALL_STATE(671)] = 29154, + [SMALL_STATE(672)] = 29186, + [SMALL_STATE(673)] = 29218, + [SMALL_STATE(674)] = 29244, + [SMALL_STATE(675)] = 29276, + [SMALL_STATE(676)] = 29308, + [SMALL_STATE(677)] = 29334, + [SMALL_STATE(678)] = 29360, + [SMALL_STATE(679)] = 29386, + [SMALL_STATE(680)] = 29418, + [SMALL_STATE(681)] = 29444, + [SMALL_STATE(682)] = 29476, + [SMALL_STATE(683)] = 29502, + [SMALL_STATE(684)] = 29534, + [SMALL_STATE(685)] = 29560, + [SMALL_STATE(686)] = 29592, + [SMALL_STATE(687)] = 29618, + [SMALL_STATE(688)] = 29647, + [SMALL_STATE(689)] = 29670, + [SMALL_STATE(690)] = 29699, + [SMALL_STATE(691)] = 29722, + [SMALL_STATE(692)] = 29751, + [SMALL_STATE(693)] = 29774, + [SMALL_STATE(694)] = 29797, + [SMALL_STATE(695)] = 29826, + [SMALL_STATE(696)] = 29855, + [SMALL_STATE(697)] = 29878, + [SMALL_STATE(698)] = 29907, + [SMALL_STATE(699)] = 29936, + [SMALL_STATE(700)] = 29965, + [SMALL_STATE(701)] = 29994, + [SMALL_STATE(702)] = 30017, + [SMALL_STATE(703)] = 30040, + [SMALL_STATE(704)] = 30063, + [SMALL_STATE(705)] = 30086, + [SMALL_STATE(706)] = 30105, + [SMALL_STATE(707)] = 30127, + [SMALL_STATE(708)] = 30149, + [SMALL_STATE(709)] = 30169, + [SMALL_STATE(710)] = 30191, + [SMALL_STATE(711)] = 30213, + [SMALL_STATE(712)] = 30235, + [SMALL_STATE(713)] = 30255, + [SMALL_STATE(714)] = 30275, + [SMALL_STATE(715)] = 30293, + [SMALL_STATE(716)] = 30311, + [SMALL_STATE(717)] = 30331, + [SMALL_STATE(718)] = 30349, + [SMALL_STATE(719)] = 30371, + [SMALL_STATE(720)] = 30393, + [SMALL_STATE(721)] = 30407, + [SMALL_STATE(722)] = 30425, + [SMALL_STATE(723)] = 30447, + [SMALL_STATE(724)] = 30463, + [SMALL_STATE(725)] = 30481, + [SMALL_STATE(726)] = 30503, + [SMALL_STATE(727)] = 30525, + [SMALL_STATE(728)] = 30547, + [SMALL_STATE(729)] = 30569, + [SMALL_STATE(730)] = 30587, + [SMALL_STATE(731)] = 30605, + [SMALL_STATE(732)] = 30619, + [SMALL_STATE(733)] = 30641, + [SMALL_STATE(734)] = 30659, + [SMALL_STATE(735)] = 30681, + [SMALL_STATE(736)] = 30703, + [SMALL_STATE(737)] = 30722, + [SMALL_STATE(738)] = 30735, + [SMALL_STATE(739)] = 30748, + [SMALL_STATE(740)] = 30767, + [SMALL_STATE(741)] = 30780, + [SMALL_STATE(742)] = 30793, + [SMALL_STATE(743)] = 30808, + [SMALL_STATE(744)] = 30827, + [SMALL_STATE(745)] = 30840, + [SMALL_STATE(746)] = 30859, + [SMALL_STATE(747)] = 30878, + [SMALL_STATE(748)] = 30891, + [SMALL_STATE(749)] = 30910, + [SMALL_STATE(750)] = 30923, + [SMALL_STATE(751)] = 30936, + [SMALL_STATE(752)] = 30949, + [SMALL_STATE(753)] = 30968, + [SMALL_STATE(754)] = 30987, + [SMALL_STATE(755)] = 31000, + [SMALL_STATE(756)] = 31019, + [SMALL_STATE(757)] = 31038, + [SMALL_STATE(758)] = 31057, + [SMALL_STATE(759)] = 31072, + [SMALL_STATE(760)] = 31091, + [SMALL_STATE(761)] = 31104, + [SMALL_STATE(762)] = 31123, + [SMALL_STATE(763)] = 31138, + [SMALL_STATE(764)] = 31157, + [SMALL_STATE(765)] = 31172, + [SMALL_STATE(766)] = 31191, + [SMALL_STATE(767)] = 31204, + [SMALL_STATE(768)] = 31217, + [SMALL_STATE(769)] = 31230, + [SMALL_STATE(770)] = 31249, + [SMALL_STATE(771)] = 31265, + [SMALL_STATE(772)] = 31281, + [SMALL_STATE(773)] = 31295, + [SMALL_STATE(774)] = 31311, + [SMALL_STATE(775)] = 31327, + [SMALL_STATE(776)] = 31341, + [SMALL_STATE(777)] = 31355, + [SMALL_STATE(778)] = 31365, + [SMALL_STATE(779)] = 31381, + [SMALL_STATE(780)] = 31397, + [SMALL_STATE(781)] = 31413, + [SMALL_STATE(782)] = 31423, + [SMALL_STATE(783)] = 31439, + [SMALL_STATE(784)] = 31455, + [SMALL_STATE(785)] = 31471, + [SMALL_STATE(786)] = 31487, + [SMALL_STATE(787)] = 31503, + [SMALL_STATE(788)] = 31519, + [SMALL_STATE(789)] = 31535, + [SMALL_STATE(790)] = 31549, + [SMALL_STATE(791)] = 31565, + [SMALL_STATE(792)] = 31581, + [SMALL_STATE(793)] = 31597, + [SMALL_STATE(794)] = 31613, + [SMALL_STATE(795)] = 31629, + [SMALL_STATE(796)] = 31645, + [SMALL_STATE(797)] = 31661, + [SMALL_STATE(798)] = 31677, + [SMALL_STATE(799)] = 31693, + [SMALL_STATE(800)] = 31709, + [SMALL_STATE(801)] = 31725, + [SMALL_STATE(802)] = 31741, + [SMALL_STATE(803)] = 31757, + [SMALL_STATE(804)] = 31773, + [SMALL_STATE(805)] = 31789, + [SMALL_STATE(806)] = 31805, + [SMALL_STATE(807)] = 31815, + [SMALL_STATE(808)] = 31831, + [SMALL_STATE(809)] = 31847, + [SMALL_STATE(810)] = 31863, + [SMALL_STATE(811)] = 31879, + [SMALL_STATE(812)] = 31895, + [SMALL_STATE(813)] = 31911, + [SMALL_STATE(814)] = 31927, + [SMALL_STATE(815)] = 31943, + [SMALL_STATE(816)] = 31959, + [SMALL_STATE(817)] = 31975, + [SMALL_STATE(818)] = 31985, + [SMALL_STATE(819)] = 32001, + [SMALL_STATE(820)] = 32015, + [SMALL_STATE(821)] = 32031, + [SMALL_STATE(822)] = 32047, + [SMALL_STATE(823)] = 32061, + [SMALL_STATE(824)] = 32077, + [SMALL_STATE(825)] = 32093, + [SMALL_STATE(826)] = 32107, + [SMALL_STATE(827)] = 32123, + [SMALL_STATE(828)] = 32139, + [SMALL_STATE(829)] = 32155, + [SMALL_STATE(830)] = 32171, + [SMALL_STATE(831)] = 32187, + [SMALL_STATE(832)] = 32203, + [SMALL_STATE(833)] = 32219, + [SMALL_STATE(834)] = 32233, + [SMALL_STATE(835)] = 32242, + [SMALL_STATE(836)] = 32255, + [SMALL_STATE(837)] = 32266, + [SMALL_STATE(838)] = 32279, + [SMALL_STATE(839)] = 32292, + [SMALL_STATE(840)] = 32305, + [SMALL_STATE(841)] = 32318, + [SMALL_STATE(842)] = 32331, + [SMALL_STATE(843)] = 32344, + [SMALL_STATE(844)] = 32355, + [SMALL_STATE(845)] = 32368, + [SMALL_STATE(846)] = 32379, + [SMALL_STATE(847)] = 32388, + [SMALL_STATE(848)] = 32399, + [SMALL_STATE(849)] = 32408, + [SMALL_STATE(850)] = 32421, + [SMALL_STATE(851)] = 32434, + [SMALL_STATE(852)] = 32447, + [SMALL_STATE(853)] = 32460, + [SMALL_STATE(854)] = 32471, + [SMALL_STATE(855)] = 32480, + [SMALL_STATE(856)] = 32489, + [SMALL_STATE(857)] = 32502, + [SMALL_STATE(858)] = 32515, + [SMALL_STATE(859)] = 32528, + [SMALL_STATE(860)] = 32541, + [SMALL_STATE(861)] = 32554, + [SMALL_STATE(862)] = 32567, + [SMALL_STATE(863)] = 32580, + [SMALL_STATE(864)] = 32589, + [SMALL_STATE(865)] = 32600, + [SMALL_STATE(866)] = 32611, + [SMALL_STATE(867)] = 32624, + [SMALL_STATE(868)] = 32637, + [SMALL_STATE(869)] = 32650, + [SMALL_STATE(870)] = 32663, + [SMALL_STATE(871)] = 32676, + [SMALL_STATE(872)] = 32689, + [SMALL_STATE(873)] = 32702, + [SMALL_STATE(874)] = 32715, + [SMALL_STATE(875)] = 32726, + [SMALL_STATE(876)] = 32739, + [SMALL_STATE(877)] = 32748, + [SMALL_STATE(878)] = 32757, + [SMALL_STATE(879)] = 32766, + [SMALL_STATE(880)] = 32779, + [SMALL_STATE(881)] = 32792, + [SMALL_STATE(882)] = 32805, + [SMALL_STATE(883)] = 32818, + [SMALL_STATE(884)] = 32831, + [SMALL_STATE(885)] = 32844, + [SMALL_STATE(886)] = 32857, + [SMALL_STATE(887)] = 32870, + [SMALL_STATE(888)] = 32879, + [SMALL_STATE(889)] = 32892, + [SMALL_STATE(890)] = 32905, + [SMALL_STATE(891)] = 32918, + [SMALL_STATE(892)] = 32931, + [SMALL_STATE(893)] = 32944, + [SMALL_STATE(894)] = 32957, + [SMALL_STATE(895)] = 32966, + [SMALL_STATE(896)] = 32979, + [SMALL_STATE(897)] = 32992, + [SMALL_STATE(898)] = 33005, + [SMALL_STATE(899)] = 33018, + [SMALL_STATE(900)] = 33031, + [SMALL_STATE(901)] = 33042, + [SMALL_STATE(902)] = 33051, + [SMALL_STATE(903)] = 33064, + [SMALL_STATE(904)] = 33077, + [SMALL_STATE(905)] = 33090, + [SMALL_STATE(906)] = 33103, + [SMALL_STATE(907)] = 33116, + [SMALL_STATE(908)] = 33125, + [SMALL_STATE(909)] = 33134, + [SMALL_STATE(910)] = 33143, + [SMALL_STATE(911)] = 33156, + [SMALL_STATE(912)] = 33165, + [SMALL_STATE(913)] = 33174, + [SMALL_STATE(914)] = 33183, + [SMALL_STATE(915)] = 33192, + [SMALL_STATE(916)] = 33205, + [SMALL_STATE(917)] = 33218, + [SMALL_STATE(918)] = 33227, + [SMALL_STATE(919)] = 33240, + [SMALL_STATE(920)] = 33250, + [SMALL_STATE(921)] = 33260, + [SMALL_STATE(922)] = 33270, + [SMALL_STATE(923)] = 33280, + [SMALL_STATE(924)] = 33290, + [SMALL_STATE(925)] = 33300, + [SMALL_STATE(926)] = 33310, + [SMALL_STATE(927)] = 33320, + [SMALL_STATE(928)] = 33330, + [SMALL_STATE(929)] = 33338, + [SMALL_STATE(930)] = 33348, + [SMALL_STATE(931)] = 33358, + [SMALL_STATE(932)] = 33368, + [SMALL_STATE(933)] = 33378, + [SMALL_STATE(934)] = 33386, + [SMALL_STATE(935)] = 33396, + [SMALL_STATE(936)] = 33406, + [SMALL_STATE(937)] = 33416, + [SMALL_STATE(938)] = 33426, + [SMALL_STATE(939)] = 33436, + [SMALL_STATE(940)] = 33446, + [SMALL_STATE(941)] = 33456, + [SMALL_STATE(942)] = 33466, + [SMALL_STATE(943)] = 33476, + [SMALL_STATE(944)] = 33486, + [SMALL_STATE(945)] = 33496, + [SMALL_STATE(946)] = 33506, + [SMALL_STATE(947)] = 33516, + [SMALL_STATE(948)] = 33524, + [SMALL_STATE(949)] = 33532, + [SMALL_STATE(950)] = 33540, + [SMALL_STATE(951)] = 33550, + [SMALL_STATE(952)] = 33560, + [SMALL_STATE(953)] = 33570, + [SMALL_STATE(954)] = 33580, + [SMALL_STATE(955)] = 33590, + [SMALL_STATE(956)] = 33600, + [SMALL_STATE(957)] = 33608, + [SMALL_STATE(958)] = 33618, + [SMALL_STATE(959)] = 33628, + [SMALL_STATE(960)] = 33638, + [SMALL_STATE(961)] = 33648, + [SMALL_STATE(962)] = 33658, + [SMALL_STATE(963)] = 33666, + [SMALL_STATE(964)] = 33676, + [SMALL_STATE(965)] = 33686, + [SMALL_STATE(966)] = 33694, + [SMALL_STATE(967)] = 33704, + [SMALL_STATE(968)] = 33714, + [SMALL_STATE(969)] = 33722, + [SMALL_STATE(970)] = 33732, + [SMALL_STATE(971)] = 33740, + [SMALL_STATE(972)] = 33750, + [SMALL_STATE(973)] = 33760, + [SMALL_STATE(974)] = 33768, + [SMALL_STATE(975)] = 33778, + [SMALL_STATE(976)] = 33788, + [SMALL_STATE(977)] = 33798, + [SMALL_STATE(978)] = 33806, + [SMALL_STATE(979)] = 33816, + [SMALL_STATE(980)] = 33826, + [SMALL_STATE(981)] = 33834, + [SMALL_STATE(982)] = 33842, + [SMALL_STATE(983)] = 33850, + [SMALL_STATE(984)] = 33860, + [SMALL_STATE(985)] = 33870, + [SMALL_STATE(986)] = 33880, + [SMALL_STATE(987)] = 33890, + [SMALL_STATE(988)] = 33900, + [SMALL_STATE(989)] = 33910, + [SMALL_STATE(990)] = 33920, + [SMALL_STATE(991)] = 33930, + [SMALL_STATE(992)] = 33940, + [SMALL_STATE(993)] = 33950, + [SMALL_STATE(994)] = 33960, + [SMALL_STATE(995)] = 33970, + [SMALL_STATE(996)] = 33980, + [SMALL_STATE(997)] = 33990, + [SMALL_STATE(998)] = 33998, + [SMALL_STATE(999)] = 34006, + [SMALL_STATE(1000)] = 34016, + [SMALL_STATE(1001)] = 34024, + [SMALL_STATE(1002)] = 34032, + [SMALL_STATE(1003)] = 34042, + [SMALL_STATE(1004)] = 34052, + [SMALL_STATE(1005)] = 34062, + [SMALL_STATE(1006)] = 34072, + [SMALL_STATE(1007)] = 34080, + [SMALL_STATE(1008)] = 34090, + [SMALL_STATE(1009)] = 34100, + [SMALL_STATE(1010)] = 34110, + [SMALL_STATE(1011)] = 34120, + [SMALL_STATE(1012)] = 34130, + [SMALL_STATE(1013)] = 34140, + [SMALL_STATE(1014)] = 34150, + [SMALL_STATE(1015)] = 34160, + [SMALL_STATE(1016)] = 34170, + [SMALL_STATE(1017)] = 34180, + [SMALL_STATE(1018)] = 34190, + [SMALL_STATE(1019)] = 34200, + [SMALL_STATE(1020)] = 34210, + [SMALL_STATE(1021)] = 34220, + [SMALL_STATE(1022)] = 34230, + [SMALL_STATE(1023)] = 34240, + [SMALL_STATE(1024)] = 34248, + [SMALL_STATE(1025)] = 34258, + [SMALL_STATE(1026)] = 34268, + [SMALL_STATE(1027)] = 34278, + [SMALL_STATE(1028)] = 34288, + [SMALL_STATE(1029)] = 34298, + [SMALL_STATE(1030)] = 34308, + [SMALL_STATE(1031)] = 34318, + [SMALL_STATE(1032)] = 34328, + [SMALL_STATE(1033)] = 34338, + [SMALL_STATE(1034)] = 34348, + [SMALL_STATE(1035)] = 34356, + [SMALL_STATE(1036)] = 34366, + [SMALL_STATE(1037)] = 34374, + [SMALL_STATE(1038)] = 34382, + [SMALL_STATE(1039)] = 34390, + [SMALL_STATE(1040)] = 34400, + [SMALL_STATE(1041)] = 34408, + [SMALL_STATE(1042)] = 34416, + [SMALL_STATE(1043)] = 34424, + [SMALL_STATE(1044)] = 34432, + [SMALL_STATE(1045)] = 34442, + [SMALL_STATE(1046)] = 34450, + [SMALL_STATE(1047)] = 34458, + [SMALL_STATE(1048)] = 34468, + [SMALL_STATE(1049)] = 34478, + [SMALL_STATE(1050)] = 34488, + [SMALL_STATE(1051)] = 34496, + [SMALL_STATE(1052)] = 34506, + [SMALL_STATE(1053)] = 34516, + [SMALL_STATE(1054)] = 34526, + [SMALL_STATE(1055)] = 34536, + [SMALL_STATE(1056)] = 34546, + [SMALL_STATE(1057)] = 34554, + [SMALL_STATE(1058)] = 34564, + [SMALL_STATE(1059)] = 34574, + [SMALL_STATE(1060)] = 34584, + [SMALL_STATE(1061)] = 34594, + [SMALL_STATE(1062)] = 34602, + [SMALL_STATE(1063)] = 34610, + [SMALL_STATE(1064)] = 34618, + [SMALL_STATE(1065)] = 34628, + [SMALL_STATE(1066)] = 34638, + [SMALL_STATE(1067)] = 34648, + [SMALL_STATE(1068)] = 34658, + [SMALL_STATE(1069)] = 34668, + [SMALL_STATE(1070)] = 34678, + [SMALL_STATE(1071)] = 34688, + [SMALL_STATE(1072)] = 34698, + [SMALL_STATE(1073)] = 34708, + [SMALL_STATE(1074)] = 34718, + [SMALL_STATE(1075)] = 34725, + [SMALL_STATE(1076)] = 34732, + [SMALL_STATE(1077)] = 34739, + [SMALL_STATE(1078)] = 34746, + [SMALL_STATE(1079)] = 34753, + [SMALL_STATE(1080)] = 34760, + [SMALL_STATE(1081)] = 34767, + [SMALL_STATE(1082)] = 34774, + [SMALL_STATE(1083)] = 34781, + [SMALL_STATE(1084)] = 34788, + [SMALL_STATE(1085)] = 34795, + [SMALL_STATE(1086)] = 34802, + [SMALL_STATE(1087)] = 34809, + [SMALL_STATE(1088)] = 34816, + [SMALL_STATE(1089)] = 34823, + [SMALL_STATE(1090)] = 34830, + [SMALL_STATE(1091)] = 34837, + [SMALL_STATE(1092)] = 34844, + [SMALL_STATE(1093)] = 34851, + [SMALL_STATE(1094)] = 34858, + [SMALL_STATE(1095)] = 34865, + [SMALL_STATE(1096)] = 34872, + [SMALL_STATE(1097)] = 34879, + [SMALL_STATE(1098)] = 34886, + [SMALL_STATE(1099)] = 34893, + [SMALL_STATE(1100)] = 34900, + [SMALL_STATE(1101)] = 34907, + [SMALL_STATE(1102)] = 34914, + [SMALL_STATE(1103)] = 34921, + [SMALL_STATE(1104)] = 34928, + [SMALL_STATE(1105)] = 34935, + [SMALL_STATE(1106)] = 34942, + [SMALL_STATE(1107)] = 34949, + [SMALL_STATE(1108)] = 34956, + [SMALL_STATE(1109)] = 34963, + [SMALL_STATE(1110)] = 34970, + [SMALL_STATE(1111)] = 34977, + [SMALL_STATE(1112)] = 34984, + [SMALL_STATE(1113)] = 34991, + [SMALL_STATE(1114)] = 34998, + [SMALL_STATE(1115)] = 35005, + [SMALL_STATE(1116)] = 35012, + [SMALL_STATE(1117)] = 35019, + [SMALL_STATE(1118)] = 35026, + [SMALL_STATE(1119)] = 35033, + [SMALL_STATE(1120)] = 35040, + [SMALL_STATE(1121)] = 35047, + [SMALL_STATE(1122)] = 35054, + [SMALL_STATE(1123)] = 35061, + [SMALL_STATE(1124)] = 35068, + [SMALL_STATE(1125)] = 35075, + [SMALL_STATE(1126)] = 35082, + [SMALL_STATE(1127)] = 35089, + [SMALL_STATE(1128)] = 35096, + [SMALL_STATE(1129)] = 35103, + [SMALL_STATE(1130)] = 35110, + [SMALL_STATE(1131)] = 35117, + [SMALL_STATE(1132)] = 35124, + [SMALL_STATE(1133)] = 35131, + [SMALL_STATE(1134)] = 35138, + [SMALL_STATE(1135)] = 35145, + [SMALL_STATE(1136)] = 35152, + [SMALL_STATE(1137)] = 35159, + [SMALL_STATE(1138)] = 35166, + [SMALL_STATE(1139)] = 35173, + [SMALL_STATE(1140)] = 35180, + [SMALL_STATE(1141)] = 35187, + [SMALL_STATE(1142)] = 35194, + [SMALL_STATE(1143)] = 35201, + [SMALL_STATE(1144)] = 35208, + [SMALL_STATE(1145)] = 35215, + [SMALL_STATE(1146)] = 35222, + [SMALL_STATE(1147)] = 35229, + [SMALL_STATE(1148)] = 35236, + [SMALL_STATE(1149)] = 35243, + [SMALL_STATE(1150)] = 35250, + [SMALL_STATE(1151)] = 35257, + [SMALL_STATE(1152)] = 35264, + [SMALL_STATE(1153)] = 35271, + [SMALL_STATE(1154)] = 35278, + [SMALL_STATE(1155)] = 35285, + [SMALL_STATE(1156)] = 35292, + [SMALL_STATE(1157)] = 35299, + [SMALL_STATE(1158)] = 35306, + [SMALL_STATE(1159)] = 35313, + [SMALL_STATE(1160)] = 35320, + [SMALL_STATE(1161)] = 35327, + [SMALL_STATE(1162)] = 35334, + [SMALL_STATE(1163)] = 35341, + [SMALL_STATE(1164)] = 35348, + [SMALL_STATE(1165)] = 35355, + [SMALL_STATE(1166)] = 35362, + [SMALL_STATE(1167)] = 35369, + [SMALL_STATE(1168)] = 35376, + [SMALL_STATE(1169)] = 35383, + [SMALL_STATE(1170)] = 35390, + [SMALL_STATE(1171)] = 35397, }; static TSParseActionEntry ts_parse_actions[] = { @@ -49377,1451 +51889,1261 @@ static TSParseActionEntry ts_parse_actions[] = { [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(294), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(294), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(592), - [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(315), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(686), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(692), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(957), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(974), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(836), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(70), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(117), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1013), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(30), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1014), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1036), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(840), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(842), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1033), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(76), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(103), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(206), - [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(44), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(65), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(712), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1046), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(714), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(258), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(787), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(94), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(121), - [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(122), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(123), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(125), - [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(784), - [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(778), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(699), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(481), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(481), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(695), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(683), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(300), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 63), - [265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 63), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 63), - [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 63), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [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 = true}}, SHIFT(847), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 80), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 80), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 80), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 80), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 78), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 78), - [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 78), - [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 78), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 73), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 73), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 73), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 73), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 37), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 37), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 37), - [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 37), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 71), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 71), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 97), - [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 97), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 97), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 97), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 91), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 91), - [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 91), - [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 91), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 87), - [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 87), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 87), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 87), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 87), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 87), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 87), - [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 87), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(639), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1076] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(622), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), - [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(29), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(148), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [1110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 8), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 8), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 28), - [1127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 28), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 8), - [1133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 8), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 9), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 9), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 105), - [1161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 105), - [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 104), - [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 104), - [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 103), - [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 103), - [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 39), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 39), - [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 55), - [1193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 55), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 56), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 56), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 57), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 57), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 56), - [1205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 56), - [1207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), - [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), - [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [1219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 90), - [1221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 90), - [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 64), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 64), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 31), - [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 31), - [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 31), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 31), - [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 30), - [1257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 30), - [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 29), - [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 29), - [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 8), - [1265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 8), - [1267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 65), - [1269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 65), - [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 87), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 87), - [1279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 37), - [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 37), - [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 83), - [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 83), - [1287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [1289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(622), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 24), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 24), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 78), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 78), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 87), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 87), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 94), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 94), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 97), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 97), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 102), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 102), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 84), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 84), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 18), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 18), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 73), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 73), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 80), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 91), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 91), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(105), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(634), - [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(924), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 100), - [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 100), - [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(81), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 92), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 92), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 101), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 101), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 93), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 93), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 99), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 99), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 98), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 98), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 96), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 96), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 95), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 95), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 10), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 10), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 47), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 47), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 41), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 41), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 79), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 79), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [1471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(96), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(101), - [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(629), - [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(956), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_rest_parameter, 2), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 11), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 11), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 54), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 50), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [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 = true}}, REDUCE(sym_arrow_function, 4, .production_id = 74), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 88), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 46), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 51), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [1594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 40), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 46), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 40), - [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 17), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 17), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 42), - [1606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 11), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 11), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 48), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 17), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 17), - [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 52), - [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 76), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 77), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 34), - [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 34), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 46), - [1642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 75), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 75), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 53), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 53), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 7), - [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(87), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 6), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(98), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 54), - [1698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 48), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 8), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 8), - [1714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 45), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 45), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 32), - [1720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 32), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 68), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 68), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 44), - [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 44), - [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [1736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 12), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 12), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 14), - [1744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 14), - [1746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 15), - [1748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 15), - [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 74), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 76), - [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 77), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 75), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 75), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 89), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 89), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 81), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 81), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 43), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 43), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 86), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 86), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 66), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 66), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 52), REDUCE(sym_assignment_expression, 3, .production_id = 52), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 52), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 38), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 38), - [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 59), REDUCE(sym_assignment_expression, 3, .production_id = 40), - [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 59), - [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 59), REDUCE(sym_assignment_expression, 3, .production_id = 46), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 42), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 51), REDUCE(sym_assignment_expression, 3, .production_id = 51), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 51), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 63), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(82), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(84), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(621), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(937), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 60), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(631), - [1896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(1032), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_rest_parameter, 2, .production_id = 25), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_rest_parameter, 2, .production_id = 26), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 72), SHIFT_REPEAT(769), - [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 72), SHIFT_REPEAT(640), - [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 72), - [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 72), SHIFT_REPEAT(114), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 72), SHIFT_REPEAT(601), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 72), SHIFT_REPEAT(784), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 72), SHIFT_REPEAT(778), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 72), SHIFT_REPEAT(684), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 72), SHIFT_REPEAT(683), - [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 72), SHIFT_REPEAT(600), - [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 72), SHIFT_REPEAT(608), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 17), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, .production_id = 13), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, .production_id = 13), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 47), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 47), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 41), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 41), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 16), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 16), - [2112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 16), SHIFT_REPEAT(683), - [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 87), - [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 87), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 78), - [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 78), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 106), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 106), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 61), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 61), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 97), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 97), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 49), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 49), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 12), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 12), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 35), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 35), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 67), SHIFT_REPEAT(682), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 67), SHIFT_REPEAT(74), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 67), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 67), - [2257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 67), SHIFT_REPEAT(682), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(71), - [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(748), - [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(675), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 36), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1060), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(111), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 69), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(703), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(92), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 33), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 33), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(773), - [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(773), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(774), - [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(774), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(704), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(64), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 26), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 25), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 13), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(579), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(1035), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(642), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 58), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 32), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 19), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 58), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(914), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 20), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 21), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 66), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 58), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 18), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 70), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2, .production_id = 25), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, .production_id = 13), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, .production_id = 26), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 85), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 58), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2, .production_id = 26), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 13), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, .production_id = 26), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 82), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 62), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, .production_id = 13), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, .production_id = 25), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, .production_id = 25), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 26), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 25), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 62), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 62), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 62), - [2993] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(301), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(609), + [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(330), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(735), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(710), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(984), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1013), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(858), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(66), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(153), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1021), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(35), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1039), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1044), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(864), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(865), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1062), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(76), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(109), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(217), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(44), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(70), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(755), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1082), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(756), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(202), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(807), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(80), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(122), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(127), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(131), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(133), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(803), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(801), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(730), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(581), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(581), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(875), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(299), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 63), + [260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 63), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), + [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), + [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 63), + [276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 63), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 101), + [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 101), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 101), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 101), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 89), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 89), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 89), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 89), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 37), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 37), + [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 37), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 37), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 89), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 89), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 89), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 89), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 95), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 95), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 95), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 74), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 74), + [502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 74), + [504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 74), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 80), + [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 80), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 80), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 80), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 82), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 82), + [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 82), + [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 82), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 72), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 72), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(661), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [633] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(644), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), + [639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), SHIFT(37), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 4), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 9), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 9), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(644), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 8), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 8), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 28), + [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 28), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(102), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 107), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 107), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(658), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(1045), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 108), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 108), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 109), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 109), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 21), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 21), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 8), + [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 8), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 37), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 37), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 23), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 23), + [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1), + [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration, 1), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 57), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 57), + [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 86), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 86), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 89), + [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 89), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 74), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 74), + [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 58), + [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 58), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 8), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 8), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 66), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 66), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 101), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 101), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 65), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 65), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 22), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 22), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 98), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 98), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 106), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 106), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 31), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 31), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 31), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 31), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 30), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 30), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 29), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 29), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 64), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 64), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 94), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 94), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 89), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 89), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 95), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 95), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 56), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 56), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 3), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 3), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 39), + [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 39), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 57), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 57), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 17), + [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 17), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 82), + [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 82), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 1), SHIFT(104), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 10), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 10), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 75), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 75), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 91), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 91), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 81), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 81), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1, .production_id = 4), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 41), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 41), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 47), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 47), + [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 90), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 90), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(103), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 102), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 102), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 99), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 99), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(101), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 97), + [1057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 97), + [1059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 96), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 96), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 105), + [1065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 105), + [1067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 100), + [1069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 100), + [1071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 104), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 104), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 103), + [1077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 103), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(648), + [1082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(980), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_rest_parameter, 2), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 49), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 49), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 11), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 11), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 79), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 16), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 16), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 78), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 92), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 76), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 40), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 42), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 11), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 11), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 50), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 51), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 16), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 16), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 52), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 53), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 55), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 49), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 34), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 34), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 88), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 88), + [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 50), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 8), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 8), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 7), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(85), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 6), + [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(99), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 14), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 14), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 93), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 93), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 67), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .production_id = 67), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 38), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 38), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 42), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 43), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 43), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 44), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 44), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 45), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 45), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 46), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .dynamic_precedence = 1, .production_id = 46), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 48), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 48), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 54), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 54), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 55), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 83), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 83), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 32), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .production_id = 32), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 69), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 69), + [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 59), REDUCE(sym_assignment_expression, 3, .production_id = 40), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 59), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 59), REDUCE(sym_assignment_expression, 3, .production_id = 49), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 76), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 52), REDUCE(sym_assignment_expression, 3, .production_id = 52), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 52), + [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 53), REDUCE(sym_assignment_expression, 3, .production_id = 53), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 53), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 77), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 77), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 78), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 79), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 77), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 77), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 63), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(110), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(81), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(646), + [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(977), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(657), + [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(973), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym__property_name, 1), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 60), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_rest_parameter, 2, .production_id = 25), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), REDUCE(sym_rest_parameter, 2, .production_id = 26), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(781), + [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(662), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), + [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(172), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(623), + [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(803), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(801), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(716), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(875), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(620), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 73), SHIFT_REPEAT(625), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 4), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 16), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 15), + [1708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 15), + [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 15), SHIFT_REPEAT(875), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 47), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 47), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 89), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 89), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 80), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 80), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 110), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 110), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 101), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 101), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 61), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 61), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1, .production_id = 35), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 13), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 13), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 35), + [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 35), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 68), SHIFT_REPEAT(705), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 68), SHIFT_REPEAT(71), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 68), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 68), + [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 2, .production_id = 68), SHIFT_REPEAT(705), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(73), + [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(739), + [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(703), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 4), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 70), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 36), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(717), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(97), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(1141), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(114), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 4), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 33), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_jsx_opening_element_repeat1, 1, .production_id = 33), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [2075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(771), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(771), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [2121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(786), + [2124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(786), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(725), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(69), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 85), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 26), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(663), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(601), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 24), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 67), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 85), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [2339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(963), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(953), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 18), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 19), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 20), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, .production_id = 25), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 32), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, .production_id = 25), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, .production_id = 26), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, .production_id = 24), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 71), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, .production_id = 26), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, .production_id = 25), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2, .production_id = 26), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 87), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 26), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 25), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, .production_id = 24), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 84), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 17), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 85), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, .production_id = 24), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_parameter, 2, .production_id = 25), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 62), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 62), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 62), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 62), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2613] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), }; #ifdef __cplusplus @@ -50843,25 +53165,17 @@ extern const TSLanguage *tree_sitter_mozjs(void) { .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, - .large_state_count = LARGE_STATE_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .symbol_names = ts_symbol_names, .symbol_metadata = ts_symbol_metadata, - .parse_table = (const unsigned short *)ts_parse_table, - .small_parse_table = (const uint16_t *)ts_small_parse_table, - .small_parse_table_map = (const uint32_t *)ts_small_parse_table_map, + .parse_table = (const uint16_t *)ts_parse_table, .parse_actions = ts_parse_actions, .lex_modes = ts_lex_modes, - .symbol_names = ts_symbol_names, - .public_symbol_map = ts_symbol_map, .alias_sequences = (const TSSymbol *)ts_alias_sequences, - .field_count = FIELD_COUNT, - .field_names = ts_field_names, - .field_map_slices = (const TSFieldMapSlice *)ts_field_map_slices, - .field_map_entries = (const TSFieldMapEntry *)ts_field_map_entries, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, - .external_token_count = EXTERNAL_TOKEN_COUNT, .external_scanner = { (const bool *)ts_external_scanner_states, ts_external_scanner_symbol_map, @@ -50871,6 +53185,16 @@ extern const TSLanguage *tree_sitter_mozjs(void) { tree_sitter_mozjs_external_scanner_serialize, tree_sitter_mozjs_external_scanner_deserialize, }, + .field_count = FIELD_COUNT, + .field_map_slices = (const TSFieldMapSlice *)ts_field_map_slices, + .field_map_entries = (const TSFieldMapEntry *)ts_field_map_entries, + .field_names = ts_field_names, + .large_state_count = LARGE_STATE_COUNT, + .small_parse_table = (const uint16_t *)ts_small_parse_table, + .small_parse_table_map = (const uint32_t *)ts_small_parse_table_map, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .state_count = STATE_COUNT, }; return &language; } diff --git a/tree-sitter-mozjs/src/tree_sitter/parser.h b/tree-sitter-mozjs/src/tree_sitter/parser.h index 11bf4fc42..c5a788ff6 100644 --- a/tree-sitter-mozjs/src/tree_sitter/parser.h +++ b/tree-sitter-mozjs/src/tree_sitter/parser.h @@ -35,6 +35,7 @@ typedef uint16_t TSStateId; typedef struct { bool visible : 1; bool named : 1; + bool supertype: 1; } TSSymbolMetadata; typedef struct TSLexer TSLexer; @@ -119,6 +120,8 @@ struct TSLanguage { const uint16_t *small_parse_table; const uint32_t *small_parse_table_map; const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + uint32_t state_count; }; /* From 5193eb680106982a759ee5d629ea216279f854e0 Mon Sep 17 00:00:00 2001 From: Luni-4 Date: Wed, 10 Mar 2021 12:02:40 +0100 Subject: [PATCH 2/2] mozjs: Treat elseifs differently --- src/checker.rs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/checker.rs b/src/checker.rs index 06a182b38..8bea437b0 100644 --- a/src/checker.rs +++ b/src/checker.rs @@ -145,7 +145,16 @@ impl Checker for MozjsCode { ArrowFunction ); - mk_else_if!(IfStatement); + #[inline(always)] + fn is_else_if(node: &Node) -> bool { + if node.object().kind_id() != ::BaseLang::IfStatement { + return false; + } + if let Some(parent) = node.object().parent() { + return parent.kind_id() == ::BaseLang::ElseClause; + } + false + } mk_checker!(is_non_arg, LPAREN, COMMA, RPAREN); }